Set Focus Not Working on MsgBox Response

reberryjr

Well-known Member
Joined
Mar 16, 2017
Messages
701
Office Version
  1. 365
Platform
  1. Windows
I'm using this code to evaluate the value of a textbox on a UF. If the value is invalid, a msgbox is triggered. Once the EU clicks the OK button, I want the focus back on the offending textbox. Instead, the focus is moving to the next textbox, which also has similar validation occurring, so when the EU goes back to correct the offending value, they get an error for exiting the textbox they just left.

I've researched this, and every post I've seen has txtbox.setfocus, which I have; so I'm not sure why it's not working. In theory, I could put this code in a different spot, so that it's checked after the EU clicks a cmd button, but I've yet to find a way to validate that a textbox value is ##/##/##. ISDATE doesn't work, so I'm having to evaluate the contents twice.

Thoughts?

Code:
[Private Sub txt_DoB_Exit(ByVal Cancel As MSForms.ReturnBoolean)
'Validates that the field value is a date, and converts it to MM/DD/YY format. _
If the field value is not a date, an error is thrown.
Dim Response As VbMsgBoxResult
Dim IsOk As Boolean
    IsOk = True
If IsDate(Me.txt_DoB.Value) Then
    Me.txt_DoB = Format(Me.txt_DoB.Value, "MM/DD/YY")
Else
    MsgBox "Please enter a valid DoB, in MM/DD/YY format."
    If Response = vbOK Then Me.txt_DoB.SetFocus
    Exit Sub
    IsOk = False
End If
End Sub/CODE]
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
I'm using this code to evaluate the value of a textbox on a UF. If the value is invalid, a msgbox is triggered. Once the EU clicks the OK button, I want the focus back on the offending textbox. Instead, the focus is moving to the next textbox, which also has similar validation occurring, so when the EU goes back to correct the offending value, they get an error for exiting the textbox they just left.

I've researched this, and every post I've seen has txtbox.setfocus, which I have; so I'm not sure why it's not working. In theory, I could put this code in a different spot, so that it's checked after the EU clicks a cmd button, but I've yet to find a way to validate that a textbox value is ##/##/##. ISDATE doesn't work, so I'm having to evaluate the contents twice.

Thoughts?

Code:
[Private Sub txt_DoB_Exit(ByVal Cancel As MSForms.ReturnBoolean)
'Validates that the field value is a date, and converts it to MM/DD/YY format. _
If the field value is not a date, an error is thrown.
Dim Response As VbMsgBoxResult
Dim IsOk As Boolean
    IsOk = True
If IsDate(Me.txt_DoB.Value) Then
    Me.txt_DoB = Format(Me.txt_DoB.Value, "MM/DD/YY")
Else
    MsgBox "Please enter a valid DoB, in MM/DD/YY format."
    If Response = vbOK Then Me.txt_DoB.SetFocus
    Exit Sub
    IsOk = False
End If
End Sub/CODE][/QUOTE]

To stop the code from moving on, set the [COLOR="#0000FF"]Cancel[/COLOR] argument to [COLOR="#0000FF"]True[/COLOR]...

[COLOR="#0000FF"]Cancel = True[/COLOR]

Also, I do not think you will need that [COLOR="#0000FF"]Exit Sub[/COLOR] after you do that.
 
Last edited:
Upvote 0
Thank you @Rick Rothstein !!! This works now!
Code:
Private Sub txt_DoB_Exit(ByVal Cancel As MSForms.ReturnBoolean)
'Validates that the field value is a date, and converts it to MM/DD/YY format. _
If the field value is not a date, an error is thrown.
Dim Response As VbMsgBoxResult
Dim IsOk As Boolean
    IsOk = True
If IsDate(Me.txt_DoB.Value) Then
    Me.txt_DoB = Format(Me.txt_DoB.Value, "MM/DD/YY")
Else
    MsgBox "Please enter a valid DoB, in MM/DD/YY format."
    If Response = vbOK Then Me.txt_DoB.SetFocus
    Cancel = True
End If
End Sub
 
Upvote 0
@rickrothstein , so I've moved on to validating data after a cmd button click, but before data moves to worksheets. The SetFocus does not appear to be working again. I've tried it with and without the Cancel = True, with and without the IsOK = True. What am I missing?

Code:
Private Sub cmd_Submit_Click()

Dim cGender, cEntryType, cPymtFreq, cPymtStatus, cStatus, cPymtMethod, cRefCat, cFacilitator, cPymtReason, cBiosClientID, cBiosNickname, cStatsClientID As Range
Dim ws1, ws2, ws3, ws4, ws5, ws6, ws7 As Worksheet


Dim Response As VbMsgBoxResult
Dim IsOk As Boolean
    IsOk = True


Set ws1 = ThisWorkbook.Sheets("Management")
Set ws2 = ThisWorkbook.Sheets("Summaries")
Set ws3 = ThisWorkbook.Sheets("Bios")
Set ws4 = ThisWorkbook.Sheets("Stats")
Set ws5 = ThisWorkbook.Sheets("Pymt Tracker")
Set ws6 = ThisWorkbook.Sheets("Financials")
Set ws7 = ThisWorkbook.Sheets("Variables")


LastRow2 = ws2.Range("C" & Rows.Count).End(xlUp).Row
LastRow3 = ws3.Range("E" & Rows.Count).End(xlUp).Row
LastRow4 = ws4.Range("C" & Rows.Count).End(xlUp).Row
LastRow5 = ws5.Range("C" & Rows.Count).End(xlUp).Row
LastRow6 = ws6.Range("D" & Rows.Count).End(xlUp).Row
LastRow7 = ws7.Range("J" & Rows.Count).End(xlUp).Row


If Len(Me.txt_First.Value) = 0 Then
    MsgBox "Please enter a First Name for the Client."
    If Response = vbOK Then Me.txt_First.SetFocus
    'Cancel = True
End If
 
Upvote 0

Forum statistics

Threads
1,215,519
Messages
6,125,298
Members
449,218
Latest member
Excel Master

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top