Click here to Skip to main content
15,896,726 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionAdd New Field Pin
Socheat.Net11-Jun-07 17:02
Socheat.Net11-Jun-07 17:02 
AnswerRe: Add New Field Pin
MatrixCoder11-Jun-07 17:13
MatrixCoder11-Jun-07 17:13 
GeneralRe: Add New Field Pin
Socheat.Net11-Jun-07 17:26
Socheat.Net11-Jun-07 17:26 
Questionfor next loop [modified] Pin
RoedRunner11-Jun-07 16:45
RoedRunner11-Jun-07 16:45 
AnswerRe: for next loop Pin
MatrixCoder11-Jun-07 17:10
MatrixCoder11-Jun-07 17:10 
GeneralRe: for next loop Pin
RoedRunner11-Jun-07 17:16
RoedRunner11-Jun-07 17:16 
GeneralRe: for next loop Pin
MatrixCoder11-Jun-07 17:18
MatrixCoder11-Jun-07 17:18 
AnswerRe: for next loop Pin
Tirthadip11-Jun-07 19:10
Tirthadip11-Jun-07 19:10 
Firstly you have many checkboxes....I want to know whether you have maintained the same convention while naming your checkbox control....i.e ckfld1,ckfld2,ckfld3,ckfld4...????

If a specific set of checkboxes are to be unchecked then matrixcoder has rightly said to put your checkboxes in a Panel.Then you can write

For Each ctrl As Control In Panel1.Controls<br />
CType(ctrl,CheckBox).Checked=False<br />
Next


Other wise you have to Split the ID of your checkboxes to have the number....you can use Substring method of string Class to do that. After that you can use that number in a For-Each loop to uncheck your CheckBoxes.But it should be a second choice I think.



Tirtha

Do not go where the path may lead, go instead where there is no path and leave a trail.

Author: Ralph Waldo Emerson (1803-82), American writer, philosopher, poet, essayist

GeneralRe: for next loop Pin
Duane in Japan12-Jun-07 21:09
Duane in Japan12-Jun-07 21:09 
AnswerRe: for next loop Pin
Thomas Stockwell12-Jun-07 3:36
professionalThomas Stockwell12-Jun-07 3:36 
QuestionHow to display a new button from Form1 to Form2 Pin
LAPEC11-Jun-07 14:33
LAPEC11-Jun-07 14:33 
AnswerRe: How to display a new button from Form1 to Form2 Pin
nlarson1111-Jun-07 16:25
nlarson1111-Jun-07 16:25 
AnswerIsn't this the same question AGAIN? Pin
leckey12-Jun-07 4:06
leckey12-Jun-07 4:06 
AnswerRe: How to display a new button from Form1 to Form2 Pin
Duane in Japan12-Jun-07 23:42
Duane in Japan12-Jun-07 23:42 
QuestionExecute SSIS package Pin
alexfromto11-Jun-07 11:01
alexfromto11-Jun-07 11:01 
AnswerRe: Execute SSIS package Pin
Sathesh Sakthivel11-Jun-07 15:41
Sathesh Sakthivel11-Jun-07 15:41 
QuestionDisplay .tiff image Pin
Andy Finley11-Jun-07 10:38
Andy Finley11-Jun-07 10:38 
AnswerRe: Display .tiff image Pin
Dave Kreskowiak11-Jun-07 11:11
mveDave Kreskowiak11-Jun-07 11:11 
QuestionRe: Display .tiff image Pin
WYPG280619-Jun-07 6:07
WYPG280619-Jun-07 6:07 
QuestionObject reference error Pin
nickiii11-Jun-07 5:42
nickiii11-Jun-07 5:42 
AnswerRe: Object reference error Pin
Tom John11-Jun-07 5:44
Tom John11-Jun-07 5:44 
GeneralRe: Object reference error Pin
nickiii11-Jun-07 5:48
nickiii11-Jun-07 5:48 
GeneralRe: Object reference error [modified] Pin
Tom John11-Jun-07 6:44
Tom John11-Jun-07 6:44 
AnswerRe: Object reference error Pin
Guffa11-Jun-07 6:36
Guffa11-Jun-07 6:36 
GeneralRe: Object reference error Pin
nickiii11-Jun-07 8:25
nickiii11-Jun-07 8:25 

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.