Presentation is loading. Please wait.

Presentation is loading. Please wait.

Systems Development Group Project Programming Access Forms.

Similar presentations


Presentation on theme: "Systems Development Group Project Programming Access Forms."— Presentation transcript:

1 Systems Development Group Project Programming Access Forms

2 Access Forms Bound Forms Unbound Forms e.g. a Menu

3 Access Forms Form Detail Right click here to see form properties Some useful form properties

4 Access Forms Control Box Property to turn these on or off Record Selectors property to turn these on or off Min Max Property to turn these on or off Plus various event properties – the LOAD event is especially important

5 Access Forms – Tool Box LabelText Box Command Button List Box Combo Box

6 Access Forms Navigation buttons Subform Form Header Form Footer Text Box Label

7 Access Forms Note multiple associated records Default View property set to ‘Continuous Forms’ NOT ‘Datasheet’ OwnerNo and PetNo have Visible property set to ‘No’ These labels are in the sub- form header Data Entry property is set to ‘No’

8 Access Forms Private Sub cmdExitPet_Click() ‘Not using Wizard ‘closes this form DoCmd.Close ‘opens main menu form DoCmd.OpenForm "frmVetMenu" End Sub Combo Box List Box Code in the On Click event of the Main Menu button (click on the property then on & then on ‘Code Builder’ to open up a code window. …

9 Access Forms Private Sub cmdMainMenu_Click() On Error GoTo Err_cmdMainMenu_Click Dim stDocName As String Dim stLinkCriteria As String stDocName = "frmVetMenu“ DoCmd.OpenForm stDocName,,, stLinkCriteria Exit_cmdMainMenu_Click: Exit Sub Err_cmdMainMenu_Click: MsgBox Err.Description Resume Exit_cmdMainMenu_Click End Sub This the code for the other ‘Main Menu’ button, this time generated by the Wizard. Would need to insert DoCmd.Closeform here. Wizards can make things easier sometimes, but can also make code unnecessarily complicated

10 List and Combo Boxes Important control settings Can build a query for the row source …


Download ppt "Systems Development Group Project Programming Access Forms."

Similar presentations


Ads by Google