Click here to Skip to main content
15,892,674 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: sql Pin
jacko87319-Jun-08 9:38
jacko87319-Jun-08 9:38 
GeneralRe: sql Pin
Noctris21-Jun-08 23:42
Noctris21-Jun-08 23:42 
QuestionRegarding Outlook progrmamming using .net Pin
Ansari Mohammad Aamir18-Jun-08 19:37
Ansari Mohammad Aamir18-Jun-08 19:37 
QuestionLock controls in a form Pin
Sebastian T Xavier18-Jun-08 19:01
Sebastian T Xavier18-Jun-08 19:01 
AnswerRe: Lock controls in a form Pin
Tom Deketelaere18-Jun-08 20:55
professionalTom Deketelaere18-Jun-08 20:55 
GeneralRe: Lock controls in a form Pin
Sebastian T Xavier20-Jun-08 4:24
Sebastian T Xavier20-Jun-08 4:24 
GeneralRe: Lock controls in a form Pin
Tom Deketelaere23-Jun-08 1:09
professionalTom Deketelaere23-Jun-08 1:09 
GeneralRe: Lock controls in a form Pin
Sebastian T Xavier25-Jun-08 21:35
Sebastian T Xavier25-Jun-08 21:35 
private void button1_Click(object sender, EventArgs e) { foreach (Control cntl in this.Controls) { if (cntl.HasChildren) { lockControls(cntl); } else { cntl.Enabled = false; } } }



private void lockControls(Control subcntl) { foreach (Control Ncntl in subcntl.Controls) { if (Ncntl.HasChildren) { lockControls(Ncntl); } else { Ncntl.Enabled = false;
} } }

Thanks

sebastian
GeneralRe: Lock controls in a form Pin
Tom Deketelaere25-Jun-08 21:54
professionalTom Deketelaere25-Jun-08 21:54 
GeneralRe: Lock controls in a form Pin
Sebastian T Xavier25-Jun-08 23:04
Sebastian T Xavier25-Jun-08 23:04 
GeneralRe: Lock controls in a form Pin
Tom Deketelaere26-Jun-08 3:10
professionalTom Deketelaere26-Jun-08 3:10 
QuestionWrong datetime will get when using Date in vb6 Pin
cocoonwls18-Jun-08 15:39
cocoonwls18-Jun-08 15:39 
AnswerRe: Wrong datetime will get when using Date in vb6 Pin
nishkarsh_k18-Jun-08 17:05
nishkarsh_k18-Jun-08 17:05 
GeneralRe: Wrong datetime will get when using Date in vb6 Pin
cocoonwls18-Jun-08 18:49
cocoonwls18-Jun-08 18:49 
GeneralRe: Wrong datetime will get when using Date in vb6 Pin
nishkarsh_k18-Jun-08 22:14
nishkarsh_k18-Jun-08 22:14 
GeneralRe: Wrong datetime will get when using Date in vb6 Pin
cocoonwls22-Jun-08 16:45
cocoonwls22-Jun-08 16:45 
AnswerRe: Wrong datetime will get when using Date in vb6 Pin
Tom Deketelaere18-Jun-08 20:58
professionalTom Deketelaere18-Jun-08 20:58 
Questionimages in vb.net Pin
salam ellayan18-Jun-08 10:37
salam ellayan18-Jun-08 10:37 
AnswerRe: images in vb.net Pin
nishkarsh_k18-Jun-08 17:01
nishkarsh_k18-Jun-08 17:01 
GeneralRe: images in vb.net Pin
salam ellayan18-Jun-08 22:42
salam ellayan18-Jun-08 22:42 
GeneralRe: images in vb.net Pin
nishkarsh_k18-Jun-08 23:53
nishkarsh_k18-Jun-08 23:53 
GeneralRe: images in vb.net Pin
salam ellayan19-Jun-08 22:23
salam ellayan19-Jun-08 22:23 
GeneralRe: images in vb.net Pin
nishkarsh_k22-Jun-08 23:35
nishkarsh_k22-Jun-08 23:35 
GeneralRe: images in vb.net Pin
salam ellayan23-Jun-08 4:29
salam ellayan23-Jun-08 4:29 
GeneralRe: images in vb.net Pin
nishkarsh_k23-Jun-08 21:26
nishkarsh_k23-Jun-08 21:26 

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.