Displaying forms with common 'frame' (1 Viewer)

Mist

Registered User.
Local time
Today, 13:10
Joined
Mar 5, 2012
Messages
66
I have an application with numerous forms which require the same button controls (ie. next; previous; first; last; new; delete). I don't want to design the same set of buttons for each form. How do I go about designing/implementing a 'template' or 'frame' in which each form can be displayed and manipulated accordingly?
 

Pat Hartman

Super Moderator
Staff member
Local time
Today, 06:10
Joined
Feb 19, 2002
Messages
43,302
The simplest solution is to create a subform with all the controls. The code in the subform would refer to the "parent" when doing stuff.

Me.Parent.Requery
 

Users who are viewing this thread

Top Bottom