M
Mark Kubicki
For my main menu, I need to have a back end table linked to the current
project. That the table located ina backend file (*.mdb) may have been
moved, renamed, or missing, in which case I want to prompt the user as to
what file should be used...
Q. behind which event should I place code? I've tried (behind the main
menu form): Open, Load, etc. but none of them get me to the point where I
can ask the question.
Private Sub Form_Open(Cancel As Integer)
On Error GoTo Err_form_Open
Me.pgProjectInfo.SetFocus
Err_form_Open:
MsgBox ("need add prompt for file here")
End Sub
Again, this is the main menu form (the one that the user sees when they
first open the project.
many thanks in advance, Mark
project. That the table located ina backend file (*.mdb) may have been
moved, renamed, or missing, in which case I want to prompt the user as to
what file should be used...
Q. behind which event should I place code? I've tried (behind the main
menu form): Open, Load, etc. but none of them get me to the point where I
can ask the question.
Private Sub Form_Open(Cancel As Integer)
On Error GoTo Err_form_Open
Me.pgProjectInfo.SetFocus
Err_form_Open:
MsgBox ("need add prompt for file here")
End Sub
Again, this is the main menu form (the one that the user sees when they
first open the project.
many thanks in advance, Mark