PRB: GotFocus Event Fails If MsgBox Invoked in LostFocus Event

ID: Q85856


The information in this article applies to:
  • Microsoft Visual Basic Enterprise Edition for Windows, versions 4.0, 5.0, 6.0
  • Microsoft Visual Basic Standard and Professional Editions for Windows, versions 2.0, 3.0
  • Microsoft Visual Basic programming system for Windows, version 1.0


SYMPTOMS

Invoking a message box from a control's LostFocus event prevents the GotFocus event of the next selected control from executing.


CAUSE

This behavior occurs because the GotFocus event is not executed. Removing the message box from the control's LostFocus allows the GotFocus event to execute as expected.


RESOLUTION

To work around the problem, set a flag in the control's LostFocus event procedure. Then call a generic test routine from the next control's GotFocus event, as demonstrated in the following example:

  1. Start a new project in Visual Basic. Form1 is created by default.


  2. Create the following controls and properties for Form1:


  3. 
       Control     Name     Property Setting
       ----------------------------------
       Text Box    Text1    TabIndex = 0
       Text Box    Text2    TabIndex = 1
       Text Box    Text3    TabIndex = 2 
  4. Add the following code to the general Declarations section of Form1:


  5. 
       Dim LastControl As Control
       Dim CurrControl As Control
    
       Sub CheckLostFocus ()
    
         If (LastControl.Tag = "True") Then
            X%=MsgBox("Is the value OK ?", 36, LastControl + " has Lost Focus")
    
            If X% = 6 Then    'if YES
               LastControl.Tag = ""
               CurrControl.SetFocus
            Else
               LastControl.SetFocus
            End If
         End If
    
       End Sub
    
       Sub Form_Load ()
          Set LastControl = Text1     'set to the first editable control
       End Sub 
    The instructions 4 through 5 apply to EACH of the 3 Text Boxes:

  6. Add the following code to the LostFocus event for EACH Text control:


  7. 
       Sub Text1_LostFocus ()
          Set LastControl = Text1
       End Sub
    
       Sub Text2_LostFocus ()
          Set LastControl = Text2
       End Sub
    
       Sub Text3_LostFocus ()
          Set LastControl = Text3
       End Sub 
  8. Add the following code to the GotFocus event of EACH Text control:


  9. 
       Sub Text1_GotFocus ()
          Set CurrControl = Text1
          CheckLostFocus
       End Sub
    
       Sub Text2_GotFocus ()
          Set CurrControl = Text2
          CheckLostFocus
       End Sub
    
       Sub Text3_GotFocus ()
          Set CurrControl = Text3
          CheckLostFocus
       End Sub 
  10. Add the following code to the Change event of EACH Text control:


  11. 
       Sub Text1_Change ()
          Text1.Tag = "True"
       End Sub
    
       Sub Text2_Change ()
          Text2.Tag = "True"
       End Sub
    
       Sub Text3_Change ()
          Text3.Tag = "True"
       End Sub 
  12. Press the F5 key to run the program.


  13. Note that both message boxes should appear as expected when the focus is changed by using the TAB key or by clicking the next text box.


STATUS

This behavior is by design. It is a limitation of Visual Basic's MsgBox statement.


MORE INFORMATION

Steps to Reproduce Behavior

  1. Start a new project in Visual Basic. Form1 is created by default.


  2. Create the following controls and properties for Form1:


  3. 
       Control     Name     Property Setting
       ---------------------------------------
       Text Box    Text1    TabIndex = 0
       Text Box    Text2    TabIndex = 1 
  4. Add the following code to the Text1_LostFocus event procedure:


  5. 
       Sub Text1_LostFocus ()
          MsgBox "Text1 has Lost the Focus"
       End Sub 
  6. Add the following code to the Text2_GotFocus event procedure:


  7. 
       Sub Text2_GotFocus ()
          MsgBox "Text2 has Received the Focus"
       End Sub 
  8. Press the F5 key to run the program.


  9. NOTE: When you click the second text box (Text2), the message box specified in the GotFocus event fails to display. This also occurs if you try to tab between text boxes or set up labels and quick keys.

Additional query words:

Keywords : kbCtrl kbVBp kbVBp300 kbVBp400 kbVBp500 kbVBp600
Version : WINDOWS:1.0,2.0,3.0,4.0,5.0,6.0
Platform : WINDOWS
Issue type : kbprb


Last Reviewed: September 22, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.