Ok starting off I have been reading on VB and I am new. I am having a tough time understanding a basic function.
I am in my Forms of Access and what I have is a Requester combo box with my seclections. When the requester name has been pulled down it will pop up a box Asking if it is the same as the Engineer.
Code.
Private Sub Requester_Click()
intPress = MsgBox("Is the Submitter the same as the Engineer?", vbQuestion + vbYesNo, "Engineer")
End Sub
This works fine.
But where I am running into a wall is that I need to build "If Yes copy data to "Engineer"" (Engineer is a Field in one of my Tables) If no Say "please select Engineer".
Thanks
I am in my Forms of Access and what I have is a Requester combo box with my seclections. When the requester name has been pulled down it will pop up a box Asking if it is the same as the Engineer.
Code.
Private Sub Requester_Click()
intPress = MsgBox("Is the Submitter the same as the Engineer?", vbQuestion + vbYesNo, "Engineer")
End Sub
This works fine.
But where I am running into a wall is that I need to build "If Yes copy data to "Engineer"" (Engineer is a Field in one of my Tables) If no Say "please select Engineer".
Thanks