qbfc

use accented characters with quickbooks SDK

Using the Quickbooks SDK QBFC 7.0. When I attempt to get a list of all customers in quickbooks, if any of the customers have an accented character in their name like è then I get an exception: An Exception occurred! Type:UTFDataFormatException, Message: invalid byte 2 (<) of a 3-byte sequence. SAXParseException: error ar line 1, colum...

Bulk process invoices with QuickBooks SDK including cover letter

Is there a way to print, via the SDK (I'm using qbXML and the QuickBooks web connector to connect to a Java application server, SDK version 7.0, QuickBooks enterprise 9.0) invoices with their cover letter? It may take a third party tool, because it seems that QuickBooks has a nice little checkbox of "to be printed" which lets you go and ...

How to get list of customers, jobs, and employeers using Quickbooks QBFC (8.0 SDK)

Hey guys, I have been given the painful task of writing a C# application to sync up employee time entries in a separate database with Quickbooks. Since I'm brand new to QB programming, I'm trying to peform basic tasks, such as getting a list of customers, then jobs for each customer, then employees. I've been reading the SDK documentati...

Quickbooks/QBFC 8.0 - Multiple Criteria of an Identical Request Filter Type

I would like to query an Employee by matching First and Last name. Ideally, I'd like to be able to specify that in one EmployeeQueryRq QBFC object. I think I have a start: Dim EmployeeQueryRq As IEmployeeQuery EmployeeQueryRq = requestMsgSet.AppendEmployeeQueryRq() EmployeeQueryRq.ORListQuery.ListFilter.ORNameFilter.NameFilter.MatchCri...

Name on Check in QuickBooks SDK

I have a customer requirement to export the checks written in QuickBooks into a specific format because their bank allows fraud prevention by uploading a file and they verify the name on the check against what you give them before clearing it. I looked at the QuickBooks SDK (we use the XML to communicate in general) and It references a ...

Different kinds of doubles in vb.net?

Hey all- 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 = invoice.ORInvoiceLineAddList.Append.InvoiceLineAdd Dim amount as Double amount = s...

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 actual commission amount to an hour rate based on that. It's ugly and will very likely break....

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 one of its enter code heredependencies. An attempt was made to load a program with a...