Can anyone please help? I have a form with a subform within it, the ides behind it is to imitate the forms/windows you get when you're viewing (internet explorer setup wizard or the setup wizards for any other application). You know, where you have a logo on the left hand part of the window and on the right hand side, you have the text with the “Previous”, “Cancel” and “Next” buttons. On my own form, I have a subform, which contains the text and the buttons. What I need to know is, how can I make the “Next” button on the subform open up another similar subform in the same window that the current one is in (overlapping it) rather than in a separate window.
I was previosly given the option of using:
on the button's click event you can change the source object of the subform control:Me.parent.chdSubForm.SourceObject = "mynextform"
I have encountered problems with this code. Any other ideas?
I was previosly given the option of using:
on the button's click event you can change the source object of the subform control:Me.parent.chdSubForm.SourceObject = "mynextform"
I have encountered problems with this code. Any other ideas?