Wizard type Form entries and underlying data set

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

I am trying to make it easier for the user of my database to enter the
correct information in by guiding them through a wizard like set of
interfaces. Are there any easy ways of creating wizard type pages to enter
data into a record?

thanks,
Mark
 
Mark said:
I am trying to make it easier for the user of my database to enter the
correct information in by guiding them through a wizard like set of
interfaces. Are there any easy ways of creating wizard type pages to enter
data into a record?

I do this using a TabControl with the Style set to "None". The user is not even
aware that there is a TabControl on the form and the [Next] and [Back] buttons simply
change the current page on the TabControl.
 
very nice. thanks.

-- Mark

Rick Brandt said:
Mark said:
I am trying to make it easier for the user of my database to enter the
correct information in by guiding them through a wizard like set of
interfaces. Are there any easy ways of creating wizard type pages to enter
data into a record?

I do this using a TabControl with the Style set to "None". The user is not even
aware that there is a TabControl on the form and the [Next] and [Back] buttons simply
change the current page on the TabControl.
 
Back
Top