J
Jim Canale
I have an MDI app with two child forms open (FormA,
FormB). Each child form has two textboxes on it (text1,
text2). With the 1.0 framework, when you switch from one
child form to another, when you "leave" the textbox that
had the focus to go to the next textbox, it raises
a 'leave' event. Simply change the project to use the
1.1 framework and this doesn't happen. Any ideas on why
this is happening? Any fixes or a way to get back the
1.0 functionality? It appears to also ignore the
gotfocus/lost focus events too. Thanks.
Code:
MDI Parent Load
Dim a As New Form2
a.MdiParent = Me
a.Show()
Dim b As New Form2
b.MdiParent = Me
b.Show()
MDI ChildForm (Form2)
Private Sub Textbox1_LEAVE(...
textbox1.text = "" 'Put breakpoint here to verify prob
End Sub
FormB). Each child form has two textboxes on it (text1,
text2). With the 1.0 framework, when you switch from one
child form to another, when you "leave" the textbox that
had the focus to go to the next textbox, it raises
a 'leave' event. Simply change the project to use the
1.1 framework and this doesn't happen. Any ideas on why
this is happening? Any fixes or a way to get back the
1.0 functionality? It appears to also ignore the
gotfocus/lost focus events too. Thanks.
Code:
MDI Parent Load
Dim a As New Form2
a.MdiParent = Me
a.Show()
Dim b As New Form2
b.MdiParent = Me
b.Show()
MDI ChildForm (Form2)
Private Sub Textbox1_LEAVE(...
textbox1.text = "" 'Put breakpoint here to verify prob
End Sub