How to suppress the prompt window to continue

As per my application requirement, I need to open each form in Access DB to count Activex controls using vb.net. My problem is that one form in the DB asks for user input, and because of this, my application stops before user intervention.

Is it possible to ignore such forms and continue scanning the database without user intervention?

Please help me....

0


source to share


1 answer


Can't you open your forms in design mode:

docmd.openForm "myFormName", acDesign

      



You will then be able to freely browse the objects on the form and identify the activeX controls.

+3


source







All Articles