multi forms - form1 not reloading
Hi I am using two forms.
Form 1 organizes student information from a textfile
Form 2 appends a new student
I load the second form with:
Code:
Dim secondForm As New Form2
secondForm.ShowDialog()
It loads, cool..
When I close form 2 with me.close, form 1 does not have the updated information.
Any ideas? Thanks :thumb:
Re: multi forms - form1 not reloading
VB6 doesn't know what "ShowDialog" is, so I think you need to post in the .NET forum, this is VB6 and Earlier.
Re: multi forms - form1 not reloading
Yeah! You have to pass that information to Form1 and you can find that information in the .NET forum since it seems you are not using VB 6.0.
Good Luck
Re: multi forms - form1 not reloading