Thanks for your informative reply Jonathan. From the details you've given
me, I now have somewhere to start looking!
I've used UserForms before, but I am hoping not to have to re-invent the
wheel.
I guess I'm looking for the capability of using Forward and Back buttons
without having to write reams of code allowing the history of user actions
to be retrieved.
I'll take a lok at the refererences that you've suggested and see if I come
up with anything. The Batch Conversion Wizard sounds interesting I'll see if
I can get some ideas from that.
Thanks again Jonathan.
Philip
> Thanks for your informative reply Jonathan. From the details you've given
> me, I now have somewhere to start looking!
[quoted text clipped - 3 lines]
> without having to write reams of code allowing the history of user actions
> to be retrieved.
Forward & Back buttons are fairly straightforward. The Value property of the
Multipage control determines which page is currently displayed.
Therefore, all the Forward and Back buttons need do (in their Click event)
is respectively increment or decrement the Value property of the MultiPage,
with appropriate error checking to see if you are on the first or last page.

Signature
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup
Keep your VBA code safe, sign the ClassicVB petition www.classicvb.org
PPL - 25 Mar 2007 14:49 GMT
Thanks for your help Jonathon, I'll try it.
Philip
>> Thanks for your informative reply Jonathan. From the details you've given
>> me, I now have somewhere to start looking!
[quoted text clipped - 11 lines]
> MultiPage, with appropriate error checking to see if you are on the first
> or last page.