kestrel1306
06-09-2017, 10:28 PM
Hi guys,
Due to poor performance graphics at work I have had to change from a continous userform to multipages with some nested multipages.
For data validation I need to check if certain items have been checked or not, and if not then send the user back to them for further attention.
If the item is just on a multipage, then it's simple to do using
UserForm8.multipage1.Value = 4
UserForm8.control1.SetFocus
The problem arises where I need to go a control on a multipage that's on a multipage.
I would have hoped that the following would have worked, but alas no...
UserForm8.multipage1.Value = 4 'upper page - 5th tab
UserForm8.multipage2.Value = 0 'lower page - 1st tab
UserForm8.control1.SetFocus
Any help would be greatly appreciated thanks.
Regards
Kes
Due to poor performance graphics at work I have had to change from a continous userform to multipages with some nested multipages.
For data validation I need to check if certain items have been checked or not, and if not then send the user back to them for further attention.
If the item is just on a multipage, then it's simple to do using
UserForm8.multipage1.Value = 4
UserForm8.control1.SetFocus
The problem arises where I need to go a control on a multipage that's on a multipage.
I would have hoped that the following would have worked, but alas no...
UserForm8.multipage1.Value = 4 'upper page - 5th tab
UserForm8.multipage2.Value = 0 'lower page - 1st tab
UserForm8.control1.SetFocus
Any help would be greatly appreciated thanks.
Regards
Kes