Ace Master Posted January 30, 2004 Posted January 30, 2004 Hi. I have a form with some radio checkboxes. In other form I want to change some data depending of what radio I select in previous form how to make this ? thanks a lot Quote
DayWalker Posted January 30, 2004 Posted January 30, 2004 Declare the forms in a module. And refrence the checkboxes as Form1.CheckBox1.CheckState.....ect Quote
NK2000 Posted January 30, 2004 Posted January 30, 2004 i normally use something like a static Core class class Core { public static Form MainForm = null; public static Form ToolForm = null; } when you create ToolForm then just set it to core, too Form xyz = new Form(); ... Core.ToolForm = xyz; now you can just set values like Core.MainForm.Label1.Text = "hello world :)"; Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.