.net – How to suppress a prompt window to continue further

ms-accessvb.net

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

Is there any way to ignore such forms and proceed with scanning DB without user intervention?

Please help me out….

Best Answer

Can't you open your forms in design mode:

docmd.openForm "myFormName", acDesign

You'll then be able to freely browse the objects in the form and identify your activeX controls.