runswithsizzors
Well-known member
Hello all this was a neat forum and I had to join.
For my first question here I go:
I have a main form that opens other forms. I have a list of check boxes and the ones that are check when a button is pressed that opens all the forms(second forms) that match the check boxes.
When I do that I gray out the check boxes on the main form because i don't want the user to keep opening up the same form (second Form).
When I close the other forms (Second Forms). I want to enable the check boxes on the main form and uncheck the check box.
Now on my second form do I create and instance of the main form,
Dim mainform = new main
mainform.checkbox1.Enable = True
mainform.checkbox1.CheckState = CheckState.Unchecked
I do this in the closed event of the second form.
Well that doesn't get me any where , I think I am on the right path but it just isn't working. Any suggestions? Anything would be great, Thanks!
For my first question here I go:
I have a main form that opens other forms. I have a list of check boxes and the ones that are check when a button is pressed that opens all the forms(second forms) that match the check boxes.
When I do that I gray out the check boxes on the main form because i don't want the user to keep opening up the same form (second Form).
When I close the other forms (Second Forms). I want to enable the check boxes on the main form and uncheck the check box.
Now on my second form do I create and instance of the main form,
Dim mainform = new main
mainform.checkbox1.Enable = True
mainform.checkbox1.CheckState = CheckState.Unchecked
I do this in the closed event of the second form.
Well that doesn't get me any where , I think I am on the right path but it just isn't working. Any suggestions? Anything would be great, Thanks!