48Highlander
Technical User
I am evaluating the IBiz Integrator for QuickBooks. THier documentation is very poor and it doesn't help that I don't know enough about VBA coding.
I have the following code:
When I run this code, I get error 91: Object variable not set. How should I be setting up the cust object in my code?
Bill J
I have the following code:
Code:
Dim cust As Customer
Dim strConn As String
strConn = "ApplicationName= """ & "my app" & """ CompanyFile= """ & "QB path and file name" & """"
cust.QBConnectionMode = cmDontCare
cust.QBConnectionString = strConn
cust.CustomerName = "John Doe"
cust.Add
When I run this code, I get error 91: Object variable not set. How should I be setting up the cust object in my code?
Bill J