I am developing a Tool in vb.net and need find out Activex Controls from MS Access DB forms. I am able to conut number of controls in form, but unable to get the Activex Controls only from the form. Can any one have any idea how to achieve this, please suggest.
|
feedback
|
|
Can you access the controltype property? If so, I cannot help with vb.net, but here is some VBA that may help.
| |||||
|
feedback
|
|
I am not sure what your are wanting is possible. How To Automate Microsoft Access From Visual Basic .NET To automate: Dim oAccess As Access.Application ' Start a new instance of Access for Automation: oAccess = New Access.ApplicationClass() ' Open a database in exclusive mode: oAccess.OpenCurrentDatabase(filepath:="c:\mydb.mdb", Exclusive:=True) oAccess.DoCmd.OpenForm(FormName:="Employees") | ||||
|
feedback
|