Click here to Skip to main content
15,913,773 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: MDI skinning question Pin
Martin.Smith4-Jan-07 4:13
Martin.Smith4-Jan-07 4:13 
GeneralRe: MDI skinning question Pin
Enriad6-Jan-07 23:21
Enriad6-Jan-07 23:21 
QuestionHow to send XML from one system to anther Pin
vivek_cs4-Jan-07 2:13
vivek_cs4-Jan-07 2:13 
Questionenumerate all sql server 2000 instances on LAN in VB.net Pin
Hasan Jaffal4-Jan-07 1:08
Hasan Jaffal4-Jan-07 1:08 
AnswerRe: enumerate all sql server 2000 instances on LAN in VB.net Pin
Hasan Jaffal4-Jan-07 22:08
Hasan Jaffal4-Jan-07 22:08 
AnswerRe: enumerate all sql server 2000 instances on LAN in VB.net Pin
S Douglas7-Jan-07 1:57
professionalS Douglas7-Jan-07 1:57 
QuestionCheck Box event ? [modified] Pin
harvey1074-Jan-07 1:06
harvey1074-Jan-07 1:06 
AnswerRe: Check Box event ? Pin
MatrixCoder4-Jan-07 3:47
MatrixCoder4-Jan-07 3:47 
In the CheckedChanged event of you check box, use an If statement to detect the check state of the check box. Then, (depending on the check state), change the label.

For example:

Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
  If CheckBox1.Checked = True Then
     Form2.MyLabel.Text = "Checked"
  Else
     Form2.MyLabel.Text = "Unchecked"
  End If
End Sub


Hope this helps.





Trinity: Neo... nobody has ever done this before.
Neo: That's why it's going to work.

GeneralRe: Check Box event ? Pin
harvey1078-Jan-07 6:30
harvey1078-Jan-07 6:30 
Questionms access query implementation problem in vb.net Pin
amaneet4-Jan-07 1:04
amaneet4-Jan-07 1:04 
QuestionPatching and updating deployed projects Pin
Alex Feature3-Jan-07 23:36
Alex Feature3-Jan-07 23:36 
AnswerRe: Patching and updating deployed projects Pin
Alex Feature4-Jan-07 19:33
Alex Feature4-Jan-07 19:33 
AnswerRe: Patching and updating deployed projects Pin
S Douglas7-Jan-07 2:10
professionalS Douglas7-Jan-07 2:10 
QuestionRecord count in Reader Pin
pathak783-Jan-07 22:24
pathak783-Jan-07 22:24 
AnswerRe: Record count in Reader Pin
Colin Angus Mackay3-Jan-07 22:48
Colin Angus Mackay3-Jan-07 22:48 
AnswerRe: Record count in Reader Pin
Colin Angus Mackay4-Jan-07 1:00
Colin Angus Mackay4-Jan-07 1:00 
GeneralRe: Record count in Reader Pin
pathak784-Jan-07 1:07
pathak784-Jan-07 1:07 
QuestionDAAB wrapper issues with MS Access Pin
shreekar3-Jan-07 21:04
shreekar3-Jan-07 21:04 
AnswerRe: DAAB wrapper issues with MS Access Pin
Michael P Butler3-Jan-07 21:14
Michael P Butler3-Jan-07 21:14 
GeneralRe: DAAB wrapper issues with MS Access Pin
shreekar3-Jan-07 21:19
shreekar3-Jan-07 21:19 
Questionhelp with PRINTING MARGINS (PAGESETTINGSDLG) Pin
vbbeg3-Jan-07 18:43
vbbeg3-Jan-07 18:43 
QuestionBuild Error Message Pin
mosdwt3-Jan-07 18:21
mosdwt3-Jan-07 18:21 
AnswerRe: Build Error Message Pin
CPallini3-Jan-07 21:55
mveCPallini3-Jan-07 21:55 
QuestionNotecard Program Pin
sh3l13-Jan-07 13:39
sh3l13-Jan-07 13:39 
AnswerRe: Notecard Program Pin
CPallini3-Jan-07 21:41
mveCPallini3-Jan-07 21: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.