To count Activex controls from MS-Access forms using vb.net I am using the connection as follws..
oDBEngine = oAccess.DBEngine oDB = oDBEngine.OpenDatabase(Name:=strFullFileName, Options:=False, ReadOnly:=False, Connect:="")
and Openning the forms in Design mode, as there is a user input prompt form which prevents us to run the application further if we open it in Default view.
oAccess.DoCmd.OpenForm(FormName:=objForms.Name, View:=AcFormView.acDesign)
Now the problem is:
The DataBase gets opens and along with that all the forms open up while running the application. Is there anyway we just prevent to open the database and forms, while reading the forms.
Thank you.