I would like to know
the following function
why do I need the path backend data?
I already linked front end with backend tables on
MS Access 2003
''''''''''''''''''''''''''''''
Public Function Autoexec()
On Error GoTo Autoexec_Err
DoCmd.RepaintObject
'SetStartupProperties
'**********Back End Database Set*********
gstrServer = Application.CurrentProject.Path & "\PMDB.mdb"
'****************************************
'GetNewContestID
'DoCmd.Close acForm, "frmOpeningPage"
'LastMonthSaved
'sBuildTimes
sGetTimes
'CurrentProject.StartUpShowDBWindow = True
DoCmd.OpenForm "frmMainForm"
Autoexec_Exit:
Exit Function
Autoexec_Err:
Application.Echo True
Select Case Err.Number
Case Else
Call GlobalErr("Autoexec", Err.Number)
Resume Autoexec_Exit
Resume
End Select
End Function
the following function
why do I need the path backend data?
I already linked front end with backend tables on
MS Access 2003
''''''''''''''''''''''''''''''
Public Function Autoexec()
On Error GoTo Autoexec_Err
DoCmd.RepaintObject
'SetStartupProperties
'**********Back End Database Set*********
gstrServer = Application.CurrentProject.Path & "\PMDB.mdb"
'****************************************
'GetNewContestID
'DoCmd.Close acForm, "frmOpeningPage"
'LastMonthSaved
'sBuildTimes
sGetTimes
'CurrentProject.StartUpShowDBWindow = True
DoCmd.OpenForm "frmMainForm"
Autoexec_Exit:
Exit Function
Autoexec_Err:
Application.Echo True
Select Case Err.Number
Case Else
Call GlobalErr("Autoexec", Err.Number)
Resume Autoexec_Exit
Resume
End Select
End Function