Reputation: 309
I am working on access forms(MS access 2010). I created one form, that shows record one by one when i set default view -> Continuous Forms I getting a trouble when i use that form as sub form to another form. Am getting single form view in another form. Help me to resolve this issue.
Upvotes: 0
Views: 1048
Reputation: 8402
Put something like this in your code to set the default view of your subform:
Forms!frmMain.frmSubform.DefaultView = 2
Upvotes: 1