I'm trying to connect to QuickBooks Accountant 2011 using the usual QBFC
classes (C#).
QBSessionManager sessionManager = new QBSessionManager();
sessionManager.OpenConnection("", "Application");
A I know, from Intuit samples the code above should connect to the opened instance of aQuickBooks
application.
The error that I'm getting is:
Retrieving the COM class factory for component with CLSID {3C801F08-CDC5-4129-AAE8-CCC4F116B5BE} failed due to the following error: 80040154.
Yes, I've build the project using x86
as the target, but I guess I'm missing something. Do I need to install the QuickBooks SDK
on the client computer? I'm using QB SDK 10, do I need to use QB SDK 11?
Please guide me in the right direction.
PS: I did another application that uses QBOE, which is working OK, but this time I'm stuck on trying things that don't make sense.