If I create a form in VB...then there is an option for Initialize. But if I create a form in Access, I don't get the same luxury. I want a message box to pop up before the main window loads. This will insert the data into the main window.
Private Sub UserForm_Initialize()
Dim person As String
txtPerson.Text = InputBox("Enter QC Operator Name:"
End Sub
I am currently doing this in Excel...but am having a hard time translating to Access.
Thank you,
Private Sub UserForm_Initialize()
Dim person As String
txtPerson.Text = InputBox("Enter QC Operator Name:"
End Sub
I am currently doing this in Excel...but am having a hard time translating to Access.
Thank you,