Click here to Skip to main content
16,005,178 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Current path of the crystal report, Pin
ChandraRam4-Oct-07 1:07
ChandraRam4-Oct-07 1:07 
AnswerRe: Current path of the crystal report, Pin
Dave Kreskowiak4-Oct-07 4:07
mveDave Kreskowiak4-Oct-07 4:07 
Questionline continuation character Pin
MissionSuccess4-Oct-07 0:25
MissionSuccess4-Oct-07 0:25 
AnswerRe: line continuation character Pin
Christian Graus4-Oct-07 1:08
protectorChristian Graus4-Oct-07 1:08 
AnswerRe: line continuation character Pin
ChandraRam4-Oct-07 1:15
ChandraRam4-Oct-07 1:15 
AnswerRe: line continuation character Pin
C1AllenS4-Oct-07 1:16
C1AllenS4-Oct-07 1:16 
AnswerRe: line continuation character Pin
Dave Kreskowiak4-Oct-07 4:05
mveDave Kreskowiak4-Oct-07 4:05 
QuestionLooping controls inside of a form Pin
Benny_Lava3-Oct-07 23:36
Benny_Lava3-Oct-07 23:36 
Hi,


I have 60 checkboxes on a form inside a split container.
I need to check the ckeck state of those checkboxes and writethe checkstate in array

I tried with the following code:

For Each grp As Control In Me.Controls
If TypeOf grp Is SplitContainer Then
For Each chk As Control In grp.Controls
If TypeOf chk Is CheckBox Then
If DirectCast(chk, CheckBox).Checked = True Then
timeSpaceArray(i) = 1
i += i
ElseIf DirectCast(chk, CheckBox).Checked = False Then
timeSpaceArray(i) = 0
i += i
End If

End If
Next
End If
Next


but it doesn't work i get all zeros in the array.

Any help greatly appreciated
thanks

AnswerRe: Looping controls inside of a form Pin
Christian Graus3-Oct-07 23:46
protectorChristian Graus3-Oct-07 23:46 
AnswerRe: Looping controls inside of a form Pin
Dave Kreskowiak4-Oct-07 4:02
mveDave Kreskowiak4-Oct-07 4:02 
QuestionDatagrid Cell Pin
nitin33-Oct-07 23:28
nitin33-Oct-07 23:28 
AnswerRe: Datagrid Cell Pin
Parwej Ahamad3-Oct-07 23:37
professionalParwej Ahamad3-Oct-07 23:37 
GeneralRe: Datagrid Cell Pin
nitin33-Oct-07 23:48
nitin33-Oct-07 23:48 
GeneralRe: Datagrid Cell [modified] Pin
Parwej Ahamad3-Oct-07 23:54
professionalParwej Ahamad3-Oct-07 23:54 
GeneralRe: Datagrid Cell Pin
nitin34-Oct-07 0:04
nitin34-Oct-07 0:04 
GeneralRe: Datagrid Cell Pin
Parwej Ahamad4-Oct-07 0:14
professionalParwej Ahamad4-Oct-07 0:14 
GeneralRe: Datagrid Cell Pin
Dave Kreskowiak4-Oct-07 3:55
mveDave Kreskowiak4-Oct-07 3:55 
QuestionChange Properties Pin
Naderrafiee3-Oct-07 23:16
Naderrafiee3-Oct-07 23:16 
Questionproblem whem importing EXCEL sheet to SQL server Pin
zamzoum3-Oct-07 21:34
zamzoum3-Oct-07 21:34 
AnswerRe: problem whem importing EXCEL sheet to SQL server Pin
Christian Graus3-Oct-07 23:00
protectorChristian Graus3-Oct-07 23:00 
AnswerRe: problem whem importing EXCEL sheet to SQL server Pin
zamzoum3-Oct-07 23:05
zamzoum3-Oct-07 23:05 
AnswerRe: problem whem importing EXCEL sheet to SQL server Pin
Andy_L_J3-Oct-07 23:36
Andy_L_J3-Oct-07 23:36 
Questioncan anybodyhelp me with the right click problem Pin
farah mazhar3-Oct-07 21:17
farah mazhar3-Oct-07 21:17 
AnswerRe: can anybodyhelp me with the right click problem Pin
Dave Kreskowiak4-Oct-07 3:42
mveDave Kreskowiak4-Oct-07 3:42 
Questiona strange problem Pin
J. Pan3-Oct-07 20:41
J. Pan3-Oct-07 20:41 

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.