Private Sub Frame0_AfterUpdate()
DoCmd.OpenForm "formname"
End Sub
if you want a choice based on the button. this assume you've assgned 1 and to to bottons option values
Private Sub Frame0_AfterUpdate()
select case frame0
case 1
DoCmd.OpenForm "form1name"
case2
DoCmd.OpenForm "form2name"
end select
end sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.