M
Mr. B
Question #1:
I've two forms (Parent = Form1, Child = Form2). How do I find the status of a
control (say RadioButton) on Form1, while I'm doing something on Form2.
VB6 use to allow you to do ==>
If Form1.rbMyButton.Checked = True then blahblahblah
How do I do this in VB.net?
Question #2:
If I have a HIDE button for my Parent Form1 (using ContexMenu and NotifyIcon),
how can I tell the "show" status of my Child Form2 so I can close it when I
hide my Parent?
Question #3:
I've seen examples where the word "NEW" is used in defining something. An
example is:
Me.bttnScan = New System.Windows.Forms.Button()
===
When and why do you 'need' to use the word "New"? I'm kinda curious.
Answers mucho appreciated!
Mr. B
I've two forms (Parent = Form1, Child = Form2). How do I find the status of a
control (say RadioButton) on Form1, while I'm doing something on Form2.
VB6 use to allow you to do ==>
If Form1.rbMyButton.Checked = True then blahblahblah
How do I do this in VB.net?
Question #2:
If I have a HIDE button for my Parent Form1 (using ContexMenu and NotifyIcon),
how can I tell the "show" status of my Child Form2 so I can close it when I
hide my Parent?
Question #3:
I've seen examples where the word "NEW" is used in defining something. An
example is:
Me.bttnScan = New System.Windows.Forms.Button()
===
When and why do you 'need' to use the word "New"? I'm kinda curious.
Answers mucho appreciated!
Mr. B