Questions tagged [qbfc]

The QuickBooks Foundation Classes (qbfc) are a COM Library for interoping with QuickBooks products from Intuit Software

The QuickBooks Foundation Classes (qbfc) are a COM Library for interoping with QuickBooks products from Intuit Software.

The SDK page can be found here

188 questions
2
votes
1 answer

How do i add (reference) Quick book's dll to silverlight project?

I am using silverlight project.In this i have to use Quick books SDK (QBFC). But problem is silverlight not allowing other assembles. Because : Silverlight uses a different runtime and a subset of the regular .Net framework, which is why we can…
Kavitha
  • 1,447
  • 2
  • 22
  • 37
2
votes
1 answer

Quickbooks time tracking

I'm in charge of a time clock system which provides easy access for our employees to enter their hours and then publish those hours into quickbooks This has thus far not been a problem as we have utilized the web connector to interface with a web…
Robert Petz
  • 2,718
  • 4
  • 23
  • 52
2
votes
1 answer

How to Resolve Quickbooks Interface Error: QBFC Error "Could Not Load File or Assembly Interop.QBFC7 or one of its dependencies"

I recently inherited a C# Winforms application that communicates with Quickbooks via their QBFC interface. The application contains a reference to the COM Server Interop.QBFC7.dll. The application works fine in our test environment and in several…
Grasshopper
  • 4,717
  • 9
  • 36
  • 62
1
vote
2 answers

How to Export Invoices Generated Through Quickbooks SDK to PDF

We have a scenario where we need to use the Quickbooks SDK to create invoices from an external application and then return a PDF copy of that invoice to the calling application. Creating an invoice is very easy to do with the Quickbooks SDK, so…
Anthony Gatlin
  • 4,407
  • 5
  • 37
  • 53
1
vote
1 answer

Trouble creating SalesOrder with Quickbooks and VB.Net

I'm having trouble creating a sales order using QBFC15 and VB.Net into Quickbooks Enterprise 22. I can connect to QB and create a job for an existing customer with the following code: Dim msgSetRs As IMsgSetResponse Try sessManager = New…
Old EEAP
  • 11
  • 4
1
vote
1 answer

How can A COM component be registered halfway?

I'm building an an installer using a Visual Studio 2008 deployment (setup) project. The project has a Launch Condition "Privileged" so that only administrators can run it. It uses a merge module provided by a third party to register a COM component.…
Paul Keister
  • 12,851
  • 5
  • 46
  • 75
1
vote
1 answer

Consolibyte QuickBooks PHP Library - Importing All Active Customers

I am looking at the directory of example files at https://github.com/consolibyte/quickbooks-php/tree/master/docs/web_connector for Consolibyte's QuickBooks PHP library and don't see an example that allows you to import a list of all customers in…
Lloyd Banks
  • 35,740
  • 58
  • 156
  • 248
1
vote
3 answers

Add bill to QuickBooks with QBFC

I am using QBFC to add invoices and bills to QB from my C# app. I have it successfully creating invoices, but I am having trouble creating bills. I have updated this question to remove most of the code. I have been removing pieces of the message…
Jerry Welliver
  • 377
  • 1
  • 13
1
vote
2 answers

"Could not start QuickBooks" when running console application from task scheduler

I wrote a console application using Interop.QBFC13 that connects to Quickbooks. If I set up a scheduled task with "run only when user is logged in" it will open the console window and run successfully. If I set up the scheduled task with "run…
Primico
  • 2,143
  • 3
  • 24
  • 36
1
vote
0 answers

QuickBooks QBXML SDK releases and compatibility

Where can I find information about future releases of QBXML and outstanding issues? For instance, I would like to know if there are any changes that need to be made for the newest release of QuickBooks Desktop (2018). According to this link QBXML…
Hans Vonn
  • 3,949
  • 3
  • 21
  • 15
1
vote
1 answer

What QBFC API do I use for Vendor Credit?

For vendor invoices I'm using QBFC13lib.IBillAdd. In testing...some of the data has negative amounts. This would be a vendor credit. What is the interface for that? I'm pretty much scratching my head looking at the Onscreen reference. (using…
Chris Catignani
  • 5,040
  • 16
  • 42
  • 49
1
vote
1 answer

How we can create employee pay cheques using qbfc?

I am using below code snippet to create cheques for employees using qbfc : ICheckAdd chkAddQuery = requestMsgSet.AppendCheckAddRq(); chkAddQuery.AccountRef.FullName.SetValue("1001 - Bank (Test…
PapaDiHatti
  • 1,841
  • 19
  • 26
1
vote
1 answer

Use QBFC from a desktop application to interface to Quickbooks online

We have a windows desktop based application that interfaces to Quickbooks Pro desktop using QBFC. It creates a QBSessionManager, adds message sets to it, performs the requests, and parses the responses. Is it possible to use this existing QBFC based…
Chris Vesper
  • 646
  • 7
  • 18
1
vote
2 answers

Adding Custom Field data to Quickbooks Invoices through QBFC in VB.net

I'm working on creating invoices in Quickbooks through QBFC. I'm having trouble adding Custom Field information to my InvoiceAdd request. I'm using the following code: Dim CountryExt As IDataExtAdd =…
Ampersand
  • 21
  • 4
1
vote
1 answer

Converting sales order to invoice and linking the transaction

Reposting this to hopefully help someone in the future. Previously it was closed for being "too broad" but the answer turned out to be quite simple. Original question: I am developing an application that pulls all sales orders entered in the past…
dragoncmd
  • 234
  • 4
  • 19
1 2
3
12 13