B
Bob V
Private Sub cbCategory_Click()
DoCmd.OpenReport "rptPrintMainCategoryRemark", acViewPreview
End Sub
This is what I have at the moment but would like to change it too, My
Checkbox Yes/No [ckbPortrait] on record source of My form
:
Private Sub cbCategory_Click()
If ckbPortrait =True, DoCmd.OpenReport "rptPrintMainCategoryRemarkPort",
acViewPreview
or
If ckbPortrait = False, DoCmd.OpenReport "rptPrintMainCategoryRemark",
acViewPreview
End Sub
Thanks for any help.....Bob
DoCmd.OpenReport "rptPrintMainCategoryRemark", acViewPreview
End Sub
This is what I have at the moment but would like to change it too, My
Checkbox Yes/No [ckbPortrait] on record source of My form
:
Private Sub cbCategory_Click()
If ckbPortrait =True, DoCmd.OpenReport "rptPrintMainCategoryRemarkPort",
acViewPreview
or
If ckbPortrait = False, DoCmd.OpenReport "rptPrintMainCategoryRemark",
acViewPreview
End Sub
Thanks for any help.....Bob