| Author: saji 19 Jul 2008 | Member Level: Gold | Rating: Points: 2 |
Hii,
I want know some more details. both form is active in same time. is it asp.net or windows application?
thanks..
|
| Author: vasanthiraajan 19 Jul 2008 | Member Level: Gold | Rating: Points: 1 |
hi,
Your need is
Windows applicatio or Web Application
|
| Author: Lakshmi 19 Jul 2008 | Member Level: Gold | Rating: Points: 4 |
Assuming that u r asking to enable the button in the second form: keep the another form button control modifier[u could find in properties] as public Create a instance for the second form,say form2 instance = new form2(); now, instance.button1.enabled = true; Note:button1 is public of another form.
|
| Author: Dharmaraj 19 Jul 2008 | Member Level: Diamond | Rating: Points: 3 |
Hi, You can achieve through creating instance of the form where you want to access the control.
dim frm as new form2() frm.controls
|