A
Alan
I have a main form frmMain and second form frmMember,
I declare a variable at the top of the frmMember as
Dim memberStr as String
In the main form,
Dim MemberForm as frmMember
MemberForm = new frmMember()
if MemberForm.ShowDialog...... = .. then
' I want to read the variable of the memberStr in MemberForm
end if
I declare a variable at the top of the frmMember as
Dim memberStr as String
In the main form,
Dim MemberForm as frmMember
MemberForm = new frmMember()
if MemberForm.ShowDialog...... = .. then
' I want to read the variable of the memberStr in MemberForm
end if