Click here to Skip to main content
15,914,071 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Paging on Datagrid (VB6) Pin
tatchung27-Feb-08 17:36
tatchung27-Feb-08 17:36 
QuestionHow to insert multiple rows from datagrid where checkbox is selected? Pin
Eunice (VB junior)26-Feb-08 23:13
Eunice (VB junior)26-Feb-08 23:13 
AnswerRe: How to insert multiple rows from datagrid where checkbox is selected? Pin
C1AllenS26-Feb-08 23:40
C1AllenS26-Feb-08 23:40 
GeneralRe: How to insert multiple rows from datagrid where checkbox is selected? Pin
Eunice (VB junior)26-Feb-08 23:49
Eunice (VB junior)26-Feb-08 23:49 
GeneralControl with RunTimeOnly Property Pin
gilchinger26-Feb-08 21:37
gilchinger26-Feb-08 21:37 
GeneralRe: Control with RunTimeOnly Property Pin
Dave Kreskowiak27-Feb-08 5:38
mveDave Kreskowiak27-Feb-08 5:38 
GeneralRe: Control with RunTimeOnly Property Pin
gilchinger27-Feb-08 10:10
gilchinger27-Feb-08 10:10 
GeneralRe: Control with RunTimeOnly Property Pin
Dave Kreskowiak27-Feb-08 10:17
mveDave Kreskowiak27-Feb-08 10:17 
In the property code, check the DesignMode property to see if it's being used in the designer. There are pitfalls to doing this, though. The DesignMode property isn't known for its reliability.
Public Property SomeProperty As Integer
    Get
        If Me.DesignMode Then
            ' The control is being used on a design surface...
        Else
            ' The control is NOT being used a design surface...
        End If
    End Get
    ...
End Property




A guide to posting questions on CodeProject[^]



Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007




GeneralRe: Control with RunTimeOnly Property Pin
gilchinger27-Feb-08 10:29
gilchinger27-Feb-08 10:29 
Questionhow this can be done in the select statement Pin
jagan12326-Feb-08 20:12
jagan12326-Feb-08 20:12 
AnswerRe: how this can be done in the select statement Pin
yogesh_kumar_agarwal26-Feb-08 20:16
yogesh_kumar_agarwal26-Feb-08 20:16 
GeneralEvents on Column Update Pin
yogesh_kumar_agarwal26-Feb-08 19:44
yogesh_kumar_agarwal26-Feb-08 19:44 
GeneralRe: Events on Column Update Pin
yogesh_kumar_agarwal26-Feb-08 21:12
yogesh_kumar_agarwal26-Feb-08 21:12 
GeneralRe: Events on Column Update Pin
Justin Perez27-Feb-08 2:59
Justin Perez27-Feb-08 2:59 
GeneralRe: Events on Column Update Pin
yogesh_kumar_agarwal27-Feb-08 20:09
yogesh_kumar_agarwal27-Feb-08 20:09 
GeneralPlse help me.. Pin
garga126-Feb-08 18:32
garga126-Feb-08 18:32 
GeneralRe: Plse help me.. Pin
Christian Graus26-Feb-08 18:38
protectorChristian Graus26-Feb-08 18:38 
GeneralRe: Plse help me.. Pin
Guffa26-Feb-08 21:19
Guffa26-Feb-08 21:19 
GeneralRe: Plse help me.. Pin
garga128-Feb-08 21:43
garga128-Feb-08 21:43 
QuestionHow to get the id of a row that was just inserted Pin
AAGTHosting26-Feb-08 16:25
AAGTHosting26-Feb-08 16:25 
AnswerRe: How to get the id of a row that was just inserted Pin
RCoate26-Feb-08 16:44
RCoate26-Feb-08 16:44 
GeneralRe: How to get the id of a row that was just inserted Pin
AAGTHosting26-Feb-08 17:10
AAGTHosting26-Feb-08 17:10 
GeneralRe: How to get the id of a row that was just inserted Pin
RCoate26-Feb-08 17:20
RCoate26-Feb-08 17:20 
GeneralRe: How to get the id of a row that was just inserted Pin
Christian Graus26-Feb-08 18:31
protectorChristian Graus26-Feb-08 18:31 
GeneralRe: How to get the id of a row that was just inserted Pin
Guffa26-Feb-08 23:38
Guffa26-Feb-08 23:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.