Data bound VBA forms

  • Thread starter Thread starter Andy
  • Start date Start date
A

Andy

I have a VBA form with a MulitPage control that reads
from/Submits to an excel sheet.

Each control on the form calls a submit procedure that
loads the data into correct place in the database (using a
the cells property). This procdeure is called from the
After_Update event of the control

My only problem is that if you enter data in the control
and change pages on the multipage without tabbing,
After_Update doesn't fire and the data doesn't get
submitted.

Anyone know how to force the After_Update when selecting a
new page on the multipage? This is driving me (and my
users) nuts!!

Andy
 
The change event of the multipage fires when pages are changed. You can use
this event to ensure the data is updated.
 
Thanks Tom,

Andy
-----Original Message-----
The change event of the multipage fires when pages are changed. You can use
this event to ensure the data is updated.

--
Regards,
Tom Ogilvy




.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top