I have simple problem, and cannot solve it ;/
.... Typical situation.. i Have a FORM and SUBFORM(xxxx). Subform is divided into Pages. And i want to make button change pages, but it is placed on the FORM. What code to do to make this work ??
Private Sub button123_Click()
me.xxxx.form.gotopage 1
End Sub
Why this code doesn`t work?
and with statement alse not working:
Private Sub button123_Click()
with me.xxxx
docmd.gotopage 1
end with
End Sub
Maybe with Forms! method but how??
.... Typical situation.. i Have a FORM and SUBFORM(xxxx). Subform is divided into Pages. And i want to make button change pages, but it is placed on the FORM. What code to do to make this work ??
Private Sub button123_Click()
me.xxxx.form.gotopage 1
End Sub
Why this code doesn`t work?
and with statement alse not working:
Private Sub button123_Click()
with me.xxxx
docmd.gotopage 1
end with
End Sub
Maybe with Forms! method but how??