|
-
Feb 7th, 2000, 05:35 PM
#1
Thread Starter
Addicted Member
I am loading one form and then another. When I unload the second I want to run a procedure to re-display stuff on the first form. If its been there all the time what event to I attach the procedure to?
-
Feb 7th, 2000, 06:00 PM
#2
New Member
If all the data is in the same place as the original first-form load, you can just call it's Form_Load sub after changing the sub to public. For example, the first form loads all it's data from variables, so re-assign the variable data and use FirstForm.Form_Load. Or: First form gets it's data from a file, so rewrite the file and then call form_load. Or: FirstForm.Text1.Text = ???, FirstForm.Check1.Value = ???, etc.
Hope this helps!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|