Search results

  1. D

    Change Default View property of subform via VBA

    To change the View of a SubForm from a Main Form, create a button called "cmdToggleView" with the following On Click Event: (Substitute the SubForm Name with your own Subform Name) Private Sub cmdToggleView_Click() If Me.frmViewDetailedTransactionsSub.Form.CurrentView = 1 Then...
Back
Top Bottom