Me again here...

I have a small problem...
I have some textboxes some are checked like the code below...

VB Code:
  1. Private Sub Text1_LostFocus()
  2.     If Text1.DataChanged Then
  3.         MsgBox "Bla"
  4.     End If
  5. End Sub

I also have a menu bar which has some actions which loads another form. Problem is I really need the MsgBox when the data is Changed as I need some Yes/No from it to make some calculation.

I don't want Form2 to appear before checked for the Text Change...it can only appear after the text has been checked for a change. Got it? Thanks