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
1
vote
1 answer

In the qbXML ItemQuery request , how do I get the description for a service item?

I am creating a tool that will synchronize our production database with QuickBooks (QB). I am trying to get a list of all the items in QB using ItemQuery and I want to get the description of each item as well. However, it seems that different types…
Brian
  • 37,399
  • 24
  • 94
  • 109
1
vote
1 answer

Could not load file or assembly 'Interop.QBFC8Lib' or one of its dependencies

I am using a quickbooks sdk that containst the QBFC8Lib dll everything works fine on my dev machine. when I publish to my live server I get the following error: System.BadImageFormatException: Could not load file or assembly 'Interop.QBFC8Lib' or…
twal
  • 6,999
  • 17
  • 48
  • 58
1
vote
1 answer

Quickbook Menu is not showing using QBFC SDK

I used below code to add menu it's working in one machine but not working on another machine ISubscriptionMsgSetRequest _menuSet = GetSubscribeMsgRequest(); IUIExtensionSubscriptionAdd query = …
Dan1212
  • 13
  • 3
1
vote
1 answer

Bill Payment Check - Object specified in the request cannot be found

I'm using C# and QBFC13 to connect to the desktop edition of QB Enterprise 13. I'm creating Bills and then creating a Bill Payment Check to pay those bills. I keep getting the error "Object 48E-1425590500 specified in the request cannot be found." …
1
vote
2 answers

How to add an invoice line item to an existing Quickbooks invoice using QBFC and VBA

Does anyone have any sample vba code using QuickBooks QBFC to add an invoice line item to an existing QuickBooks invoice? I have no problem querying the invoice that I wish to edit, and I am also able to create a new invoice and its line items into…
1
vote
1 answer

Using Quickbooks SDK: how should we import commissions?

One of my developers is attempting to import commissions (related to payroll) from one our products via the QuickBooks SDK. So far the only solution he's been able to come up with is to create a pay type with a pay rate per hour and convert the…
Joel B Fant
  • 24,406
  • 4
  • 66
  • 67
1
vote
1 answer

Different kinds of doubles in vb.net?

I'm using QBFC to generate invoices in a Quickbooks integrating app. I'm getting an exception thrown for lineItem.Amount.SetValue(val as Double) when I try to enter a programmatically generated double. The following does not work: lineItem =…
Jonathan
  • 3,464
  • 9
  • 46
  • 54
1
vote
2 answers

is there a way to query IEmployeePayrollInfo with QuickBooks SDK?

I am starting to work with the QuickBooks SDK, and so far I am able to query Employees no problem, like so: _sessionManager.OpenConnection("", "") _sessionManager.BeginSession("", ENOpenMode.omDontCare) Dim requestSet As IMsgSetRequest =…
dub stylee
  • 3,252
  • 5
  • 38
  • 59
1
vote
2 answers

Checking for null values in quickbooks using QBFC

I am trying to get the list of items inside of a quickbooks database. I have the following snippet of code: IItemServiceRet itemServiceRet = itemRet.ItemServiceRet; TestItem item = new TestItem(); …
Giardino
  • 1,367
  • 3
  • 10
  • 30
1
vote
1 answer

What might be the reason for the error "this feature is not enabled or not available in this version of quickbooks"

I am getting the error "this feature is not enabled or not available in this version of quickbooks". I am trying to add a customer into QuickBooks. Can any one please let me know the possible reasons for this error? The details of the SDK…
Hulk
  • 97
  • 3
  • 16
1
vote
1 answer

Quickbooks SDK Deposit not populating payee on main deposit

I am creating a program using the QBFC13 that is supposed to create a deposit from an other current asset type of account to a bank account. However, when the depositadd method is executed the payee doesn't get filled in on the bank account. How do…
Greg M
  • 13
  • 2
1
vote
1 answer

Cannot get the value of ExpenseLineRetList in QuickBooks C#

Hello I'm Having problem getting the ExpensesList in Cheque in Quickbooks Here is my code: bool sessionBegun = false; bool connectionOpen = false; QBSessionManager sessionManager = null; try { …
user2530748
  • 260
  • 3
  • 16
1
vote
0 answers

Quickbooks get all Write Cheques

I'm new with integrating quickbooks in C#, is there a simple way to query all the list of cheque in Quickbooks. From Banking Menu > Write Cheques There you can add cheques, now i would like to query all the cheque that I created. I'm currently…
user2530748
  • 260
  • 3
  • 16
1
vote
1 answer

How to integrate Quickbooks desktop Application with a ASP.Net with iis (web app)?

I am using Silverlight application. From this I have called QuickBooks using QBFC12. Based on my request I got the data and pushed into my own application. Everything fine. But when I deploy my project in iis …I am not able to connect to quick…
Kavitha
  • 1,447
  • 2
  • 22
  • 37
1
vote
1 answer

Payment on a bill not working using QBFC12 for QuickBooks 2013

I am using C# to connect with QuickBooks desktop 2013. I need to record payments against a bill, but cannot figure out why it is not working. My current code keeps throwing an error of 3120 saying it can't find the bill, even though the bill object…
Matt
  • 13
  • 3