How do I get the code below to work?
what I have is a switch board that has 3 command buttons (see code below) Ehen you click on one of the 3 commands it will take me to another form (frmDisclaimer) see below code
---------------------------------------
Private Sub btnOpenCaseMgrs_Click()
DoCmd.Close
DoCmd.OpenForm "frmDisclaimer"
End Sub
Private Sub btnOpenMemRep_Click()
DoCmd.Close
DoCmd.OpenForm "frmDisclaimer"
End Sub
Private Sub btnOpenOrg_Click()
DoCmd.Close
DoCmd.OpenForm "frmDisclaimer"
End Sub
--------------------------------------
On the form disclaimer form there is a command button called the btnBegin. When you click on the Begin button it should take one to the of the form disclaimer it takes me to the "frmEntrySelfAssesmentCaseManagers"
for all 3 survey's. What it should do is if I click on the OpenMemberRep or OpenOrg command it will take me to that paticular survey, instead it takes me to the OpenCaseManagers survey each time. See that code below.
Thanks
Option Compare Database
Private Sub btnBegin_Click()
DoCmd.Close
DoCmd.OpenForm "frmEntrySelfAssessmentCaseManagers"
End Sub
Private Sub btnBegin_Click()
DoCmd.Close
DoCmd.OpenForm "frmMemberRepresenativesOutreachSpecialtist"
End Sub
Private Sub btnBegin_Click()
DoCmd.Close
DoCmd.OpenForm "OrganizationalAssesmentofCulturalCompetence"
End Sub
what I have is a switch board that has 3 command buttons (see code below) Ehen you click on one of the 3 commands it will take me to another form (frmDisclaimer) see below code
---------------------------------------
Private Sub btnOpenCaseMgrs_Click()
DoCmd.Close
DoCmd.OpenForm "frmDisclaimer"
End Sub
Private Sub btnOpenMemRep_Click()
DoCmd.Close
DoCmd.OpenForm "frmDisclaimer"
End Sub
Private Sub btnOpenOrg_Click()
DoCmd.Close
DoCmd.OpenForm "frmDisclaimer"
End Sub
--------------------------------------
On the form disclaimer form there is a command button called the btnBegin. When you click on the Begin button it should take one to the of the form disclaimer it takes me to the "frmEntrySelfAssesmentCaseManagers"
for all 3 survey's. What it should do is if I click on the OpenMemberRep or OpenOrg command it will take me to that paticular survey, instead it takes me to the OpenCaseManagers survey each time. See that code below.
Thanks
Option Compare Database
Private Sub btnBegin_Click()
DoCmd.Close
DoCmd.OpenForm "frmEntrySelfAssessmentCaseManagers"
End Sub
Private Sub btnBegin_Click()
DoCmd.Close
DoCmd.OpenForm "frmMemberRepresenativesOutreachSpecialtist"
End Sub
Private Sub btnBegin_Click()
DoCmd.Close
DoCmd.OpenForm "OrganizationalAssesmentofCulturalCompetence"
End Sub