Building a Wizard-type interface.

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

I'm building an app that imports data from Excel. During the import
process, I am displaying forms that show records that won't be
imported unless corrections are made, giving the user the opportunity
to fix them, then showing duplicate records, allowing them to make
changes there too. I wanted to do this in steps like a wizard, with
Next and Back buttons, but I'm not sure of the entire design process.
Are there any instructions or tutorials out there to assist?

Thanks,

Dave
 
Dave said:
I'm building an app that imports data from Excel. During the import
process, I am displaying forms that show records that won't be
imported unless corrections are made, giving the user the opportunity
to fix them, then showing duplicate records, allowing them to make
changes there too. I wanted to do this in steps like a wizard, with
Next and Back buttons, but I'm not sure of the entire design process.
Are there any instructions or tutorials out there to assist?

Use a TabControl on a single form with the TabStyle set to "None". Then
your [Next] and [Back] buttons simply advance (or retreat) through the
pages on the TabControl.
 
Back
Top