Excel VBA Referencing
scotchy33
Forums
Can IDEA script reference DLL's and tlb's similar to what you do in Excel VBA. If so, how?
I would like to reference Microsoft ActiveX Data Objects 2.8 Library.
See attached screenshot.
Hi Scott,
Hi Scott,
If you can access it, it would be through the CreateObject function.
I did a google search and found this page that might help you get going: https://docs.microsoft.com/en-us/sql/ado/guide/appendixes/using-ado-wit…
So I guess it would be:
Dim conn1 as object
Set conn1 = CreateObject("ADODB.Connection")
Hopefully this will get you started.
Brian