Sathish
Sathish

Reputation: 309

MS-Access subform with continuous form issue

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

Answers (1)

Johnny Bones
Johnny Bones

Reputation: 8402

Put something like this in your code to set the default view of your subform:

Forms!frmMain.frmSubform.DefaultView = 2

Upvotes: 1

Related Questions