├── README.md ├── images ├── nbLeft.png └── nbextend.gif ├── qbdt ├── c-sharp │ ├── QBFC │ │ ├── InvoiceAdd.zip │ │ ├── MCInvoiceAddQBFC.zip │ │ ├── MCInvoiceAddQBFC │ │ │ ├── Intuit_QBFC │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── MCInvoiceAddQBFC.csproj │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── SessionFramework │ │ │ │ │ ├── Defaults.cs │ │ │ │ │ ├── ENEdition.cs │ │ │ │ │ ├── Logger.cs │ │ │ │ │ ├── QBException.cs │ │ │ │ │ ├── QBNoResponseException.cs │ │ │ │ │ ├── QBResultException.cs │ │ │ │ │ └── SessionManager.cs │ │ │ │ └── app.config │ │ │ ├── MCInvoiceAddQBFC.exe │ │ │ └── MCInvoiceAddQBFC.sln │ │ ├── QBInvoiceAdd │ │ │ ├── App.ico │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ICON1.ICO │ │ │ ├── IDNLogo.gif │ │ │ ├── InputItem.cs │ │ │ ├── InputItem.resx │ │ │ ├── InvoiceAdd.cs │ │ │ ├── InvoiceAdd.csproj │ │ │ ├── InvoiceAdd.csproj.user │ │ │ ├── InvoiceAdd.exe │ │ │ ├── InvoiceAdd.resx │ │ │ ├── InvoiceAdd.sln │ │ │ ├── app.config │ │ │ └── intuit_blue.gif │ │ ├── WCECommSample.zip │ │ └── WCECommSample │ │ │ ├── client │ │ │ ├── App_Code │ │ │ │ ├── Customer.cs │ │ │ │ ├── DataBaseManager.cs │ │ │ │ └── Item.cs │ │ │ ├── App_Data │ │ │ │ ├── ASPNETDB.MDF │ │ │ │ └── aspnetdb_log.ldf │ │ │ ├── Default.aspx │ │ │ ├── Default.aspx.cs │ │ │ ├── Web.Config │ │ │ ├── cart.aspx │ │ │ ├── cart.aspx.cs │ │ │ ├── client.sln │ │ │ ├── purchase.aspx │ │ │ ├── purchase.aspx.cs │ │ │ ├── signup.aspx │ │ │ └── signup.aspx.cs │ │ │ ├── db │ │ │ └── ecommdb.mdb │ │ │ ├── merchant │ │ │ ├── Web.Config │ │ │ ├── javascript │ │ │ │ └── prototype.js │ │ │ ├── merchant.sln │ │ │ └── setup.html │ │ │ ├── readme.txt │ │ │ ├── sampleInfo.xml │ │ │ └── service │ │ │ ├── App_Code │ │ │ ├── AccessDatabase.cs │ │ │ ├── DataBaseManager.cs │ │ │ ├── IAuthentication.cs │ │ │ ├── IController.cs │ │ │ ├── ISessionPool.cs │ │ │ ├── MemorySession.cs │ │ │ ├── QuickBooksCustomerOps.cs │ │ │ ├── QuickBooksItemOps.cs │ │ │ ├── QuickBooksSalesReceiptOps.cs │ │ │ ├── SampleAuthentication.cs │ │ │ ├── SampleController.cs │ │ │ ├── Session.cs │ │ │ ├── UtilityManager.cs │ │ │ ├── WCECommService.cs │ │ │ └── XmlManager.cs │ │ │ ├── Bin │ │ │ └── Interop.QBFC15Lib.dll │ │ │ ├── Postflight.aspx │ │ │ ├── Postflight.aspx.cs │ │ │ ├── Preflight.aspx │ │ │ ├── Preflight.aspx.cs │ │ │ ├── TestService.qwc │ │ │ ├── WCECommService.asmx │ │ │ ├── Web.Config │ │ │ ├── javascript │ │ │ └── prototype.js │ │ │ ├── service.sln │ │ │ └── vwd.webinfo │ └── qbXML │ │ ├── CustomerAdd.zip │ │ ├── CustomerAdd │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── CustomerAdd.csproj │ │ ├── CustomerAdd.exe │ │ ├── CustomerAdd.sln │ │ ├── CustomerAddForm.cs │ │ ├── CustomerAddForm.resx │ │ ├── app.config │ │ └── readme.txt │ │ ├── MCInvoiceAdd.zip │ │ ├── MCInvoiceAdd │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── MCInvoiceAdd.csproj │ │ ├── MCInvoiceAdd.exe │ │ ├── MCInvoiceAdd.sln │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── app.config │ │ ├── SubscribeAndHandleQBEvent.zip │ │ ├── SubscribeAndHandleQBEvent_vs03 │ │ ├── AssemblyInfo.cs │ │ ├── ClassFactoryBase.cs │ │ ├── EventHandlerObj.cs │ │ ├── IClassFactory.cs │ │ ├── Interop.QBSDKEVENTLib.dll │ │ ├── ReferenceCountedObject.cs │ │ ├── SubscribeAndHandleQBEvent.cs │ │ ├── SubscribeAndHandleQBEvent.csproj │ │ ├── SubscribeAndHandleQBEvent.exe │ │ ├── SubscribeAndHandleQBEvent.sln │ │ └── readme.txt │ │ ├── SubscribeAndHandleQBEvent_vs15 │ │ ├── AssemblyInfo.cs │ │ ├── ClassFactoryBase.cs │ │ ├── EventHandlerObj.cs │ │ ├── IClassFactory.cs │ │ ├── ReferenceCountedObject.cs │ │ ├── SubscribeAndHandleQBEvent.cs │ │ ├── SubscribeAndHandleQBEvent.csproj │ │ ├── SubscribeAndHandleQBEvent.exe │ │ ├── SubscribeAndHandleQBEvent.sln │ │ ├── app.config │ │ └── readme.txt │ │ ├── WCWebService.zip │ │ └── WCWebService │ │ ├── App_Code │ │ ├── Global.asax.cs │ │ └── WCWebService.asmx.cs │ │ ├── Global.asax │ │ ├── Global.asax.resx │ │ ├── HTTPSWebService.qwc │ │ ├── HTTPWebService.qwc │ │ ├── WCWebService.asmx │ │ ├── WCWebService.asmx.resx │ │ ├── WCWebService.sln │ │ ├── Web.config │ │ └── readme.txt ├── cpp │ ├── qbfc │ │ ├── MultipleRequests.zip │ │ ├── billadd │ │ │ ├── BillAdd.cpp │ │ │ ├── BillAdd.dsp │ │ │ ├── BillAdd.dsw │ │ │ ├── BillAdd.exe │ │ │ ├── BillAdd.h │ │ │ ├── BillAdd.rc │ │ │ ├── BillAdd.sln │ │ │ ├── BillAdd.vcxproj │ │ │ ├── BillAddDlg.cpp │ │ │ ├── BillAddDlg.h │ │ │ ├── QBFC3_IntelliSense.h │ │ │ ├── Resource.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ └── res │ │ │ │ ├── BillAdd.ico │ │ │ │ └── BillAdd.rc2 │ │ ├── cppqbfcbilladd.zip │ │ ├── cppqbfcinvoicequery.zip │ │ ├── cppqbfcitemquery.zip │ │ ├── invoicequery │ │ │ ├── InvoiceQuery.cpp │ │ │ ├── InvoiceQuery.dsp │ │ │ ├── InvoiceQuery.dsw │ │ │ ├── InvoiceQuery.exe │ │ │ ├── InvoiceQuery.h │ │ │ ├── InvoiceQuery.rc │ │ │ ├── InvoiceQuery.sln │ │ │ ├── InvoiceQuery.vcxproj │ │ │ ├── InvoiceQueryDlg.cpp │ │ │ ├── InvoiceQueryDlg.h │ │ │ ├── InvoiceViewDlg.cpp │ │ │ ├── InvoiceViewDlg.h │ │ │ ├── QBFC3_IntelliSense.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── res │ │ │ │ ├── InvoiceQuery.ico │ │ │ │ └── InvoiceQuery.rc2 │ │ │ └── resource.h │ │ ├── itemquery │ │ │ ├── ItemQuery.cpp │ │ │ ├── ItemQuery.dsp │ │ │ ├── ItemQuery.dsw │ │ │ ├── ItemQuery.exe │ │ │ ├── ItemQuery.h │ │ │ ├── ItemQuery.rc │ │ │ ├── ItemQuery.sln │ │ │ ├── ItemQuery.vcxproj │ │ │ ├── ItemQueryDlg.cpp │ │ │ ├── ItemQueryDlg.h │ │ │ ├── ItemViewDlg.cpp │ │ │ ├── ItemViewDlg.h │ │ │ ├── QBFC3_IntelliSense.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── res │ │ │ │ ├── ItemQuery.ico │ │ │ │ └── ItemQuery.rc2 │ │ │ └── resource.h │ │ └── multiplerequests │ │ │ ├── MultipleRequests.cpp │ │ │ ├── MultipleRequests.dsp │ │ │ ├── MultipleRequests.dsw │ │ │ ├── MultipleRequests.exe │ │ │ ├── MultipleRequests.h │ │ │ ├── MultipleRequests.rc │ │ │ ├── MultipleRequests.sln │ │ │ ├── MultipleRequests.vcxproj │ │ │ ├── MultipleRequestsDlg.cpp │ │ │ ├── MultipleRequestsDlg.h │ │ │ ├── QBFC3_IntelliSense.h │ │ │ ├── Resource.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ └── res │ │ │ ├── MultipleRequests.ico │ │ │ └── MultipleRequests.rc2 │ └── qbxml │ │ ├── AddCustomerJob.zip │ │ ├── UIandEventTest │ │ ├── EventHandler.zip │ │ ├── EventHandler │ │ │ ├── AboutDialog.cpp │ │ │ ├── AboutDialog.h │ │ │ ├── ChildView.cpp │ │ │ ├── ChildView.h │ │ │ ├── EventHandler.clw │ │ │ ├── EventHandler.cpp │ │ │ ├── EventHandler.dsp │ │ │ ├── EventHandler.dsw │ │ │ ├── EventHandler.exe │ │ │ ├── EventHandler.h │ │ │ ├── EventHandler.idl │ │ │ ├── EventHandler.plg │ │ │ ├── EventHandler.rc │ │ │ ├── EventHandler.rgs │ │ │ ├── EventHandler.sln │ │ │ ├── EventHandler.vcxproj │ │ │ ├── EventXML.txt │ │ │ ├── MainFrm.cpp │ │ │ ├── MainFrm.h │ │ │ ├── QBSDKCallback.cpp │ │ │ ├── QBSDKCallback.h │ │ │ ├── QBSDKCallback.rgs │ │ │ ├── Resource.h │ │ │ ├── SettingsDialog.cpp │ │ │ ├── SettingsDialog.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ └── res │ │ │ │ ├── EventHandler.ico │ │ │ │ └── QBSDKCallback.rgs │ │ ├── EventSubscribe.zip │ │ ├── EventSubscribe │ │ │ ├── EventSubscribe.clw │ │ │ ├── EventSubscribe.cpp │ │ │ ├── EventSubscribe.dsp │ │ │ ├── EventSubscribe.dsw │ │ │ ├── EventSubscribe.exe │ │ │ ├── EventSubscribe.h │ │ │ ├── EventSubscribe.rc │ │ │ ├── EventSubscribe.sln │ │ │ ├── EventSubscribe.vcxproj │ │ │ ├── EventSubscribeDlg.cpp │ │ │ ├── EventSubscribeDlg.h │ │ │ ├── Resource.h │ │ │ ├── res │ │ │ │ └── EventSubscribe.ico │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── InvokeUI.zip │ │ ├── InvokeUI │ │ │ ├── InvokeUI.clw │ │ │ ├── InvokeUI.cpp │ │ │ ├── InvokeUI.dsp │ │ │ ├── InvokeUI.dsw │ │ │ ├── InvokeUI.exe │ │ │ ├── InvokeUI.h │ │ │ ├── InvokeUI.rc │ │ │ ├── InvokeUI.sln │ │ │ ├── InvokeUI.vcxproj │ │ │ ├── InvokeUIDlg.cpp │ │ │ ├── InvokeUIDlg.h │ │ │ ├── Resource.h │ │ │ ├── res │ │ │ │ └── InvokeUI.ico │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── MenuSubscribe.zip │ │ ├── MenuSubscribe │ │ │ ├── MenuSubscribe.clw │ │ │ ├── MenuSubscribe.cpp │ │ │ ├── MenuSubscribe.dsp │ │ │ ├── MenuSubscribe.dsw │ │ │ ├── MenuSubscribe.exe │ │ │ ├── MenuSubscribe.h │ │ │ ├── MenuSubscribe.rc │ │ │ ├── MenuSubscribe.sln │ │ │ ├── MenuSubscribe.vcxproj │ │ │ ├── MenuSubscribeDlg.cpp │ │ │ ├── MenuSubscribeDlg.h │ │ │ ├── Resource.h │ │ │ ├── res │ │ │ │ └── MenuSubscribe.ico │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── Readme.txt │ │ └── shared │ │ │ ├── DOMXMLBuilder.cpp │ │ │ ├── DOMXMLBuilder.h │ │ │ ├── QBXMLRP.dll │ │ │ ├── QBXMLRP2.dll │ │ │ ├── Resource.h │ │ │ ├── ShowXML.aps │ │ │ ├── ShowXML.rc │ │ │ ├── ShowXMLDlg.cpp │ │ │ ├── ShowXMLDlg.h │ │ │ ├── Utility.cpp │ │ │ ├── Utility.h │ │ │ ├── qbXMLObject.cpp │ │ │ ├── qbXMLObject.h │ │ │ ├── qbXMLRPWrapper.cpp │ │ │ ├── qbXMLRPWrapper.h │ │ │ └── qbXMLTags.h │ │ ├── addcustomer │ │ ├── AddCustDlg.cpp │ │ ├── AddCustDlg.h │ │ ├── AddCustomer.cpp │ │ ├── AddCustomer.dsp │ │ ├── AddCustomer.dsw │ │ ├── AddCustomer.h │ │ ├── AddCustomer.idl │ │ ├── AddCustomer.rc │ │ ├── AddCustomer.rgs │ │ ├── AddCustomer.sln │ │ ├── AddCustomer.vcxproj │ │ ├── AddNewCustomer.exe │ │ ├── CustomerAdd.cpp │ │ ├── CustomerAdd.h │ │ ├── DisplayDlg.cpp │ │ ├── DisplayDlg.h │ │ ├── Resource.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── Utility.cpp │ │ ├── Utility.h │ │ ├── ValidatorDlg.cpp │ │ ├── ValidatorDlg.h │ │ ├── XMLBuilder.cpp │ │ ├── XMLBuilder.h │ │ ├── XMLValidator.cpp │ │ ├── XMLValidator.h │ │ ├── customers.bmp │ │ ├── qbXMLTags.h │ │ ├── qbXMLWrapper.cpp │ │ ├── qbXMLWrapper.h │ │ ├── qbbanner.bmp │ │ └── resource.hm │ │ ├── addcustomerjob │ │ ├── AddCustomerJob.cpp │ │ ├── AddCustomerJob.dsp │ │ ├── AddCustomerJob.dsw │ │ ├── AddCustomerJob.exe │ │ ├── AddCustomerJob.h │ │ ├── AddCustomerJob.idl │ │ ├── AddCustomerJob.rc │ │ ├── AddCustomerJob.rgs │ │ ├── AddCustomerJob.sln │ │ ├── AddCustomerJob.vcxproj │ │ ├── DOMXMLBuilder.cpp │ │ ├── DOMXMLBuilder.h │ │ ├── QBAddCustomerJobDlg.cpp │ │ ├── QBAddCustomerJobDlg.h │ │ ├── QBCompanyFileDlg.cpp │ │ ├── QBCompanyFileDlg.h │ │ ├── QBCustomerAdd.cpp │ │ ├── QBCustomerAdd.h │ │ ├── QBCustomerQuery.cpp │ │ ├── QBCustomerQuery.h │ │ ├── QBCustomerRet.cpp │ │ ├── QBCustomerRet.h │ │ ├── QBCustomerTypeAdd.cpp │ │ ├── QBCustomerTypeAdd.h │ │ ├── QBCustomerTypeQuery.cpp │ │ ├── QBCustomerTypeQuery.h │ │ ├── QBCustomerTypeRet.cpp │ │ ├── QBCustomerTypeRet.h │ │ ├── Resource.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── Utility.cpp │ │ ├── Utility.h │ │ ├── customers.bmp │ │ ├── qbXMLOpsBase.cpp │ │ ├── qbXMLOpsBase.h │ │ ├── qbXMLRPWrapper.cpp │ │ ├── qbXMLRPWrapper.h │ │ ├── qbXMLTags.h │ │ └── qbbanner.bmp │ │ ├── cppAddCustomer.zip │ │ ├── cppqbxmlsdktest.zip │ │ ├── hostquery.zip │ │ ├── hostquery │ │ ├── AssemblyInfo.cpp │ │ ├── Form1.h │ │ ├── Form1.resx │ │ ├── ReadMe.txt │ │ ├── app.ico │ │ ├── app.rc │ │ ├── hostquery.cpp │ │ ├── hostquery.exe │ │ ├── hostquery.sln │ │ ├── hostquery.vcxproj │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ │ └── sdktest │ │ ├── sdktest.cpp │ │ ├── sdktest.dsp │ │ ├── sdktest.dsw │ │ ├── sdktest.exe │ │ ├── sdktest.sln │ │ └── sdktest.vcxproj ├── java │ └── qbxml │ │ ├── QBWebConnector.zip │ │ ├── QBWebConnectorSvc │ │ ├── ArrayOfString.java │ │ ├── AuthResponse.java │ │ ├── QBWebConnectorSvc.java │ │ ├── QBWebConnectorSvcLocator.java │ │ ├── QBWebConnectorSvcSoap.java │ │ ├── QBWebConnectorSvcSoapImpl.java │ │ ├── QBWebConnectorSvcSoapStub.java │ │ ├── compit │ │ ├── compit.bat │ │ ├── deploy.wsdd │ │ ├── sampleInfo.xml │ │ └── undeploy.wsdd │ │ └── sdktest │ │ └── QueryRq.xml └── vb.NET │ ├── QBFC │ ├── AddInvoice │ │ ├── AddInvoice.exe │ │ ├── AddInvoice.sln │ │ ├── AddInvoice.vbproj │ │ ├── AssemblyInfo.vb │ │ ├── ReadMe.txt │ │ ├── app.config │ │ ├── frmAddInvoice.Designer.vb │ │ ├── frmAddInvoice.resX │ │ ├── frmAddInvoice.vb │ │ ├── frmInvoiceDisplay.Designer.vb │ │ ├── frmInvoiceDisplay.resX │ │ ├── frmInvoiceDisplay.vb │ │ └── modAddInvoice.vb │ ├── CDN_VendorAdd │ │ ├── Add_Vendor.Designer.vb │ │ ├── Add_Vendor.exe │ │ ├── Add_Vendor.resX │ │ ├── Add_Vendor.sln │ │ ├── Add_Vendor.vb │ │ ├── Add_Vendor.vbproj │ │ ├── AssemblyInfo.vb │ │ ├── ConnectionWithQuickBooks.vb │ │ ├── GetCurrency.vb │ │ ├── GetVendorType.vb │ │ ├── app.config │ │ └── qbbanner.bmp │ ├── CustomerAdd │ │ ├── AssemblyInfo.vb │ │ ├── CustomerAdd.exe │ │ ├── CustomerAdd.sln │ │ ├── CustomerAdd.vbproj │ │ ├── CustomerAdd.vbproj.user │ │ ├── CustomerAddForm.resx │ │ ├── CustomerAddForm.vb │ │ ├── app.config │ │ └── readme.txt │ ├── DataExtensions │ │ ├── AssemblyInfo.vb │ │ ├── DataExtSample.exe │ │ ├── DataExtSample.sln │ │ ├── DataExtSample.vbproj │ │ ├── DataExtSample.vbproj.user │ │ ├── app.config │ │ ├── frmAddDataExtDef.resX │ │ ├── frmAddDataExtDef.vb │ │ ├── frmAddDataExtension.resX │ │ ├── frmAddDataExtension.vb │ │ ├── frmDataExtSample.resX │ │ ├── frmDataExtSample.vb │ │ ├── frmModDataExtension.resX │ │ ├── frmModDataExtension.vb │ │ ├── modDataExtSample.vb │ │ └── readme.txt │ ├── DepositAdd │ │ ├── AssemblyInfo.vb │ │ ├── DepositAdd.exe │ │ ├── DepositAdd.sln │ │ ├── DepositAdd.vbproj │ │ ├── DepositAdd.vbproj.user │ │ ├── app.config │ │ ├── frmFundsForDeposit.resX │ │ ├── frmFundsForDeposit.vb │ │ ├── modDepositAdd.vb │ │ └── readme.txt │ ├── Events │ │ ├── Callback │ │ │ ├── AssemblyInfo.vb │ │ │ ├── COMRegister.vb │ │ │ ├── EventsCallbackClass.vb │ │ │ ├── EventsCallbackModule.vb │ │ │ ├── NativeMethod.vb │ │ │ ├── QBFCEventsCallback.Designer.vb │ │ │ ├── QBFCEventsCallback.exe │ │ │ ├── QBFCEventsCallback.resX │ │ │ ├── QBFCEventsCallback.sln │ │ │ ├── QBFCEventsCallback.vb │ │ │ ├── QBFCEventsCallback.vbproj │ │ │ ├── QBFCEventsCallbackCOMServer.vb │ │ │ ├── QBFCEventsCallbackClassFactory.vb │ │ │ ├── QBFCEventsCallbackMain.vb │ │ │ └── app.config │ │ ├── QBFCEventsCallback.zip │ │ ├── QBFCEventsSubscriberProject.zip │ │ ├── Readme.txt │ │ └── Subscriber │ │ │ ├── AssemblyInfo.vb │ │ │ ├── QBFCEventsSubscriber.exe │ │ │ ├── QBFCEventsSubscriberForm.Designer.vb │ │ │ ├── QBFCEventsSubscriberForm.resX │ │ │ ├── QBFCEventsSubscriberForm.vb │ │ │ ├── QBFCEventsSubscriberModule.vb │ │ │ ├── QBFCEventsSubscriberProject.sln │ │ │ ├── QBFCEventsSubscriberProject.vbproj │ │ │ └── app.config │ ├── ExpenseReportByVendor │ │ ├── AssemblyInfo.vb │ │ ├── AxInterop.MSComDlg.dll │ │ ├── AxInterop.SHDocVw.dll │ │ ├── DisplayForm.resX │ │ ├── DisplayForm.vb │ │ ├── ExpenseReport.exe │ │ ├── ExpenseReport.sln │ │ ├── ExpenseReport.vbproj │ │ ├── ExpenseReport.vbproj.user │ │ ├── GeneralSummaryReportQueryRq.xml │ │ ├── Interop.MSComDlg.dll │ │ ├── Interop.SHDocVw.dll │ │ ├── ParserHelper.vb │ │ ├── UIForm.resX │ │ ├── UIForm.vb │ │ ├── app.config │ │ ├── blank.html │ │ ├── qbooks.vb │ │ └── readme.txt │ ├── InventoryAdjust │ │ ├── .vs │ │ │ └── InventoryAdjustProj │ │ │ │ └── v14 │ │ │ │ └── .suo │ │ ├── AssemblyInfo.vb │ │ ├── InventoryAdjust.Designer.vb │ │ ├── InventoryAdjust.resX │ │ ├── InventoryAdjust.vb │ │ ├── InventoryAdjustProj.exe │ │ ├── InventoryAdjustProj.sln │ │ ├── InventoryAdjustProj.vbproj │ │ ├── QuickBooks.vb │ │ ├── app.config │ │ ├── bin │ │ │ ├── Debug │ │ │ │ ├── InventoryAdjustProj.exe.config │ │ │ │ ├── InventoryAdjustProj.vshost.exe │ │ │ │ ├── InventoryAdjustProj.vshost.exe.config │ │ │ │ └── InventoryAdjustProj.vshost.exe.manifest │ │ │ └── Release │ │ │ │ ├── InventoryAdjustProj.exe │ │ │ │ ├── InventoryAdjustProj.exe.config │ │ │ │ ├── InventoryAdjustProj.vshost.exe │ │ │ │ ├── InventoryAdjustProj.vshost.exe.config │ │ │ │ ├── InventoryAdjustProj.vshost.exe.manifest │ │ │ │ └── InventoryAdjustProj.xml │ │ ├── obj │ │ │ ├── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── Interop.MSXML2.dll │ │ │ │ ├── Interop.QBFC15Lib.dll │ │ │ │ ├── InventoryAdjustProj.vbproj.FileListAbsolute.txt │ │ │ │ └── InventoryAdjustProj.vbproj.ResolveComReference.cache │ │ │ └── Release │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── Interop.MSXML2.dll │ │ │ │ ├── Interop.QBFC15Lib.dll │ │ │ │ ├── InventoryAdjustProj.InventoryAdjust.resources │ │ │ │ ├── InventoryAdjustProj.exe │ │ │ │ ├── InventoryAdjustProj.vbproj.FileListAbsolute.txt │ │ │ │ ├── InventoryAdjustProj.vbproj.GenerateResource.Cache │ │ │ │ ├── InventoryAdjustProj.vbproj.ResolveComReference.cache │ │ │ │ └── InventoryAdjustProj.xml │ │ └── readme.txt │ ├── InvoiceMod │ │ ├── AssemblyInfo.vb │ │ ├── InvoiceMod.exe │ │ ├── InvoiceMod.sln │ │ ├── InvoiceMod.vbproj │ │ ├── Readme.txt │ │ ├── app.config │ │ ├── frmEditInvoiceLine.Designer.vb │ │ ├── frmEditInvoiceLine.resX │ │ ├── frmEditInvoiceLine.vb │ │ ├── frmInvoiceModMain.Designer.vb │ │ ├── frmInvoiceModMain.resX │ │ ├── frmInvoiceModMain.vb │ │ ├── frmInvoiceModify.Designer.vb │ │ ├── frmInvoiceModify.resX │ │ ├── frmInvoiceModify.vb │ │ ├── frmInvoiceQuery.Designer.vb │ │ ├── frmInvoiceQuery.resX │ │ ├── frmInvoiceQuery.vb │ │ ├── frmModifying.Designer.vb │ │ ├── frmModifying.resX │ │ ├── frmModifying.vb │ │ ├── frmPatience.Designer.vb │ │ ├── frmPatience.resX │ │ ├── frmPatience.vb │ │ ├── frmShowRequest.Designer.vb │ │ ├── frmShowRequest.resX │ │ ├── frmShowRequest.vb │ │ ├── modGeneric.vb │ │ ├── modQBFC.vb │ │ ├── modQBXMLRP.vb │ │ └── modUtilities.vb │ ├── ItemInventoryMod │ │ ├── AssemblyInfo.vb │ │ ├── FullNameListIDClass.vb │ │ ├── ItemInventoryMod.exe │ │ ├── ItemInventoryMod.sln │ │ ├── ItemInventoryMod.vbproj │ │ ├── ItemInventoryMod.vbproj.user │ │ ├── ItemInventoryModule.vb │ │ ├── app.config │ │ ├── frmMain.resx │ │ ├── frmMain.vb │ │ └── readme.txt │ ├── ItemReceipt.zip │ ├── ItemReceipt │ │ ├── AssemblyInfo.vb │ │ ├── ItemObjects.vb │ │ ├── ItemReceipt.exe │ │ ├── ItemReceipt.sln │ │ ├── ItemReceipt.vbproj │ │ ├── ItemReceipt.vbproj.user │ │ ├── ReceiveItems.resx │ │ ├── ReceiveItems.vb │ │ ├── app.config │ │ └── readme.txt │ ├── Macro │ │ ├── AssemblyInfo.vb │ │ ├── EstimatesModule.vb │ │ ├── InfoClass.cls │ │ ├── InfoClass.vb │ │ ├── UseMacroDefMacro.exe │ │ ├── UseMacroDefMacro.sln │ │ ├── UseMacroDefMacro.vbproj │ │ ├── UseMacroDefMacroModule.vb │ │ ├── app.config │ │ ├── frmUseMacroDefMacro.Designer.vb │ │ ├── frmUseMacroDefMacro.resX │ │ ├── frmUseMacroDefMacro.vb │ │ └── readme.txt │ ├── MenuEventContext │ │ ├── AssemblyInfo.vb │ │ ├── COMRegister.vb │ │ ├── MainMod.vb │ │ ├── MenuEventContext.exe │ │ ├── MenuEventContext.sln │ │ ├── MenuEventContext.vbproj │ │ ├── MenuEventSample.Designer.vb │ │ ├── MenuEventSample.resX │ │ ├── MenuEventSample.vb │ │ ├── NativeMethod.vb │ │ ├── QBFCMenuEventsCallbackCOMServer.vb │ │ ├── QBFCMenuEventsCallbackClassFactory.vb │ │ ├── QBMenuListener.vb │ │ ├── ReadMe.txt │ │ └── app.config │ ├── PriceLevels.zip │ ├── PriceLevels │ │ ├── AddItem.resx │ │ ├── AddItem.vb │ │ ├── AssemblyInfo.vb │ │ ├── PriceLevelSample.resx │ │ ├── PriceLevelSample.vb │ │ ├── PriceLevels.exe │ │ ├── PriceLevels.sln │ │ ├── PriceLevels.vbproj │ │ ├── PriceLevels.vbproj.user │ │ ├── app.config │ │ └── readme.txt │ ├── PurchaseOrderModify │ │ ├── AssemblyInfo.vb │ │ ├── PurchaseOrderModify.exe │ │ ├── PurchaseOrderModify.sln │ │ ├── PurchaseOrderModify.vbproj │ │ ├── Readme.txt │ │ ├── app.config │ │ ├── frmPurchaseOrderDetail.Designer.vb │ │ ├── frmPurchaseOrderDetail.resX │ │ ├── frmPurchaseOrderDetail.vb │ │ ├── frmPurchaseOrderModifyMain.Designer.vb │ │ ├── frmPurchaseOrderModifyMain.resX │ │ ├── frmPurchaseOrderModifyMain.vb │ │ ├── frmPurchaseOrderSelect.Designer.vb │ │ ├── frmPurchaseOrderSelect.resX │ │ ├── frmPurchaseOrderSelect.vb │ │ ├── modGeneric.vb │ │ ├── modQBFC.vb │ │ ├── modQBXMLRP.vb │ │ └── modUtilities.vb │ ├── SyncCustomerList │ │ ├── AssemblyInfo.vb │ │ ├── CustomerClass.vb │ │ ├── SyncCustomerList.exe │ │ ├── SyncCustomerList.sln │ │ ├── SyncCustomerList.vbproj │ │ ├── SyncCustomerList.vbproj.user │ │ ├── SyncCustomerListModule.vb │ │ ├── SyncCustomerMainForm.resx │ │ ├── SyncCustomerMainForm.vb │ │ ├── app.config │ │ └── readme.txt │ ├── US_CDN_BillAdd │ │ ├── AssemblyInfo.vb │ │ ├── BillAdd.sln │ │ ├── BillAdd.vbproj │ │ ├── CommPrefsDlg.Designer.vb │ │ ├── CommPrefsDlg.resX │ │ ├── CommPrefsDlg.vb │ │ ├── SessionTicketDlg.Designer.vb │ │ ├── SessionTicketDlg.resX │ │ ├── SessionTicketDlg.vb │ │ ├── US_CDN_BillAdd.Designer.vb │ │ ├── US_CDN_BillAdd.exe │ │ ├── US_CDN_BillAdd.resX │ │ ├── US_CDN_BillAdd.vb │ │ ├── app.config │ │ └── readme.txt │ ├── US_CDN_UK_CustomerQuery │ │ ├── AssemblyInfo.vb │ │ ├── USCDNUKCustomerQuery.Designer.vb │ │ ├── USCDNUKCustomerQuery.exe │ │ ├── USCDNUKCustomerQuery.resX │ │ ├── USCDNUKCustomerQuery.sln │ │ ├── USCDNUKCustomerQuery.vb │ │ ├── USCDNUKCustomerQuery.vbproj │ │ ├── app.config │ │ └── readme.txt │ ├── VersionDependentCustAdd │ │ ├── AddCust.Designer.vb │ │ ├── AddCust.resX │ │ ├── AddCust.vb │ │ ├── AddCustomer.sln │ │ ├── AddCustomer.vbproj │ │ ├── AssemblyInfo.vb │ │ ├── CustomerAddModule.vb │ │ ├── DisplayXML.Designer.vb │ │ ├── DisplayXML.resX │ │ ├── DisplayXML.vb │ │ ├── VersionDependentAddCustomer.exe │ │ ├── XMLBuilder.cls │ │ └── app.config │ ├── billadd │ │ ├── AssemblyInfo.vb │ │ ├── BillAdd.Designer.vb │ │ ├── BillAdd.exe │ │ ├── BillAdd.resX │ │ ├── BillAdd.sln │ │ ├── BillAdd.vb │ │ ├── BillAdd.vbproj │ │ ├── CommPrefsDlg.Designer.vb │ │ ├── CommPrefsDlg.resX │ │ ├── CommPrefsDlg.vb │ │ ├── SessionTicketDlg.Designer.vb │ │ ├── SessionTicketDlg.resX │ │ ├── SessionTicketDlg.vb │ │ └── app.config │ ├── invoicequery │ │ ├── AssemblyInfo.vb │ │ ├── Display.Designer.vb │ │ ├── Display.resX │ │ ├── Display.vb │ │ ├── InvoiceQuery.exe │ │ ├── InvoiceQuery.sln │ │ ├── InvoiceQuery.vbproj │ │ ├── Query.Designer.vb │ │ ├── Query.resX │ │ ├── Query.vb │ │ └── app.config │ ├── itemquery │ │ ├── AssemblyInfo.vb │ │ ├── ItemQuery.exe │ │ ├── ItemQuery.sln │ │ ├── ItemQuery.vbproj │ │ ├── MainModule.vb │ │ ├── ShowItems.Designer.vb │ │ ├── ShowItems.resX │ │ ├── ShowItems.vb │ │ └── app.config │ ├── vbnetqbfcAddInvoice.zip │ ├── vbnetqbfcCDN_VendorAdd.zip │ ├── vbnetqbfcCustomerAdd.zip │ ├── vbnetqbfcDataExtensions.zip │ ├── vbnetqbfcDepositAdd.zip │ ├── vbnetqbfcEvents.zip │ ├── vbnetqbfcExpenseReportByVendor.zip │ ├── vbnetqbfcInventoryAdjust.zip │ ├── vbnetqbfcInvoiceMod.zip │ ├── vbnetqbfcItemInventoryMod.zip │ ├── vbnetqbfcItemReceipt.zip │ ├── vbnetqbfcMacro.zip │ ├── vbnetqbfcMenuEventContext.zip │ ├── vbnetqbfcPriceLevels.zip │ ├── vbnetqbfcPurchaseOrderModify.zip │ ├── vbnetqbfcSyncCustomerList.zip │ ├── vbnetqbfcUS_CDN_BillAdd.zip │ ├── vbnetqbfcUS_CDN_UK_CustomerQuery.zip │ ├── vbnetqbfcVersionDependentCustAdd.zip │ ├── vbnetqbfcbilladd.zip │ ├── vbnetqbfcinvoicequery.zip │ └── vbnetqbfcitemquery.zip │ └── qbXML │ ├── AddReceivePayment.zip │ ├── AddReceivePayment │ ├── AssemblyInfo.vb │ ├── MainForm.Designer.vb │ ├── MainForm.resX │ ├── MainForm.vb │ ├── ReadMe.txt │ ├── ReceivePayment.exe │ ├── ReceivePayment.sln │ ├── ReceivePayment.vbproj │ ├── app.config │ └── qbooks.vb │ ├── CDN_InvoiceAdd.zip │ ├── CDN_InvoiceAdd │ ├── AddInvoiceSample.exe │ ├── ArAccountInfo.vb │ ├── AssemblyInfo.vb │ ├── CurrencyInfo.vb │ ├── CustomerInfo.vb │ ├── Invoice.Designer.vb │ ├── Invoice.resX │ ├── Invoice.vb │ ├── InvoiceSample.sln │ ├── InvoiceSample.vbproj │ ├── ItemsInfo.vb │ ├── QBooks.vb │ ├── ReadMe.txt │ ├── SaveInvoice.vb │ ├── TaxCodeInfo.vb │ └── app.config │ ├── DataEvents.zip │ ├── DataEvents │ ├── QBDataEventApp.zip │ ├── QBDataEventApp │ │ ├── AssemblyInfo.vb │ │ ├── CCustomer.vb │ │ ├── QBDataEventApp.exe │ │ ├── QBDataEventApp.sln │ │ ├── QBDataEventApp.vbproj │ │ ├── QBDataEventForm.Designer.vb │ │ ├── QBDataEventForm.resX │ │ ├── QBDataEventForm.vb │ │ └── app.config │ ├── QBDataEventManager.zip │ ├── QBDataEventManager │ │ ├── App.config │ │ ├── COMRegister.vb │ │ ├── NativeMethod.vb │ │ ├── QBDataEvenManagerMain.vb │ │ ├── QBDataEventManager.exe │ │ ├── QBDataEventManager.sln │ │ ├── QBDataEventManager.vbproj │ │ ├── QBDataEventManagerCOMServer.vb │ │ ├── QBDataEventManagerDisplay.Designer.vb │ │ ├── QBDataEventManagerDisplay.resx │ │ ├── QBDataEventManagerDisplay.vb │ │ ├── QBEventHandler.vb │ │ ├── QBEventHandlerClassFactory.vb │ │ └── QBEventQueue.vb │ ├── QBDataEventSubscriber.zip │ ├── QBDataEventSubscriber │ │ ├── AssemblyInfo.vb │ │ ├── QBDataEventSubscriber.exe │ │ ├── QBDataEventSubscriber.sln │ │ ├── QBDataEventSubscriber.vbproj │ │ ├── SubscriberForm.Designer.vb │ │ ├── SubscriberForm.resX │ │ ├── SubscriberForm.vb │ │ └── app.config │ └── Readme.txt │ ├── DataExtSample.zip │ ├── DataExtSample │ ├── AssemblyInfo.vb │ ├── DataExtSample.exe │ ├── DataExtSample.sln │ ├── DataExtSample.vbproj │ ├── ReadMe.txt │ ├── app.config │ ├── frmAddDataExtDef.Designer.vb │ ├── frmAddDataExtDef.resX │ ├── frmAddDataExtDef.vb │ ├── frmAddDataExtension.Designer.vb │ ├── frmAddDataExtension.resX │ ├── frmAddDataExtension.vb │ ├── frmDataExtSample.Designer.vb │ ├── frmDataExtSample.resX │ ├── frmDataExtSample.vb │ ├── frmModDataExtension.Designer.vb │ ├── frmModDataExtension.resX │ ├── frmModDataExtension.vb │ ├── frmqbXMLDisplay.Designer.vb │ ├── frmqbXMLDisplay.resX │ ├── frmqbXMLDisplay.vb │ └── modDataExtSample.vb │ ├── DepositAdd.zip │ ├── DepositAdd │ ├── AssemblyInfo.vb │ ├── DepositAdd.exe │ ├── DepositAdd.sln │ ├── DepositAdd.vbproj │ ├── ReadMe.txt │ ├── app.config │ ├── frmFundsForDeposit.Designer.vb │ ├── frmFundsForDeposit.resX │ ├── frmFundsForDeposit.vb │ └── modDepositAdd.vb │ ├── InventoryAdjust.zip │ ├── InventoryAdjust │ ├── AssemblyInfo.vb │ ├── InventoryAdjust.Designer.vb │ ├── InventoryAdjust.exe │ ├── InventoryAdjust.resX │ ├── InventoryAdjust.vb │ ├── InventoryAdjustProj.sln │ ├── InventoryAdjustProj.vbproj │ ├── QuickBooks.vb │ ├── ReadMe.txt │ └── app.config │ ├── SDKTestPlus3.zip │ ├── SDKTestPlus3 │ ├── App.ico │ ├── AssemblyInfo.vb │ ├── ReadMe.txt │ ├── SDKTestPlus3.exe │ ├── SDKTestPlus3.sln │ ├── SDKTestPlus3.vbproj │ ├── app.config │ ├── frmDisplay.Designer.vb │ ├── frmDisplay.resX │ ├── frmDisplay.vb │ ├── frmSDKTestPlus3.Designer.vb │ ├── frmSDKTestPlus3.resX │ ├── frmSDKTestPlus3.vb │ └── modSDKTestPlus3.vb │ ├── US_CDN_CustomerAdd.zip │ ├── US_CDN_CustomerAdd │ ├── AssemblyInfo.vb │ ├── ReadMe.txt │ ├── US_CDN_CustomerAdd.exe │ ├── US_CDN_CustomerAdd.sln │ ├── US_CDN_CustomerAdd.vbproj │ ├── app.config │ ├── frmUS_CDN_CustomerAdd.Designer.vb │ ├── frmUS_CDN_CustomerAdd.resX │ ├── frmUS_CDN_CustomerAdd.vb │ └── modUS_CDN_CustomerAdd.vb │ ├── addcustomer.zip │ ├── addcustomer │ ├── AddCust.Designer.vb │ ├── AddCust.resX │ ├── AddCust.vb │ ├── AddCustomer.exe │ ├── AddCustomer.sln │ ├── AddCustomer.vbproj │ ├── AssemblyInfo.vb │ ├── DisplayXML.Designer.vb │ ├── DisplayXML.resX │ ├── DisplayXML.vb │ ├── ReadMe.txt │ └── app.config │ ├── customtxndetreport.zip │ ├── customtxndetreport │ ├── AssemblyInfo.vb │ ├── BigDisplayForm.Designer.vb │ ├── BigDisplayForm.resX │ ├── BigDisplayForm.vb │ ├── CustomTxnDetail.exe │ ├── CustomTxnDetail.sln │ ├── CustomTxnDetail.vbproj │ ├── DisplayForm.Designer.vb │ ├── DisplayForm.resX │ ├── DisplayForm.vb │ ├── ParserHelper.vb │ ├── QBooks.vb │ ├── ReadMe.txt │ ├── UIForm.Designer.vb │ ├── UIForm.resX │ ├── UIForm.vb │ └── app.config │ ├── deletecustomer.zip │ ├── deletecustomer │ ├── AssemblyInfo.vb │ ├── DeleteCustomerSample.exe │ ├── DeleteCustomerSample.sln │ ├── DeleteCustomerSample.vbproj │ ├── DisplayXML.Designer.vb │ ├── DisplayXML.resX │ ├── DisplayXML.vb │ ├── Main.Designer.vb │ ├── Main.resX │ ├── Main.vb │ ├── ReadMe.txt │ ├── app.config │ └── qbModule.vb │ ├── expensereport.zip │ ├── expensereport │ ├── AssemblyInfo.vb │ ├── DisplayForm.Designer.vb │ ├── DisplayForm.resX │ ├── DisplayForm.vb │ ├── ExpenseReport.exe │ ├── ExpenseReport.sln │ ├── ExpenseReport.vbproj │ ├── ParserHelper.vb │ ├── QBooks.vb │ ├── ReadMe.txt │ ├── UIForm.Designer.vb │ ├── UIForm.resX │ ├── UIForm.vb │ ├── app.config │ └── blank.html │ ├── modifycustomer.zip │ ├── modifycustomer │ ├── AssemblyInfo.vb │ ├── Customer.vb │ ├── CustomerList.Designer.vb │ ├── CustomerList.resX │ ├── CustomerList.vb │ ├── CustomerMod.Designer.vb │ ├── CustomerMod.resX │ ├── CustomerMod.vb │ ├── Display.Designer.vb │ ├── Display.resX │ ├── Display.vb │ ├── Main.Designer.vb │ ├── Main.resX │ ├── Main.vb │ ├── ModifyCustomer.exe │ ├── ModifyCustomer.sln │ ├── ModifyCustomer.vbproj │ ├── ReadMe.txt │ ├── app.config │ ├── qbXMLRPWrapper.vb │ └── qbbanner.bmp │ ├── sdktest.zip │ └── sdktest │ ├── AssemblyInfo.vb │ ├── Log.vb │ ├── ReadMe.txt │ ├── SDKTest.exe │ ├── SDKTest.exe.config │ ├── SDKTest.pdb │ ├── SDKTest.sln │ ├── SDKTest.vbproj │ ├── SDKTest.vshost.exe │ ├── SDKTest.vshost.exe.config │ ├── SDKTest.vshost.exe.manifest │ ├── SDKTest.xml │ ├── UIForm.Designer.vb │ ├── UIForm.resX │ ├── UIForm.vb │ ├── app.config │ └── qbooks.vb ├── readme.html ├── views ├── Callout.png └── Sample.png └── xmlfiles ├── AccountQueryRq.xml ├── BillQueryRq.xml ├── CheckQueryRq.xml ├── CompanyQueryRq.xml ├── EmployeeQueryRq.xml ├── EntityQueryRq.xml ├── HostQueryRq.xml ├── InvoiceQueryRq.xml ├── ItemInventoryQueryRq.xml ├── ItemSalesTaxQueryRq.xml ├── ItemServiceQueryRq.xml ├── PayrollItemWageQueryRq.xml ├── PreferencesQueryRq.xml ├── ReceivePaymentQueryRq.xml ├── SalesRepQueryRq.xml └── legacy ├── AccountAddRq.xml ├── AccountQueryRq_1.xml ├── AccountQueryRq_2.xml ├── AccountQueryRq_3.xml ├── AccountQueryRq_4.xml ├── AccountQueryRq_5.xml ├── AccountQueryRq_6.xml ├── AccountQueryRq_7.xml ├── AddInvoiceSpecifyTemplate.xml ├── CustomDetailReport.xml ├── CustomFieldAddValue.xml ├── CustomFieldDelValue.xml ├── CustomFieldModValue.xml ├── CustomerAddRq.xml ├── CustomerQuery.xml ├── CustomerQuery_metadata.xml ├── DepositAddRq.xml ├── DisplayList.xml ├── DisplayTxn.xml ├── ErrRecovery1.xml ├── ErrRecovery2.xml ├── ErrRecovery3.xml ├── HostQuery.xml ├── ItemServiceAddRq.xml ├── ItemsAddRq.xml ├── JournalEntryAddRq.xml ├── ProfitAndLossStdReport.xml ├── QueryFilterRq.xml ├── ReceivePaymentAddRq.xml ├── ReceivePaymentToDepositQueryRq.xml ├── TemplateQuery.xml ├── TxnDisplayAdd_Invoice.xml └── VendorAddRq.xml /images/nbLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/images/nbLeft.png -------------------------------------------------------------------------------- /images/nbextend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/images/nbextend.gif -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/InvoiceAdd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/InvoiceAdd.zip -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/MCInvoiceAddQBFC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/MCInvoiceAddQBFC.zip -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/MCInvoiceAddQBFC/Intuit_QBFC/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/MCInvoiceAddQBFC/Intuit_QBFC/SessionFramework/ENEdition.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2007-2020 by Intuit Inc. 2 | // All rights reserved 3 | // Usage governed by the QuickBooks SDK Developer's License Agreement 4 | 5 | using System; 6 | 7 | namespace MCInvoiceAddQBFC.Session_Framework 8 | { 9 | public enum ENEdition 10 | { 11 | edUS = 0, 12 | edCA = 1, 13 | edUK = 2, 14 | } 15 | 16 | static class QBEdition 17 | { 18 | public static readonly string[] codes = { "US", "CA", "UK" }; 19 | 20 | public static string getEdition(ENEdition ed) 21 | { 22 | return codes[(int)ed]; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/MCInvoiceAddQBFC/Intuit_QBFC/SessionFramework/QBException.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2007-2020 by Intuit Inc. 2 | // All rights reserved 3 | // Usage governed by the QuickBooks SDK Developer's License Agreement 4 | 5 | using System; 6 | using System.Collections.Generic; 7 | using System.Text; 8 | 9 | namespace MCInvoiceAddQBFC.Session_Framework 10 | { 11 | public class QBException : Exception 12 | { 13 | private QBException() { } 14 | 15 | public QBException(string sMsg) 16 | : base(sMsg) 17 | { 18 | } 19 | 20 | public override string ToString() 21 | { 22 | return base.Message; 23 | } 24 | 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/MCInvoiceAddQBFC/Intuit_QBFC/SessionFramework/QBResultException.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2007-2020 by Intuit Inc. 2 | // All rights reserved 3 | // Usage governed by the QuickBooks SDK Developer's License Agreement 4 | 5 | using System; 6 | using System.Collections.Generic; 7 | using System.Text; 8 | 9 | namespace MCInvoiceAddQBFC.Session_Framework 10 | { 11 | public class QBResultException : Exception 12 | { 13 | private readonly int _index; 14 | 15 | private QBResultException() { } 16 | 17 | public QBResultException(int index, string errorMsg) 18 | : base(errorMsg) 19 | { 20 | _index = index; 21 | } 22 | 23 | /// 24 | /// Read-only property that provides the index of the offending IResponse object within 25 | /// the IResponseList object 26 | /// 27 | public int ErrorIndex 28 | { 29 | get 30 | { 31 | return _index; 32 | } 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/MCInvoiceAddQBFC/Intuit_QBFC/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/MCInvoiceAddQBFC/MCInvoiceAddQBFC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/MCInvoiceAddQBFC/MCInvoiceAddQBFC.exe -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/QBInvoiceAdd/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/QBInvoiceAdd/App.ico -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/QBInvoiceAdd/ICON1.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/QBInvoiceAdd/ICON1.ICO -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/QBInvoiceAdd/IDNLogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/QBInvoiceAdd/IDNLogo.gif -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/QBInvoiceAdd/InvoiceAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/QBInvoiceAdd/InvoiceAdd.cs -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/QBInvoiceAdd/InvoiceAdd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/QBInvoiceAdd/InvoiceAdd.exe -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/QBInvoiceAdd/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/QBInvoiceAdd/intuit_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/QBInvoiceAdd/intuit_blue.gif -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/WCECommSample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/WCECommSample.zip -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/WCECommSample/client/App_Data/ASPNETDB.MDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/WCECommSample/client/App_Data/ASPNETDB.MDF -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/WCECommSample/client/App_Data/aspnetdb_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/WCECommSample/client/App_Data/aspnetdb_log.ldf -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/WCECommSample/db/ecommdb.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/WCECommSample/db/ecommdb.mdb -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/WCECommSample/service/App_Code/IController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Data; 3 | using System.Configuration; 4 | using System.Web; 5 | using System.Web.Security; 6 | using System.Web.UI; 7 | using System.Web.UI.WebControls; 8 | using System.Web.UI.WebControls.WebParts; 9 | using System.Web.UI.HtmlControls; 10 | 11 | /// 12 | /// IController implements the behavior for this web service implementation. 13 | /// 14 | public interface IController 15 | { 16 | bool haveAnyWork(Session sess); 17 | String getNextAction(Session sess); 18 | int processLastAction(Session sess, String response); 19 | string getInteractive(Session sess); 20 | void putInteractive(Session sess, string sessionID); 21 | void removeInteractive(Session sess); 22 | } 23 | -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/WCECommSample/service/App_Code/ISessionPool.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Data; 3 | using System.Configuration; 4 | using System.Web; 5 | using System.Web.Security; 6 | using System.Web.UI; 7 | using System.Web.UI.WebControls; 8 | using System.Web.UI.WebControls.WebParts; 9 | using System.Web.UI.HtmlControls; 10 | 11 | /// 12 | /// ISessionPool is the interface for session classes. There can be many ways to 13 | /// store information between calls from QBWC. Possibly implementations could 14 | /// include memory sessions, database sessions, cookies, or whatever. 15 | /// 16 | public interface ISessionPool 17 | { 18 | void put(String key, Session sess); 19 | Session get(String key); 20 | void invalidate(String key); 21 | } 22 | -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/WCECommSample/service/App_Code/WCECommService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/WCECommSample/service/App_Code/WCECommService.cs -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/WCECommSample/service/Bin/Interop.QBFC15Lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/QBFC/WCECommSample/service/Bin/Interop.QBFC15Lib.dll -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/WCECommSample/service/TestService.qwc: -------------------------------------------------------------------------------- 1 | 2 | 3 | Add you app name here 4 | IDNWS2 5 | http://localhost/WCECommSample/service/WCECommService.asmx 6 | Starter sample web service for ecommerce 7 | http://localhost/WCECommSample/service/WCECommService.asmx?wsdl 8 | http://localhost/WCECommSample/service/WCECommService.asmx 9 | add your merchant name here 10 | {57F3B9B1-86F1-4fcc-B1EE-566DE1813D20} 11 | {90A44FB5-33D9-4815-AC85-BC87A7E7D1EB} 12 | QBFS 13 | 14 | 0xF 15 | -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/WCECommSample/service/WCECommService.asmx: -------------------------------------------------------------------------------- 1 | <%@ WebService Language="C#" CodeBehind="~/App_Code/WCECommService.cs" Class="WCECommService" %> 2 | -------------------------------------------------------------------------------- /qbdt/c-sharp/QBFC/WCECommSample/service/vwd.webinfo: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/CustomerAdd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/qbXML/CustomerAdd.zip -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/CustomerAdd/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/qbXML/CustomerAdd/App.ico -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/CustomerAdd/CustomerAdd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/qbXML/CustomerAdd/CustomerAdd.exe -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/CustomerAdd/CustomerAddForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/qbXML/CustomerAdd/CustomerAddForm.cs -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/CustomerAdd/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/CustomerAdd/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple .NET C# desktop application that creates a new 3 | QuickBooks customer by calling qbXMLRP COM dll. 4 | Standard .NET classes are used for formatting the qbXML request 5 | and parsing the qbXML response. 6 | 7 | Running the sample 8 | ------------------ 9 | 10 | Before running CustomerAdd.exe, make sure that .NET runtime is installed on the machine, 11 | and QuickBooks is running with a company opened. 12 | 13 | Building the sample 14 | ------------------ 15 | Open CustomerAdd.sln in Microsoft Visual Studio .NET and build the solution. 16 | Interop.QBXMLRPLib.dll has been generated by Visual Studio, 17 | by adding a COM reference to qbXMLRP.dll. 18 | -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/MCInvoiceAdd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/qbXML/MCInvoiceAdd.zip -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/MCInvoiceAdd/MCInvoiceAdd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/qbXML/MCInvoiceAdd/MCInvoiceAdd.exe -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/MCInvoiceAdd/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace MCInvoiceAdd { 6 | static class Program { 7 | /// 8 | /// The main entry point for the application. 9 | /// 10 | [STAThread] 11 | static void Main() { 12 | Application.EnableVisualStyles(); 13 | Application.SetCompatibleTextRenderingDefault(false); 14 | Application.Run(new Form1()); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/MCInvoiceAdd/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/MCInvoiceAdd/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/SubscribeAndHandleQBEvent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/qbXML/SubscribeAndHandleQBEvent.zip -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/SubscribeAndHandleQBEvent_vs03/IClassFactory.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.InteropServices; 3 | 4 | namespace SubscribeAndHandleQBEvent 5 | { 6 | // Interface IClassFactory is here to provide a C# definition of the 7 | // COM IClassFactory interface. 8 | [ 9 | ComImport, // This interface originated from COM. 10 | ComVisible(false), // It is not hard to imagine that this interface must not be exposed to COM. 11 | InterfaceType(ComInterfaceType.InterfaceIsIUnknown), // Indicate that this interface is not IDispatch-based. 12 | Guid("00000001-0000-0000-C000-000000000046") // This GUID is the actual GUID of IClassFactory. 13 | ] 14 | public interface IClassFactory 15 | { 16 | void CreateInstance(IntPtr pUnkOuter, ref Guid riid, out IntPtr ppvObject); 17 | void LockServer(bool fLock); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/SubscribeAndHandleQBEvent_vs03/Interop.QBSDKEVENTLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/qbXML/SubscribeAndHandleQBEvent_vs03/Interop.QBSDKEVENTLib.dll -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/SubscribeAndHandleQBEvent_vs03/SubscribeAndHandleQBEvent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/qbXML/SubscribeAndHandleQBEvent_vs03/SubscribeAndHandleQBEvent.exe -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/SubscribeAndHandleQBEvent_vs15/IClassFactory.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.InteropServices; 3 | 4 | namespace SubscribeAndHandleQBEvent 5 | { 6 | // Interface IClassFactory is here to provide a C# definition of the 7 | // COM IClassFactory interface. 8 | [ 9 | ComImport, // This interface originated from COM. 10 | ComVisible(false), // It is not hard to imagine that this interface must not be exposed to COM. 11 | InterfaceType(ComInterfaceType.InterfaceIsIUnknown), // Indicate that this interface is not IDispatch-based. 12 | Guid("00000001-0000-0000-C000-000000000046") // This GUID is the actual GUID of IClassFactory. 13 | ] 14 | public interface IClassFactory 15 | { 16 | void CreateInstance(IntPtr pUnkOuter, ref Guid riid, out IntPtr ppvObject); 17 | void LockServer(bool fLock); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/SubscribeAndHandleQBEvent_vs15/SubscribeAndHandleQBEvent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/qbXML/SubscribeAndHandleQBEvent_vs15/SubscribeAndHandleQBEvent.exe -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/SubscribeAndHandleQBEvent_vs15/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/WCWebService.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/qbXML/WCWebService.zip -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/WCWebService/App_Code/WCWebService.asmx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/c-sharp/qbXML/WCWebService/App_Code/WCWebService.asmx.cs -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/WCWebService/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="WCWebService.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/WCWebService/HTTPSWebService.qwc: -------------------------------------------------------------------------------- 1 | 2 | 3 | HTTPSWebService 4 | 5 | https://MTVL04A200337.corp.intuit.net/WCWebService/WCWebService.asmx 6 | A short description for WCWebService1 7 | http://MTVL04A200337.corp.intuit.net/WCWebService/WCWebService.asmx?wsdl 8 | username 9 | {57F3B9B1-86F1-4fcc-B1EE-566DE1813D20} 10 | {90A44FB5-33D9-4815-AC85-BC87A7E7D1EB} 11 | QBFS 12 | 13 | 0xF 14 | -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/WCWebService/HTTPWebService.qwc: -------------------------------------------------------------------------------- 1 | 2 | 3 | HTTPWebService 4 | 5 | http://localhost/WCWebService/WCWebService.asmx 6 | A short description for WCWebService1 7 | http://localhost/WCWebService/WCWebService.asmx?wsdl 8 | {87EDAAF8-637E-4203-867F-4BA79C2F8998} 9 | {CA1C3EB8-1B61-4747-A743-8D5B438B83AC} 10 | username 11 | QBFS 12 | 13 | 0xF 14 | -------------------------------------------------------------------------------- /qbdt/c-sharp/qbXML/WCWebService/WCWebService.asmx: -------------------------------------------------------------------------------- 1 | <%@ WebService Language="c#" Codebehind="~/App_Code/WCWebService.asmx.cs" Class="WCWebService.WCWebService" %> 2 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/MultipleRequests.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/MultipleRequests.zip -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/billadd/BillAdd.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "BillAdd"=.\BillAdd.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | begin source code control 11 | Perforce Project 12 | . 13 | end source code control 14 | }}} 15 | 16 | Package=<4> 17 | {{{ 18 | }}} 19 | 20 | ############################################################################### 21 | 22 | Global: 23 | 24 | Package=<5> 25 | {{{ 26 | }}} 27 | 28 | Package=<3> 29 | {{{ 30 | }}} 31 | 32 | ############################################################################### 33 | 34 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/billadd/BillAdd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/billadd/BillAdd.exe -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/billadd/BillAddDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/billadd/BillAddDlg.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/billadd/Resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by BILLADD.RC 4 | // 5 | #define IDR_MAINFRAME 128 6 | #define IDD_BILLADD_DIALOG 102 7 | 8 | // Next default values for new objects 9 | // 10 | #ifdef APSTUDIO_INVOKED 11 | #ifndef APSTUDIO_READONLY_SYMBOLS 12 | 13 | #define _APS_NEXT_RESOURCE_VALUE 129 14 | #define _APS_NEXT_CONTROL_VALUE 1000 15 | #define _APS_NEXT_SYMED_VALUE 101 16 | #define _APS_NEXT_COMMAND_VALUE 32771 17 | #endif 18 | #endif 19 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/billadd/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // BillAdd.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/billadd/res/BillAdd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/billadd/res/BillAdd.ico -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/billadd/res/BillAdd.rc2: -------------------------------------------------------------------------------- 1 | // 2 | // BILLADD.RC2 - resources Microsoft Visual C++ does not edit directly 3 | // 4 | 5 | #ifdef APSTUDIO_INVOKED 6 | #error this file is not editable by Microsoft Visual C++ 7 | #endif //APSTUDIO_INVOKED 8 | 9 | 10 | ///////////////////////////////////////////////////////////////////////////// 11 | // Add manually edited resources here... 12 | 13 | ///////////////////////////////////////////////////////////////////////////// 14 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/cppqbfcbilladd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/cppqbfcbilladd.zip -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/cppqbfcinvoicequery.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/cppqbfcinvoicequery.zip -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/cppqbfcitemquery.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/cppqbfcitemquery.zip -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/invoicequery/InvoiceQuery.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "InvoiceQuery"=.\InvoiceQuery.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | begin source code control 11 | Perforce Project 12 | . 13 | end source code control 14 | }}} 15 | 16 | Package=<4> 17 | {{{ 18 | }}} 19 | 20 | ############################################################################### 21 | 22 | Global: 23 | 24 | Package=<5> 25 | {{{ 26 | }}} 27 | 28 | Package=<3> 29 | {{{ 30 | }}} 31 | 32 | ############################################################################### 33 | 34 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/invoicequery/InvoiceQuery.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/invoicequery/InvoiceQuery.exe -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/invoicequery/InvoiceQueryDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/invoicequery/InvoiceQueryDlg.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/invoicequery/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // InvoiceQuery.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/invoicequery/res/InvoiceQuery.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/invoicequery/res/InvoiceQuery.ico -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/invoicequery/res/InvoiceQuery.rc2: -------------------------------------------------------------------------------- 1 | // 2 | // INVOICEQUERY.RC2 - resources Microsoft Visual C++ does not edit directly 3 | // 4 | 5 | #ifdef APSTUDIO_INVOKED 6 | #error this file is not editable by Microsoft Visual C++ 7 | #endif //APSTUDIO_INVOKED 8 | 9 | 10 | ///////////////////////////////////////////////////////////////////////////// 11 | // Add manually edited resources here... 12 | 13 | ///////////////////////////////////////////////////////////////////////////// 14 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/invoicequery/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by InvoiceQuery.rc 4 | // 5 | #define IDD_INVOICEQUERY_DIALOG 102 6 | #define IDR_MAINFRAME 128 7 | #define IDD_INVOICEVIEW_DIALOG 129 8 | #define IDC_FromTxnDate 1000 9 | #define IDC_ToTxnDate 1001 10 | #define IDC_IncludeLineItems 1002 11 | #define IDC_INVOICELIST 1003 12 | 13 | // Next default values for new objects 14 | // 15 | #ifdef APSTUDIO_INVOKED 16 | #ifndef APSTUDIO_READONLY_SYMBOLS 17 | #define _APS_NEXT_RESOURCE_VALUE 130 18 | #define _APS_NEXT_COMMAND_VALUE 32771 19 | #define _APS_NEXT_CONTROL_VALUE 1004 20 | #define _APS_NEXT_SYMED_VALUE 101 21 | #endif 22 | #endif 23 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/itemquery/ItemQuery.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "ItemQuery"=.\ItemQuery.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | begin source code control 11 | Perforce Project 12 | . 13 | end source code control 14 | }}} 15 | 16 | Package=<4> 17 | {{{ 18 | }}} 19 | 20 | ############################################################################### 21 | 22 | Global: 23 | 24 | Package=<5> 25 | {{{ 26 | }}} 27 | 28 | Package=<3> 29 | {{{ 30 | }}} 31 | 32 | ############################################################################### 33 | 34 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/itemquery/ItemQuery.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/itemquery/ItemQuery.exe -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/itemquery/ItemQueryDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/itemquery/ItemQueryDlg.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/itemquery/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // ItemQuery.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/itemquery/res/ItemQuery.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/itemquery/res/ItemQuery.ico -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/itemquery/res/ItemQuery.rc2: -------------------------------------------------------------------------------- 1 | // 2 | // ITEMQUERY.RC2 - resources Microsoft Visual C++ does not edit directly 3 | // 4 | 5 | #ifdef APSTUDIO_INVOKED 6 | #error this file is not editable by Microsoft Visual C++ 7 | #endif //APSTUDIO_INVOKED 8 | 9 | 10 | ///////////////////////////////////////////////////////////////////////////// 11 | // Add manually edited resources here... 12 | 13 | ///////////////////////////////////////////////////////////////////////////// 14 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/itemquery/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by ItemQuery.rc 4 | // 5 | #define IDD_ITEMQUERY_DIALOG 102 6 | #define IDR_MAINFRAME 128 7 | #define IDD_VIEWITEMS_DIALOG 129 8 | #define IDC_ITEMLIST 1000 9 | 10 | // Next default values for new objects 11 | // 12 | #ifdef APSTUDIO_INVOKED 13 | #ifndef APSTUDIO_READONLY_SYMBOLS 14 | #define _APS_NEXT_RESOURCE_VALUE 130 15 | #define _APS_NEXT_COMMAND_VALUE 32771 16 | #define _APS_NEXT_CONTROL_VALUE 1001 17 | #define _APS_NEXT_SYMED_VALUE 101 18 | #endif 19 | #endif 20 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/multiplerequests/MultipleRequests.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "MultipleRequests"=.\MultipleRequests.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | }}} 11 | 12 | Package=<4> 13 | {{{ 14 | }}} 15 | 16 | ############################################################################### 17 | 18 | Global: 19 | 20 | Package=<5> 21 | {{{ 22 | }}} 23 | 24 | Package=<3> 25 | {{{ 26 | }}} 27 | 28 | ############################################################################### 29 | 30 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/multiplerequests/MultipleRequests.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/multiplerequests/MultipleRequests.exe -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/multiplerequests/MultipleRequestsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/multiplerequests/MultipleRequestsDlg.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/multiplerequests/Resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by MULTIPLEREQUESTS.RC 4 | // 5 | #define IDR_MAINFRAME 128 6 | #define IDD_MULTIPLEREQUESTS_DIALOG 102 7 | 8 | // Next default values for new objects 9 | // 10 | #ifdef APSTUDIO_INVOKED 11 | #ifndef APSTUDIO_READONLY_SYMBOLS 12 | 13 | #define _APS_NEXT_RESOURCE_VALUE 129 14 | #define _APS_NEXT_CONTROL_VALUE 1000 15 | #define _APS_NEXT_SYMED_VALUE 101 16 | #define _APS_NEXT_COMMAND_VALUE 32771 17 | #endif 18 | #endif 19 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/multiplerequests/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // MultipleRequests.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/multiplerequests/res/MultipleRequests.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbfc/multiplerequests/res/MultipleRequests.ico -------------------------------------------------------------------------------- /qbdt/cpp/qbfc/multiplerequests/res/MultipleRequests.rc2: -------------------------------------------------------------------------------- 1 | // 2 | // MULTIPLEREQUESTS.RC2 - resources Microsoft Visual C++ does not edit directly 3 | // 4 | 5 | #ifdef APSTUDIO_INVOKED 6 | #error this file is not editable by Microsoft Visual C++ 7 | #endif //APSTUDIO_INVOKED 8 | 9 | 10 | ///////////////////////////////////////////////////////////////////////////// 11 | // Add manually edited resources here... 12 | 13 | ///////////////////////////////////////////////////////////////////////////// 14 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/AddCustomerJob.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/AddCustomerJob.zip -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler.zip -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/ChildView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/ChildView.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/ChildView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/ChildView.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/EventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/EventHandler.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/EventHandler.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "EventHandler"=.\EventHandler.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | begin source code control 11 | EventHandler 12 | . 13 | end source code control 14 | }}} 15 | 16 | Package=<4> 17 | {{{ 18 | }}} 19 | 20 | ############################################################################### 21 | 22 | Global: 23 | 24 | Package=<5> 25 | {{{ 26 | }}} 27 | 28 | Package=<3> 29 | {{{ 30 | }}} 31 | 32 | ############################################################################### 33 | 34 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/EventHandler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/EventHandler.exe -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/EventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/EventHandler.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/EventHandler.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/EventHandler.idl -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/EventHandler.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | NoRemove AppID 4 | { 5 | {B6293E15-936E-4E13-B8F6-120C91417834} = s 'EventHandler' 6 | 'EventHandler.EXE' 7 | { 8 | val AppID = s {B6293E15-936E-4E13-B8F6-120C91417834} 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/MainFrm.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/MainFrm.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/QBSDKCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/QBSDKCallback.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/QBSDKCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/QBSDKCallback.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/QBSDKCallback.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | EventHandler.QBSDKCallback.1 = s 'QBSDKCallback Class' 4 | { 5 | CLSID = s '{70DC83AB-2EC1-478F-9204-C37485AD8E3C}' 6 | } 7 | EventHandler.QBSDKCallback = s 'QBSDKCallback Class' 8 | { 9 | CLSID = s '{70DC83AB-2EC1-478F-9204-C37485AD8E3C}' 10 | } 11 | NoRemove CLSID 12 | { 13 | ForceRemove {70DC83AB-2EC1-478F-9204-C37485AD8E3C} = s 'QBSDKCallback Class' 14 | { 15 | ProgID = s 'EventHandler.QBSDKCallback.1' 16 | VersionIndependentProgID = s 'EventHandler.QBSDKCallback' 17 | val AppID = s '{B6293E15-936E-4E13-B8F6-120C91417834}' 18 | LocalServer32 = s '%Module%' 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/SettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/SettingsDialog.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/SettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/SettingsDialog.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // EventHandler.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | 9 | #ifdef _ATL_STATIC_REGISTRY 10 | #include 11 | #endif 12 | //#include 13 | 14 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/res/EventHandler.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventHandler/res/EventHandler.ico -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventHandler/res/QBSDKCallback.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | EventHandler.QBSDKCallback.1 = s 'QBSDKCallback Class' 4 | { 5 | CLSID = s '{70DC83AB-2EC1-478F-9204-C37485AD8E3C}' 6 | } 7 | EventHandler.QBSDKCallback = s 'QBSDKCallback Class' 8 | { 9 | CLSID = s '{70DC83AB-2EC1-478F-9204-C37485AD8E3C}' 10 | } 11 | NoRemove CLSID 12 | { 13 | ForceRemove {70DC83AB-2EC1-478F-9204-C37485AD8E3C} = s 'QBSDKCallback Class' 14 | { 15 | ProgID = s 'EventHandler.QBSDKCallback.1' 16 | VersionIndependentProgID = s 'EventHandler.QBSDKCallback' 17 | val AppID = s '{B6293E15-936E-4E13-B8F6-120C91417834}' 18 | LocalServer32 = s '%Module%' 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventSubscribe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventSubscribe.zip -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/EventSubscribe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/EventSubscribe.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/EventSubscribe.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "EventSubscribe"=.\EventSubscribe.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | begin source code control 11 | EventSubscribe 12 | . 13 | end source code control 14 | }}} 15 | 16 | Package=<4> 17 | {{{ 18 | }}} 19 | 20 | ############################################################################### 21 | 22 | Global: 23 | 24 | Package=<5> 25 | {{{ 26 | }}} 27 | 28 | Package=<3> 29 | {{{ 30 | }}} 31 | 32 | ############################################################################### 33 | 34 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/EventSubscribe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/EventSubscribe.exe -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/EventSubscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/EventSubscribe.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/EventSubscribeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/EventSubscribeDlg.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/EventSubscribeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/EventSubscribeDlg.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/res/EventSubscribe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/res/EventSubscribe.ico -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/EventSubscribe/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // EventSubscribe.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/InvokeUI.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/InvokeUI.zip -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/InvokeUI/InvokeUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/InvokeUI/InvokeUI.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/InvokeUI/InvokeUI.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "InvokeUI"=.\InvokeUI.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | begin source code control 11 | InvokeUI 12 | . 13 | end source code control 14 | }}} 15 | 16 | Package=<4> 17 | {{{ 18 | }}} 19 | 20 | ############################################################################### 21 | 22 | Global: 23 | 24 | Package=<5> 25 | {{{ 26 | }}} 27 | 28 | Package=<3> 29 | {{{ 30 | }}} 31 | 32 | ############################################################################### 33 | 34 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/InvokeUI/InvokeUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/InvokeUI/InvokeUI.exe -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/InvokeUI/InvokeUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/InvokeUI/InvokeUI.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/InvokeUI/InvokeUIDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/InvokeUI/InvokeUIDlg.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/InvokeUI/InvokeUIDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/InvokeUI/InvokeUIDlg.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/InvokeUI/res/InvokeUI.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/InvokeUI/res/InvokeUI.ico -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/InvokeUI/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // InvokeUI.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe.zip -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/MenuSubscribe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/MenuSubscribe.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/MenuSubscribe.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "MenuSubscribe"=.\MenuSubscribe.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | begin source code control 11 | MenuSubscribe 12 | . 13 | end source code control 14 | }}} 15 | 16 | Package=<4> 17 | {{{ 18 | }}} 19 | 20 | ############################################################################### 21 | 22 | Global: 23 | 24 | Package=<5> 25 | {{{ 26 | }}} 27 | 28 | Package=<3> 29 | {{{ 30 | }}} 31 | 32 | ############################################################################### 33 | 34 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/MenuSubscribe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/MenuSubscribe.exe -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/MenuSubscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/MenuSubscribe.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/MenuSubscribeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/MenuSubscribeDlg.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/MenuSubscribeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/MenuSubscribeDlg.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/res/MenuSubscribe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/res/MenuSubscribe.ico -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/MenuSubscribe/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // MenuSubscribe.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/Readme.txt: -------------------------------------------------------------------------------- 1 | These applications are designed for testing and demonstrating the UI functionality of QBSDK 3.0. These applications are built with Visual Studio 6.0. 2 | 3 | EventHandler - Implements callback handler for QuickBooks events. This is required for the MenuSubscribe application. MenuSubscribe registers its menu extensions using this EventHandler as the callback application. 4 | 5 | InvokeUI - Opens form windows in QuickBooks for new and existing transactions and list items. 6 | 7 | MenuSubscribe - Adds UI Extension (menu) subscriptions to QuickBooks. 8 | 9 | shared - Contains files shared by all of the applications above. 10 | 11 | 12 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/DOMXMLBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/DOMXMLBuilder.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/DOMXMLBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/DOMXMLBuilder.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/QBXMLRP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/QBXMLRP.dll -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/QBXMLRP2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/QBXMLRP2.dll -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/Resource.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/ShowXML.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/ShowXML.aps -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/ShowXMLDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/ShowXMLDlg.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/ShowXMLDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/ShowXMLDlg.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/Utility.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/Utility.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/qbXMLRPWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/qbXMLRPWrapper.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/qbXMLRPWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/qbXMLRPWrapper.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/UIandEventTest/shared/qbXMLTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/UIandEventTest/shared/qbXMLTags.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/AddCustDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/AddCustDlg.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/AddCustDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/AddCustDlg.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/AddCustomer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/AddCustomer.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/AddCustomer.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "AddCustomer"=.\AddCustomer.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | begin source code control 11 | AddCustomer 12 | . 13 | end source code control 14 | }}} 15 | 16 | Package=<4> 17 | {{{ 18 | }}} 19 | 20 | ############################################################################### 21 | 22 | Global: 23 | 24 | Package=<5> 25 | {{{ 26 | }}} 27 | 28 | Package=<3> 29 | {{{ 30 | }}} 31 | 32 | ############################################################################### 33 | 34 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/AddCustomer.idl: -------------------------------------------------------------------------------- 1 | // AddCustomer.idl : IDL source for AddCustomer.dll 2 | // 3 | 4 | // This file will be processed by the MIDL tool to 5 | // produce the type library (AddCustomer.tlb) and marshalling code. 6 | 7 | import "oaidl.idl"; 8 | import "ocidl.idl"; 9 | 10 | [ 11 | uuid(3C3CB60C-17B8-4A7E-BAE9-ADFD29E00394), 12 | version(1.0), 13 | helpstring("AddCustomer 1.0 Type Library") 14 | ] 15 | library ADDCUSTOMERLib 16 | { 17 | importlib("stdole32.tlb"); 18 | importlib("stdole2.tlb"); 19 | 20 | }; 21 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/AddCustomer.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | NoRemove AppID 4 | { 5 | {8C10DEED-D1D6-4A48-A467-9B8D4CA11D26} = s 'AddCustomer' 6 | 'AddCustomer.EXE' 7 | { 8 | val AppID = s {8C10DEED-D1D6-4A48-A467-9B8D4CA11D26} 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/AddNewCustomer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/AddNewCustomer.exe -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/CustomerAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/CustomerAdd.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/CustomerAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/CustomerAdd.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/DisplayDlg.cpp: -------------------------------------------------------------------------------- 1 | // DisplayDlg.cpp : Implementation of CDisplayDlg 2 | #include "stdafx.h" 3 | #include "DisplayDlg.h" 4 | 5 | ///////////////////////////////////////////////////////////////////////////// 6 | // CDisplayDlg 7 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/DisplayDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/DisplayDlg.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // stdafx.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | #ifdef _ATL_STATIC_REGISTRY 8 | #include 9 | #include 10 | #endif 11 | 12 | //#include 13 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/Utility.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/Utility.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/ValidatorDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/ValidatorDlg.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/ValidatorDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/ValidatorDlg.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/XMLBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/XMLBuilder.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/XMLBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/XMLBuilder.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/XMLValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/XMLValidator.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/XMLValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/XMLValidator.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/customers.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/customers.bmp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/qbXMLTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/qbXMLTags.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/qbXMLWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/qbXMLWrapper.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/qbXMLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/qbXMLWrapper.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/qbbanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomer/qbbanner.bmp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomer/resource.hm: -------------------------------------------------------------------------------- 1 | // Microsoft Developer Studio generated Help ID include file. 2 | // Used by AddCustomer.rc 3 | // 4 | #define HIDC_Schema 0x806800d9 // IDD_VALIDATORDLG 5 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/AddCustomerJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/AddCustomerJob.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/AddCustomerJob.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "AddCustomerJob"=.\AddCustomerJob.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | begin source code control 11 | AddCustomerJob 12 | . 13 | end source code control 14 | }}} 15 | 16 | Package=<4> 17 | {{{ 18 | }}} 19 | 20 | ############################################################################### 21 | 22 | Global: 23 | 24 | Package=<5> 25 | {{{ 26 | }}} 27 | 28 | Package=<3> 29 | {{{ 30 | }}} 31 | 32 | ############################################################################### 33 | 34 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/AddCustomerJob.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/AddCustomerJob.exe -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/AddCustomerJob.idl: -------------------------------------------------------------------------------- 1 | // AddCustomerJob.idl : IDL source for AddCustomerJob.dll 2 | // 3 | 4 | // This file will be processed by the MIDL tool to 5 | // produce the type library (AddCustomerJob.tlb) and marshalling code. 6 | 7 | import "oaidl.idl"; 8 | import "ocidl.idl"; 9 | 10 | [ 11 | uuid(6B3D29FA-3D30-42DA-81AB-FA882D224714), 12 | version(2.0), 13 | helpstring("AddCustomerJob 2.0 Type Library") 14 | ] 15 | library ADDCUSTOMERJOBLib 16 | { 17 | importlib("stdole32.tlb"); 18 | importlib("stdole2.tlb"); 19 | 20 | }; 21 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/AddCustomerJob.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | NoRemove AppID 4 | { 5 | {2207F70D-A4BB-457C-9BA5-14C9CA047687} = s 'AddCustomerJob' 6 | 'AddCustomerJob.EXE' 7 | { 8 | val AppID = s {2207F70D-A4BB-457C-9BA5-14C9CA047687} 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/DOMXMLBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/DOMXMLBuilder.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/DOMXMLBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/DOMXMLBuilder.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBAddCustomerJobDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBAddCustomerJobDlg.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBAddCustomerJobDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBAddCustomerJobDlg.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCompanyFileDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCompanyFileDlg.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCompanyFileDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCompanyFileDlg.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCustomerAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCustomerAdd.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCustomerAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCustomerAdd.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCustomerQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCustomerQuery.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCustomerQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCustomerQuery.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCustomerRet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCustomerRet.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCustomerRet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCustomerRet.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCustomerTypeAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCustomerTypeAdd.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCustomerTypeAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCustomerTypeAdd.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCustomerTypeQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCustomerTypeQuery.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCustomerTypeQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCustomerTypeQuery.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCustomerTypeRet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCustomerTypeRet.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/QBCustomerTypeRet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/QBCustomerTypeRet.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // stdafx.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | #ifdef _ATL_STATIC_REGISTRY 8 | #include 9 | #include 10 | #endif 11 | 12 | //#include 13 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/Utility.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/Utility.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/customers.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/customers.bmp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/qbXMLOpsBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/qbXMLOpsBase.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/qbXMLOpsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/qbXMLOpsBase.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/qbXMLRPWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/qbXMLRPWrapper.cpp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/qbXMLRPWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/qbXMLRPWrapper.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/qbXMLTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/qbXMLTags.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/addcustomerjob/qbbanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/addcustomerjob/qbbanner.bmp -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/cppAddCustomer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/cppAddCustomer.zip -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/cppqbxmlsdktest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/cppqbxmlsdktest.zip -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/hostquery.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/hostquery.zip -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/hostquery/Form1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/hostquery/Form1.h -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/hostquery/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/hostquery/ReadMe.txt -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/hostquery/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/hostquery/app.ico -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/hostquery/hostquery.cpp: -------------------------------------------------------------------------------- 1 | // hostquery.cpp : main project file. 2 | 3 | #include "stdafx.h" 4 | #include "Form1.h" 5 | 6 | using namespace hostquery; 7 | 8 | [STAThreadAttribute] 9 | int main(array ^args) 10 | { 11 | // Enabling Windows XP visual effects before any controls are created 12 | Application::EnableVisualStyles(); 13 | Application::SetCompatibleTextRenderingDefault(false); 14 | 15 | // Create the main window and run it 16 | Application::Run(gcnew Form1()); 17 | return 0; 18 | } 19 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/hostquery/hostquery.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/hostquery/hostquery.exe -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/hostquery/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by app.rc 4 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/hostquery/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // hostquery.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/hostquery/stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, but 3 | // are changed infrequently 4 | #pragma once 5 | 6 | // TODO: reference additional headers your program requires here 7 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/sdktest/sdktest.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "sdktest"=.\sdktest.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | }}} 11 | 12 | Package=<4> 13 | {{{ 14 | }}} 15 | 16 | ############################################################################### 17 | 18 | Global: 19 | 20 | Package=<5> 21 | {{{ 22 | }}} 23 | 24 | Package=<3> 25 | {{{ 26 | }}} 27 | 28 | ############################################################################### 29 | 30 | -------------------------------------------------------------------------------- /qbdt/cpp/qbxml/sdktest/sdktest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/cpp/qbxml/sdktest/sdktest.exe -------------------------------------------------------------------------------- /qbdt/java/qbxml/QBWebConnector.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/java/qbxml/QBWebConnector.zip -------------------------------------------------------------------------------- /qbdt/java/qbxml/QBWebConnectorSvc/QBWebConnectorSvc.java: -------------------------------------------------------------------------------- 1 | /** 2 | * QBWebConnectorSvc.java 3 | * 4 | * This file was auto-generated from WSDL 5 | * by the Apache Axis 1.2.1 Jun 14, 2005 (09:15:57 EDT) WSDL2Java emitter. 6 | */ 7 | 8 | package com.intuit.developer; 9 | 10 | public interface QBWebConnectorSvc extends javax.xml.rpc.Service { 11 | public java.lang.String getQBWebConnectorSvcSoapAddress(); 12 | 13 | public com.intuit.developer.QBWebConnectorSvcSoap getQBWebConnectorSvcSoap() throws javax.xml.rpc.ServiceException; 14 | 15 | public com.intuit.developer.QBWebConnectorSvcSoap getQBWebConnectorSvcSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException; 16 | } 17 | -------------------------------------------------------------------------------- /qbdt/java/qbxml/QBWebConnectorSvc/compit: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | TOMCAT_HOME=/var/tomcat4 3 | AXIS_HOME=/root/axis-1_2_1 4 | JAVA_HOME=/usr/java/j2sdk1.4.2_09 5 | CLASSPATH=$TOMCAT_HOME/bin/bootstrap.jar:$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib 6 | 7 | export CLASSPATH 8 | 9 | AXIS_LIB=$AXIS_HOME%/WEB-INF/lib 10 | AXISCLASSPATH=$AXIS_LIB%/axis.jar:$AXIS_LIB/axis-ant.jar:$AXIS_LIB/commons-discovery-0.2.jar:$AXIS_LIB/commons-logging-1.0.4.jar:$AXIS_LIB/jaxrpc.jar:$AXIS_LIB/log4j-1.2.8.jar:$AXIS_LIB/saaj.jar:$AXIS_LIB/wsdl4j-1.5.1.jar:$AXIS_LIB/xml-apis.jar:$AXIS_LIB/xercesImpl.jar 11 | export AXIS_LIB 12 | export AXISCLASSPATH 13 | 14 | 15 | $JAVA_HOME/bin/javac -classpath $CLASSPATH:$AXISCLASSPATH:. $1 16 | 17 | -------------------------------------------------------------------------------- /qbdt/java/qbxml/QBWebConnectorSvc/compit.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | SETLOCAL 3 | if "%TOMCAT_HOME%"=="" set TOMCAT_HOME=c:\work\install\Tomcat-4.1.31 4 | if "%AXIS_HOME%"=="" set AXIS_HOME=\root\axis-1_2_1 5 | if "%JAVA_HOME%"=="" set JAVA_HOME=\usr\java\j2sdk1.4.2_09 6 | set CLASSPATH=%TOMCAT_HOME%\bin\bootstrap.jar;%JAVA_HOME%\lib\tools.jar;%JAVA_HOME%\lib 7 | 8 | set AXIS_LIB=%AXIS_HOME%\WEB-INF\lib 9 | set AXISCLASSPATH=%AXIS_LIB%\axis.jar;%AXIS_LIB%\axis-ant.jar;%AXIS_LIB%\commons-discovery-0.2.jar;%AXIS_LIB%\commons-logging-1.0.4.jar;%AXIS_LIB%\jaxrpc.jar;%AXIS_LIB%\log4j-1.2.8.jar;%AXIS_LIB%\saaj.jar;%AXIS_LIB%\wsdl4j-1.5.1.jar;%AXIS_LIB%\xml-apis.jar;%AXIS_LIB%\xercesImpl.jar 10 | 11 | %JAVA_HOME%\bin\javac -classpath %CLASSPATH%;%AXISCLASSPATH%;. %1 12 | ENDLOCAL 13 | -------------------------------------------------------------------------------- /qbdt/java/qbxml/QBWebConnectorSvc/undeploy.wsdd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/AddInvoice/AddInvoice.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/AddInvoice/AddInvoice.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/AddInvoice/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/AddInvoice/ReadMe.txt: -------------------------------------------------------------------------------- 1 | AddInvoice is VB.Net sample code which shows how the same invoice can be added using qbXML 2 | built with the MSXML6 DOM parser and QBFC. It is intended to be used with the sample product 3 | based company file and expects that QuickBooks 2003 Pro or above is running with that company 4 | file open. The sample isn't very interesting in its functionality, the sample was created so that 5 | developers could look at the code and compare the two methods of adding an invoice. -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/AddInvoice/frmAddInvoice.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/AddInvoice/frmAddInvoice.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/AddInvoice/frmInvoiceDisplay.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/AddInvoice/frmInvoiceDisplay.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/AddInvoice/modAddInvoice.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/AddInvoice/modAddInvoice.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/CDN_VendorAdd/Add_Vendor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/CDN_VendorAdd/Add_Vendor.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/CDN_VendorAdd/Add_Vendor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/CDN_VendorAdd/Add_Vendor.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/CDN_VendorAdd/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/CDN_VendorAdd/ConnectionWithQuickBooks.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/CDN_VendorAdd/ConnectionWithQuickBooks.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/CDN_VendorAdd/GetCurrency.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/CDN_VendorAdd/GetCurrency.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/CDN_VendorAdd/GetVendorType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/CDN_VendorAdd/GetVendorType.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/CDN_VendorAdd/qbbanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/CDN_VendorAdd/qbbanner.bmp -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/CustomerAdd/CustomerAdd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/CustomerAdd/CustomerAdd.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/CustomerAdd/CustomerAddForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/CustomerAdd/CustomerAddForm.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/CustomerAdd/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | This sample is a simple VB.NET desktop application that creates a new 4 | QuickBooks customer by using QBFC2 COM dll. 5 | 6 | Running the sample 7 | ------------------ 8 | 9 | Before running CustomerAdd.exe, make sure that .NET runtime is installed on the machine, 10 | and QuickBooks is running with a company opened. 11 | 12 | Building the sample 13 | ------------------ 14 | Open CustomerAdd.sln in Microsoft Visual Studio .NET and build the solution. 15 | QBFC2Assembly.dll was generated with 'tlbimp' .NET Type Library to Assembly Convertor. 16 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DataExtensions/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Revision 26 | ' Build Number 27 | 28 | ' You can specify all the values or you can default the Revision and Build Numbers 29 | ' by using the '*' as shown below 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DataExtensions/DataExtSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/DataExtensions/DataExtSample.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DataExtensions/frmAddDataExtDef.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/DataExtensions/frmAddDataExtDef.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DataExtensions/frmAddDataExtension.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/DataExtensions/frmAddDataExtension.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DataExtensions/frmDataExtSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/DataExtensions/frmDataExtSample.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DataExtensions/frmModDataExtension.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/DataExtensions/frmModDataExtension.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DataExtensions/modDataExtSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/DataExtensions/modDataExtSample.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DataExtensions/readme.txt: -------------------------------------------------------------------------------- 1 | This sample is a simple VB.NET desktop application that is used for Data extensions by using QBFC2 COM dll. 2 | 3 | Running the sample 4 | ------------------ 5 | 6 | Before running DataExtSample.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | 9 | Building the sample 10 | ------------------ 11 | Please install latest QBSDK. 12 | Open DataExtSample.sln in Microsoft Visual Studio .NET and build the solution. 13 | QBFC2Assembly.dll was generated with 'tlbimp' .NET Type Library to Assembly Convertor. 14 | 15 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DepositAdd/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Revision 26 | ' Build Number 27 | 28 | ' You can specify all the values or you can default the Revision and Build Numbers 29 | ' by using the '*' as shown below 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DepositAdd/DepositAdd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/DepositAdd/DepositAdd.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DepositAdd/frmFundsForDeposit.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/DepositAdd/frmFundsForDeposit.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DepositAdd/modDepositAdd.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/DepositAdd/modDepositAdd.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/DepositAdd/readme.txt: -------------------------------------------------------------------------------- 1 | This sample is a simple VB.NET desktop application that is used for Deposit Add by using QBFC2 COM dll. 2 | 3 | Running the sample 4 | ------------------ 5 | 6 | Before running DepositAdd.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | 9 | Building the sample 10 | ------------------ 11 | Please install latest QBSDK. 12 | Open DepositAdd.sln in Microsoft Visual Studio .NET and build the solution. 13 | QBFC2Assembly.dll was generated with 'tlbimp' .NET Type Library to Assembly Convertor. 14 | 15 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Events/Callback/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Events/Callback/QBFCEventsCallback.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/Events/Callback/QBFCEventsCallback.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Events/Callback/QBFCEventsCallback.vb: -------------------------------------------------------------------------------- 1 | Option Strict Off 2 | Option Explicit On 3 | Friend Class QBFCEventsCallbackForm 4 | Inherits System.Windows.Forms.Form 5 | Private Sub Query_Click(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles Query.Click 6 | GetAllCustomers() 7 | End Sub 8 | End Class -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Events/Callback/QBFCEventsCallbackMain.vb: -------------------------------------------------------------------------------- 1 | Imports System.Linq 2 | 3 | Module QBFCEventsCallbackMain 4 | Public frm As New QBFCEventsCallbackForm 5 | Sub Main() 6 | Dim strArg() As String 7 | 8 | strArg = Environment.GetCommandLineArgs() 9 | 10 | If (strArg.Count = 2) Then 11 | If (strArg(1) = "-Embedding") Then 12 | 'called from QBDT so create the form here 13 | frm.Show() 14 | End If 15 | End If 16 | 17 | QBFCEventsCallbackCOMServer.Instance.Run() 18 | End Sub 19 | 20 | End Module 21 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Events/QBFCEventsCallback.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/Events/QBFCEventsCallback.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Events/QBFCEventsSubscriberProject.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/Events/QBFCEventsSubscriberProject.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Events/Subscriber/QBFCEventsSubscriber.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/Events/Subscriber/QBFCEventsSubscriber.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Events/Subscriber/QBFCEventsSubscriberForm.vb: -------------------------------------------------------------------------------- 1 | Option Strict Off 2 | Option Explicit On 3 | Friend Class QBFCEventsSubscriber 4 | Inherits System.Windows.Forms.Form 5 | Private Sub Subscribe_Click(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles Subscribe.Click 6 | 7 | DoSubscribeEvents() 8 | 9 | End Sub 10 | 11 | Private Sub Unsubscribe_Click(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles Unsubscribe.Click 12 | 13 | DoUnSubscribeEvents() 14 | 15 | End Sub 16 | End Class -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ExpenseReportByVendor/AxInterop.MSComDlg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ExpenseReportByVendor/AxInterop.MSComDlg.dll -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ExpenseReportByVendor/AxInterop.SHDocVw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ExpenseReportByVendor/AxInterop.SHDocVw.dll -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ExpenseReportByVendor/DisplayForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ExpenseReportByVendor/DisplayForm.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ExpenseReportByVendor/ExpenseReport.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ExpenseReportByVendor/ExpenseReport.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ExpenseReportByVendor/Interop.MSComDlg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ExpenseReportByVendor/Interop.MSComDlg.dll -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ExpenseReportByVendor/Interop.SHDocVw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ExpenseReportByVendor/Interop.SHDocVw.dll -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ExpenseReportByVendor/ParserHelper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ExpenseReportByVendor/ParserHelper.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ExpenseReportByVendor/UIForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ExpenseReportByVendor/UIForm.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ExpenseReportByVendor/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ExpenseReportByVendor/qbooks.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ExpenseReportByVendor/qbooks.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ExpenseReportByVendor/readme.txt: -------------------------------------------------------------------------------- 1 | This sample is a simple VB.NET desktop application that is used to create Expense Report by Vendor by using QBFC2 COM dll. 2 | 3 | Running the sample 4 | ------------------ 5 | 6 | Before running ExpenseReport.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | 9 | Building the sample 10 | ------------------ 11 | Please install latest QBSDK. 12 | Open ExpenseReport.sln in Microsoft Visual Studio .NET and build the solution. 13 | QBFC2Assembly.dll was generated with 'tlbimp' .NET Type Library to Assembly Convertor. 14 | 15 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/.vs/InventoryAdjustProj/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/.vs/InventoryAdjustProj/v14/.suo -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/InventoryAdjust.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/InventoryAdjust.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/InventoryAdjustProj.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/InventoryAdjustProj.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/QuickBooks.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/QuickBooks.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/bin/Debug/InventoryAdjustProj.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/bin/Debug/InventoryAdjustProj.vshost.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/bin/Debug/InventoryAdjustProj.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/bin/Release/InventoryAdjustProj.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/bin/Release/InventoryAdjustProj.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/bin/Release/InventoryAdjustProj.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/bin/Release/InventoryAdjustProj.vshost.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/bin/Release/InventoryAdjustProj.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/bin/Release/InventoryAdjustProj.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | InventoryAdjustProj 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Debug/Interop.MSXML2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/obj/Debug/Interop.MSXML2.dll -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Debug/Interop.QBFC15Lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/obj/Debug/Interop.QBFC15Lib.dll -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Debug/InventoryAdjustProj.vbproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\SDK_32bit\QBXML_SDK_Samples\qbdt\vb.NET\QBFC\InventoryAdjust\bin\Debug\InventoryAdjustProj.exe.config 2 | C:\SDK_32bit\QBXML_SDK_Samples\qbdt\vb.NET\QBFC\InventoryAdjust\obj\Debug\Interop.MSXML2.dll 3 | C:\SDK_32bit\QBXML_SDK_Samples\qbdt\vb.NET\QBFC\InventoryAdjust\obj\Debug\Interop.QBFC15Lib.dll 4 | C:\SDK_32bit\QBXML_SDK_Samples\qbdt\vb.NET\QBFC\InventoryAdjust\obj\Debug\InventoryAdjustProj.vbproj.ResolveComReference.cache 5 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Debug/InventoryAdjustProj.vbproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/obj/Debug/InventoryAdjustProj.vbproj.ResolveComReference.cache -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/Interop.MSXML2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/Interop.MSXML2.dll -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/Interop.QBFC15Lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/Interop.QBFC15Lib.dll -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/InventoryAdjustProj.InventoryAdjust.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/InventoryAdjustProj.InventoryAdjust.resources -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/InventoryAdjustProj.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/InventoryAdjustProj.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/InventoryAdjustProj.vbproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/InventoryAdjustProj.vbproj.GenerateResource.Cache -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/InventoryAdjustProj.vbproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/InventoryAdjustProj.vbproj.ResolveComReference.cache -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/obj/Release/InventoryAdjustProj.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | InventoryAdjustProj 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InventoryAdjust/readme.txt: -------------------------------------------------------------------------------- 1 | This sample is a simple VB.NET desktop application that is used to check inventory adjustment by using QBFC2 COM dll. 2 | 3 | Running the sample 4 | ------------------ 5 | 6 | Before running InventoryAdjustProj.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | 9 | Building the sample 10 | ------------------ 11 | Please install latest QBSDK. 12 | Open InventoryAdjustProj.sln in Microsoft Visual Studio .NET and build the solution. 13 | QBFC2Assembly.dll was generated with 'tlbimp' .NET Type Library to Assembly Convertor. 14 | 15 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InvoiceMod/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InvoiceMod/InvoiceMod.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InvoiceMod/InvoiceMod.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InvoiceMod/frmEditInvoiceLine.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InvoiceMod/frmEditInvoiceLine.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InvoiceMod/frmInvoiceModMain.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InvoiceMod/frmInvoiceModMain.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InvoiceMod/frmInvoiceQuery.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InvoiceMod/frmInvoiceQuery.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InvoiceMod/frmModifying.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InvoiceMod/frmModifying.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InvoiceMod/frmPatience.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InvoiceMod/frmPatience.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InvoiceMod/frmShowRequest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InvoiceMod/frmShowRequest.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InvoiceMod/modGeneric.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InvoiceMod/modGeneric.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InvoiceMod/modQBFC.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InvoiceMod/modQBFC.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InvoiceMod/modQBXMLRP.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InvoiceMod/modQBXMLRP.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/InvoiceMod/modUtilities.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/InvoiceMod/modUtilities.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ItemInventoryMod/FullNameListIDClass.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ItemInventoryMod/FullNameListIDClass.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ItemInventoryMod/ItemInventoryMod.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ItemInventoryMod/ItemInventoryMod.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ItemInventoryMod/ItemInventoryModule.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ItemInventoryMod/ItemInventoryModule.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ItemInventoryMod/frmMain.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ItemInventoryMod/frmMain.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ItemInventoryMod/readme.txt: -------------------------------------------------------------------------------- 1 | This sample is a simple VB.NET desktop application that is used for ItemInventoryMod by using QBFC2 COM dll. 2 | 3 | Running the sample 4 | ------------------ 5 | 6 | Before running ItemInventoryMod.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | 9 | Building the sample 10 | ------------------ 11 | Please install latest QBSDK. 12 | Open ItemInventoryMod.sln in Microsoft Visual Studio .NET and build the solution. 13 | QBFC2Assembly.dll was generated with 'tlbimp' .NET Type Library to Assembly Convertor. 14 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ItemReceipt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ItemReceipt.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ItemReceipt/ItemReceipt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/ItemReceipt/ItemReceipt.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/ItemReceipt/readme.txt: -------------------------------------------------------------------------------- 1 | This sample is a simple VB.NET desktop application that is used to create Item Receipt by using QBFC2 COM dll. 2 | 3 | Running the sample 4 | ------------------ 5 | 6 | Before running ItemReceipt.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | 9 | Building the sample 10 | ------------------ 11 | Please install latest QBSDK. 12 | Open ItemReceipt.sln in Microsoft Visual Studio .NET and build the solution. 13 | QBFC2Assembly.dll was generated with 'tlbimp' .NET Type Library to Assembly Convertor. 14 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Macro/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Macro/EstimatesModule.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/Macro/EstimatesModule.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Macro/InfoClass.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/Macro/InfoClass.cls -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Macro/InfoClass.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/Macro/InfoClass.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Macro/UseMacroDefMacro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/Macro/UseMacroDefMacro.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Macro/UseMacroDefMacroModule.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/Macro/UseMacroDefMacroModule.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Macro/frmUseMacroDefMacro.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/Macro/frmUseMacroDefMacro.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/Macro/readme.txt: -------------------------------------------------------------------------------- 1 | This sample is a simple VB.NET desktop application which uses QBFC2 COM dll. 2 | 3 | Running the sample 4 | ------------------ 5 | 6 | Before running UseMacroDefMacro.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | 9 | Building the sample 10 | ------------------ 11 | Please install latest QBSDK. 12 | Open UseMacroDefMacro.sln in Microsoft Visual Studio .NET and build the solution. 13 | QBFC2Assembly.dll was generated with 'tlbimp' .NET Type Library to Assembly Convertor. -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/MenuEventContext/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/MenuEventContext/MainMod.vb: -------------------------------------------------------------------------------- 1 | Option Strict Off 2 | Option Explicit On 3 | Imports System.Linq 4 | 5 | Module MainMod 6 | ' 7 | ' Since we are an ActiveX COM server, if we get started interactively we need some 8 | ' where to begin, that's here and we just bring up our form. 9 | ' 10 | 'UPGRADE_WARNING: Application will terminate when Sub Main() finishes. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="E08DDC71-66BA-424F-A612-80AF11498FF8"' 11 | Public frm As New MenuEventSample 12 | 13 | Public Sub Main() 14 | frm.Show() 15 | QBFCMenuEventsCallbackCOMServer.Instance.Run() 16 | End Sub 17 | End Module -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/MenuEventContext/MenuEventContext.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/MenuEventContext/MenuEventContext.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/MenuEventContext/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This sample is a simple VB.NET desktop application that is used for adding or removing Menu items by using QBFC COM dll. 2 | 3 | Running the sample 4 | ------------------ 5 | 6 | Before running MenuEventContext.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | Register the exe with regasm.exe 9 | e.g. C:\Windows\Microsoft.NET\Framework\v4.0.30319>RegAsm.exe "C:\Program Files (x86)\Intuit\IDN\QBSDK15.0\samples\qbdt\vb.NET\QBFC\MenuEventContext\MenuEventContext.exe" 10 | 11 | Building the sample 12 | ------------------ 13 | Please install latest QBSDK. 14 | Open MenuEventContext.sln in Microsoft Visual Studio .NET and build the solution. 15 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PriceLevels.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/PriceLevels.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PriceLevels/PriceLevels.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/PriceLevels/PriceLevels.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PriceLevels/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PriceLevels/readme.txt: -------------------------------------------------------------------------------- 1 | This sample is a simple VB.NET desktop application that is used for Price Levels by using QBFC2 COM dll. 2 | 3 | Running the sample 4 | ------------------ 5 | 6 | Before running PriceLevels.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | 9 | Building the sample 10 | ------------------ 11 | Please install latest QBSDK. 12 | Open PriceLevels.sln in Microsoft Visual Studio .NET and build the solution. 13 | QBFC2Assembly.dll was generated with 'tlbimp' .NET Type Library to Assembly Convertor. 14 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PurchaseOrderModify/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PurchaseOrderModify/PurchaseOrderModify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/PurchaseOrderModify/PurchaseOrderModify.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PurchaseOrderModify/frmPurchaseOrderDetail.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/PurchaseOrderModify/frmPurchaseOrderDetail.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PurchaseOrderModify/frmPurchaseOrderModifyMain.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/PurchaseOrderModify/frmPurchaseOrderModifyMain.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PurchaseOrderModify/frmPurchaseOrderSelect.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/PurchaseOrderModify/frmPurchaseOrderSelect.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PurchaseOrderModify/modGeneric.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/PurchaseOrderModify/modGeneric.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PurchaseOrderModify/modQBFC.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/PurchaseOrderModify/modQBFC.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PurchaseOrderModify/modQBXMLRP.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/PurchaseOrderModify/modQBXMLRP.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/PurchaseOrderModify/modUtilities.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/PurchaseOrderModify/modUtilities.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/SyncCustomerList/CustomerClass.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/SyncCustomerList/CustomerClass.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/SyncCustomerList/SyncCustomerList.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/SyncCustomerList/SyncCustomerList.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/SyncCustomerList/SyncCustomerListModule.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/SyncCustomerList/SyncCustomerListModule.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/SyncCustomerList/SyncCustomerMainForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/SyncCustomerList/SyncCustomerMainForm.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/SyncCustomerList/readme.txt: -------------------------------------------------------------------------------- 1 | This sample is a simple VB.NET desktop application that is used to Sync Customer list by using QBFC2 COM dll. 2 | 3 | Running the sample 4 | ------------------ 5 | 6 | Before running SyncCustomerList.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | 9 | Building the sample 10 | ------------------ 11 | Please install latest QBSDK. 12 | Open SyncCustomerList.sln in Microsoft Visual Studio .NET and build the solution. 13 | QBFC2Assembly.dll was generated with 'tlbimp' .NET Type Library to Assembly Convertor. 14 | 15 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/US_CDN_BillAdd/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/US_CDN_BillAdd/US_CDN_BillAdd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/US_CDN_BillAdd/US_CDN_BillAdd.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/US_CDN_BillAdd/readme.txt: -------------------------------------------------------------------------------- 1 | This sample is a simple VB.NET desktop application that is used to add the bill by using QBFC2 COM dll. 2 | 3 | Running the sample 4 | ------------------ 5 | 6 | Before running US_CDN_BillAdd.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | 9 | Building the sample 10 | ------------------ 11 | Please install latest QBSDK. 12 | Open US_CDN_BillAdd.sln in Microsoft Visual Studio .NET and build the solution. 13 | QBFC2Assembly.dll was generated with 'tlbimp' .NET Type Library to Assembly Convertor. 14 | 15 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/US_CDN_UK_CustomerQuery/USCDNUKCustomerQuery.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/US_CDN_UK_CustomerQuery/USCDNUKCustomerQuery.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/US_CDN_UK_CustomerQuery/USCDNUKCustomerQuery.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/US_CDN_UK_CustomerQuery/USCDNUKCustomerQuery.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/US_CDN_UK_CustomerQuery/readme.txt: -------------------------------------------------------------------------------- 1 | This sample is a simple VB.NET desktop application that is used to add the bill by using QBFC2 COM dll. 2 | 3 | Running the sample 4 | ------------------ 5 | 6 | Before running US_CDN_BillAdd.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | 9 | Building the sample 10 | ------------------ 11 | Please install latest QBSDK. 12 | Open US_CDN_BillAdd.sln in Microsoft Visual Studio .NET and build the solution. 13 | QBFC2Assembly.dll was generated with 'tlbimp' .NET Type Library to Assembly Convertor. 14 | 15 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/VersionDependentCustAdd/AddCust.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/VersionDependentCustAdd/AddCust.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/VersionDependentCustAdd/CustomerAddModule.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/VersionDependentCustAdd/CustomerAddModule.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/VersionDependentCustAdd/DisplayXML.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/VersionDependentCustAdd/DisplayXML.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/VersionDependentCustAdd/VersionDependentAddCustomer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/VersionDependentCustAdd/VersionDependentAddCustomer.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/VersionDependentCustAdd/XMLBuilder.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/VersionDependentCustAdd/XMLBuilder.cls -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/billadd/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/billadd/BillAdd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/billadd/BillAdd.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/invoicequery/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/invoicequery/Display.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/invoicequery/Display.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/invoicequery/InvoiceQuery.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/invoicequery/InvoiceQuery.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/invoicequery/Query.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/invoicequery/Query.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/itemquery/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/itemquery/ItemQuery.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/itemquery/ItemQuery.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/itemquery/MainModule.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/itemquery/MainModule.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/itemquery/ShowItems.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/itemquery/ShowItems.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcAddInvoice.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcAddInvoice.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcCDN_VendorAdd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcCDN_VendorAdd.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcCustomerAdd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcCustomerAdd.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcDataExtensions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcDataExtensions.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcDepositAdd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcDepositAdd.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcEvents.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcEvents.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcExpenseReportByVendor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcExpenseReportByVendor.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcInventoryAdjust.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcInventoryAdjust.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcInvoiceMod.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcInvoiceMod.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcItemInventoryMod.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcItemInventoryMod.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcItemReceipt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcItemReceipt.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcMacro.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcMacro.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcMenuEventContext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcMenuEventContext.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcPriceLevels.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcPriceLevels.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcPurchaseOrderModify.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcPurchaseOrderModify.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcSyncCustomerList.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcSyncCustomerList.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcUS_CDN_BillAdd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcUS_CDN_BillAdd.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcUS_CDN_UK_CustomerQuery.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcUS_CDN_UK_CustomerQuery.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcVersionDependentCustAdd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcVersionDependentCustAdd.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcbilladd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcbilladd.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcinvoicequery.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcinvoicequery.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/QBFC/vbnetqbfcitemquery.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/QBFC/vbnetqbfcitemquery.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/AddReceivePayment.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/AddReceivePayment.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/AddReceivePayment/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/AddReceivePayment/MainForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/AddReceivePayment/MainForm.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/AddReceivePayment/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple VB.NET desktop application that adds receive payments to QuickBooks using qbXML 3 | built with the MSXML6 DOM parser and QBFC. 4 | Running the sample 5 | ------------------ 6 | Before running ReceivePayment.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | Building the sample 9 | ------------------ 10 | Please install latest QBSDK. 11 | Open ReceivePayment.sln in Microsoft Visual Studio .NET and build the solution. 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/AddReceivePayment/ReceivePayment.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/AddReceivePayment/ReceivePayment.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/CDN_InvoiceAdd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/CDN_InvoiceAdd.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/CDN_InvoiceAdd/AddInvoiceSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/CDN_InvoiceAdd/AddInvoiceSample.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/CDN_InvoiceAdd/ArAccountInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/CDN_InvoiceAdd/ArAccountInfo.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/CDN_InvoiceAdd/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/CDN_InvoiceAdd/CurrencyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/CDN_InvoiceAdd/CurrencyInfo.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/CDN_InvoiceAdd/CustomerInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/CDN_InvoiceAdd/CustomerInfo.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/CDN_InvoiceAdd/Invoice.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/CDN_InvoiceAdd/Invoice.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/CDN_InvoiceAdd/ItemsInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/CDN_InvoiceAdd/ItemsInfo.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/CDN_InvoiceAdd/QBooks.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/CDN_InvoiceAdd/QBooks.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/CDN_InvoiceAdd/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The invoice sample is meant to be run against QuickBooks 2003 Canadian version and is migrated to vs 2015. It expects 2 | QuickBooks to be running with a company file open and the Admin user logged in. The user 3 | can send an invoice to QuickBooks containing up to 3 items. The item types used 4 | by this sample app are Item Service, Item Non Inventory and Item Other Charge. This app 5 | will work on a company file that has multicurrency turned on or off. 6 | 7 | This show how to retrieve the qbXML versions supported by QuickBooks. It verifies if QuickBooks 8 | is compatible with the sample app. You could extend this to do an app that works with both 9 | Canadian and US version of QuickBooks (not shown in this example). The check is done in the 10 | OpenConnection function in the qbooks.vb module. -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/CDN_InvoiceAdd/SaveInvoice.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/CDN_InvoiceAdd/SaveInvoice.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/CDN_InvoiceAdd/TaxCodeInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/CDN_InvoiceAdd/TaxCodeInfo.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataEvents.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataEvents.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataEvents/QBDataEventApp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataEvents/QBDataEventApp.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataEvents/QBDataEventApp/CCustomer.vb: -------------------------------------------------------------------------------- 1 | Option Strict Off 2 | Option Explicit On 3 | Friend Class CCustomer 4 | ' 5 | ' this is just a trivial little object (note all variables are public so we don't even 6 | ' have to bother with Property Let/Get methods) to hold the information we care about 7 | ' in a customer -- kind of simulates a database record. 8 | ' 9 | 10 | Public name As String 11 | Public Phone As String 12 | Public Email As String 13 | Public Balance As String 14 | Public index As String 15 | Public ListID As String 16 | 17 | Sub Init() 18 | name = "" 19 | Phone = "" 20 | Email = "" 21 | Balance = "0.00" 22 | index = "" 23 | ListID = "" 24 | End Sub 25 | End Class -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataEvents/QBDataEventApp/QBDataEventApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataEvents/QBDataEventApp/QBDataEventApp.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataEvents/QBDataEventManager.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataEvents/QBDataEventManager.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataEvents/QBDataEventManager/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataEvents/QBDataEventManager/QBDataEvenManagerMain.vb: -------------------------------------------------------------------------------- 1 | Module QBDataEvenManagerMain 2 | Public frm As New QBDataEventManagerDisplay 3 | Sub Main(args As String()) 4 | Dim strArg() As String 5 | 6 | strArg = Environment.GetCommandLineArgs() 7 | 8 | If (strArg.Count = 2) Then 9 | If (strArg(1) = "-Embedding") Then 10 | 'called from QBDT so create the form here 11 | frm.Show() 12 | End If 13 | End If 14 | 15 | QBDataEventManagerCOMServer.Instance.Run() 16 | End Sub 17 | 18 | End Module 19 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataEvents/QBDataEventManager/QBDataEventManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataEvents/QBDataEventManager/QBDataEventManager.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataEvents/QBDataEventSubscriber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataEvents/QBDataEventSubscriber.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataEvents/QBDataEventSubscriber/QBDataEventSubscriber.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataEvents/QBDataEventSubscriber/QBDataEventSubscriber.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataExtSample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataExtSample.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataExtSample/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataExtSample/DataExtSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataExtSample/DataExtSample.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataExtSample/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple VB.NET desktop application that adds data extensions into QuickBooks, and allows the user to modify the data extension value using qbXML 3 | built with the MSXML6 DOM parser and QBFC. 4 | Running the sample 5 | ------------------ 6 | Before running DataExtSample.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | Building the sample 9 | ------------------ 10 | Please install latest QBSDK. 11 | Open DataExtSample.sln in Microsoft Visual Studio .NET and build the solution. 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataExtSample/frmAddDataExtDef.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataExtSample/frmAddDataExtDef.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataExtSample/frmAddDataExtension.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataExtSample/frmAddDataExtension.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataExtSample/frmDataExtSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataExtSample/frmDataExtSample.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataExtSample/frmModDataExtension.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataExtSample/frmModDataExtension.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataExtSample/frmqbXMLDisplay.vb: -------------------------------------------------------------------------------- 1 | Option Strict Off 2 | Option Explicit On 3 | Friend Class frmqbXMLDisplay 4 | Inherits System.Windows.Forms.Form 5 | Private Sub cmdCloseWindow_Click(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles cmdCloseWindow.Click 6 | Me.Close() 7 | End Sub 8 | End Class -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DataExtSample/modDataExtSample.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DataExtSample/modDataExtSample.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DepositAdd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DepositAdd.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DepositAdd/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DepositAdd/DepositAdd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DepositAdd/DepositAdd.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DepositAdd/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple VB.NET desktop application that adds deposits into QuickBooks using qbXML 3 | built with the MSXML6 DOM parser and QBFC. 4 | Running the sample 5 | ------------------ 6 | Before running DepositAdd.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | Building the sample 9 | ------------------ 10 | Please install latest QBSDK. 11 | Open DepositAdd.sln in Microsoft Visual Studio .NET and build the solution. 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DepositAdd/frmFundsForDeposit.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DepositAdd/frmFundsForDeposit.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/DepositAdd/modDepositAdd.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/DepositAdd/modDepositAdd.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/InventoryAdjust.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/InventoryAdjust.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/InventoryAdjust/InventoryAdjust.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/InventoryAdjust/InventoryAdjust.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/InventoryAdjust/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple VB.NET desktop application that displays inventory adjust status using qbXML 3 | built with the MSXML6 DOM parser and QBFC. 4 | Running the sample 5 | ------------------ 6 | Before running InventoryAdjust.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | Building the sample 9 | ------------------ 10 | Please install latest QBSDK. 11 | Open InventoryAdjust.sln in Microsoft Visual Studio .NET and build the solution. 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/SDKTestPlus3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/SDKTestPlus3.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/SDKTestPlus3/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/SDKTestPlus3/App.ico -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/SDKTestPlus3/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/SDKTestPlus3/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple VB.NET desktop application that process the xml request and displays the response using qbXML 3 | built with the MSXML6 DOM parser and QBFC. 4 | Running the sample 5 | ------------------ 6 | Before running SDKTestPlus3.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | Building the sample 9 | ------------------ 10 | Please install latest QBSDK. 11 | Open SDKTestPlus3.sln in Microsoft Visual Studio .NET and build the solution. 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/SDKTestPlus3/SDKTestPlus3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/SDKTestPlus3/SDKTestPlus3.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/US_CDN_CustomerAdd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/US_CDN_CustomerAdd.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/US_CDN_CustomerAdd/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/US_CDN_CustomerAdd/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple VB.NET desktop application that adds new Quickbook's customer using qbXML 3 | built with the MSXML6 DOM parser and QBFC. 4 | This sample adds new US and Canadian customers. 5 | Running the sample 6 | ------------------ 7 | Before running US_CDN_CustomerAdd.exe, make sure that .NET runtime is installed on the machine, 8 | and QuickBooks is running with a company opened. 9 | Building the sample 10 | ------------------ 11 | Please install latest QBSDK. 12 | Open US_CDN_CustomerAdd.sln in Microsoft Visual Studio .NET and build the solution. 13 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/US_CDN_CustomerAdd/US_CDN_CustomerAdd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/US_CDN_CustomerAdd/US_CDN_CustomerAdd.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/US_CDN_CustomerAdd/frmUS_CDN_CustomerAdd.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/US_CDN_CustomerAdd/frmUS_CDN_CustomerAdd.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/US_CDN_CustomerAdd/modUS_CDN_CustomerAdd.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/US_CDN_CustomerAdd/modUS_CDN_CustomerAdd.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/addcustomer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/addcustomer.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/addcustomer/AddCust.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/addcustomer/AddCust.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/addcustomer/AddCustomer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/addcustomer/AddCustomer.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/addcustomer/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/addcustomer/DisplayXML.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/addcustomer/DisplayXML.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/addcustomer/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple VB.NET desktop application that adds customers using qbXML 3 | built with the MSXML6 DOM parser and QBFC. 4 | Running the sample 5 | ------------------ 6 | Before running AddCustomer.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | Building the sample 9 | ------------------ 10 | Please install latest QBSDK. 11 | Open AddCustomer.sln in Microsoft Visual Studio .NET and build the solution. 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/customtxndetreport.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/customtxndetreport.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/customtxndetreport/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/customtxndetreport/BigDisplayForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/customtxndetreport/BigDisplayForm.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/customtxndetreport/CustomTxnDetail.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/customtxndetreport/CustomTxnDetail.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/customtxndetreport/DisplayForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/customtxndetreport/DisplayForm.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/customtxndetreport/ParserHelper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/customtxndetreport/ParserHelper.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/customtxndetreport/QBooks.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/customtxndetreport/QBooks.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/customtxndetreport/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple VB.NET desktop application that displays custom transaction detail based on user selection using qbXML 3 | built with the MSXML6 DOM parser and QBFC. 4 | Running the sample 5 | ------------------ 6 | Before running CustomTxnDetail.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | Building the sample 9 | ------------------ 10 | Please install latest QBSDK. 11 | Open CustomTxnDetail.sln in Microsoft Visual Studio .NET and build the solution. 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/customtxndetreport/UIForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/customtxndetreport/UIForm.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/deletecustomer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/deletecustomer.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/deletecustomer/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/deletecustomer/DeleteCustomerSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/deletecustomer/DeleteCustomerSample.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/deletecustomer/DisplayXML.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/deletecustomer/DisplayXML.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/deletecustomer/Main.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/deletecustomer/Main.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/deletecustomer/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple VB.NET desktop application that adds customer to Quickbooks and deletes the customer from Quickbooks using qbXML 3 | built with the MSXML6 DOM parser and QBFC. 4 | Running the sample 5 | ------------------ 6 | Before running DeleteCustomerSample.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | Building the sample 9 | ------------------ 10 | Please install latest QBSDK. 11 | Open DeleteCustomerSample.sln in Microsoft Visual Studio .NET and build the solution. 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/deletecustomer/qbModule.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/deletecustomer/qbModule.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/expensereport.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/expensereport.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/expensereport/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/expensereport/DisplayForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/expensereport/DisplayForm.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/expensereport/ExpenseReport.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/expensereport/ExpenseReport.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/expensereport/ParserHelper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/expensereport/ParserHelper.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/expensereport/QBooks.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/expensereport/QBooks.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/expensereport/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple VB.NET desktop application that displays expense report using qbXML 3 | built with the MSXML6 DOM parser and QBFC. 4 | Running the sample 5 | ------------------ 6 | Before running ExpenseReport.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | Building the sample 9 | ------------------ 10 | Please install latest QBSDK. 11 | Open ExpenseReport.sln in Microsoft Visual Studio .NET and build the solution. 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/expensereport/UIForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/expensereport/UIForm.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/expensereport/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/modifycustomer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/modifycustomer.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/modifycustomer/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/modifycustomer/Customer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/modifycustomer/Customer.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/modifycustomer/CustomerList.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/modifycustomer/CustomerList.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/modifycustomer/CustomerMod.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/modifycustomer/CustomerMod.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/modifycustomer/Display.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/modifycustomer/Display.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/modifycustomer/Main.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/modifycustomer/Main.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/modifycustomer/ModifyCustomer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/modifycustomer/ModifyCustomer.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/modifycustomer/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple VB.NET desktop application that modifies QuickBooks customer using qbXML 3 | built with the MSXML6 DOM parser and QBFC. 4 | Running the sample 5 | ------------------ 6 | Before running ModifyCustomer.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | Building the sample 9 | ------------------ 10 | Please install latest QBSDK. 11 | Open ModifyCustomer.sln in Microsoft Visual Studio .NET and build the solution. 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/modifycustomer/qbXMLRPWrapper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/modifycustomer/qbXMLRPWrapper.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/modifycustomer/qbbanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/modifycustomer/qbbanner.bmp -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/sdktest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/sdktest.zip -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/sdktest/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System.Reflection 2 | Imports System.Runtime.CompilerServices 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | 10 | ' TODO: Review the values of the assembly attributes 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ' Version information for an assembly consists of the following four values: 22 | 23 | ' Major version 24 | ' Minor Version 25 | ' Build Number 26 | ' Revision 27 | 28 | ' You can specify all the values or you can default the Build and Revision Numbers 29 | ' by using the '*' as shown below: 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/sdktest/Log.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/sdktest/Log.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/sdktest/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | This sample is a simple VB.NET desktop application that process the xml request and displays the response using qbXML 3 | built with the MSXML6 DOM parser and QBFC. 4 | Running the sample 5 | ------------------ 6 | Before running SDKTest.exe, make sure that .NET runtime is installed on the machine, 7 | and QuickBooks is running with a company opened. 8 | Building the sample 9 | ------------------ 10 | Please install latest QBSDK. 11 | Open SDKTest.sln in Microsoft Visual Studio .NET and build the solution. 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/sdktest/SDKTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/sdktest/SDKTest.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/sdktest/SDKTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/sdktest/SDKTest.pdb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/sdktest/SDKTest.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/sdktest/SDKTest.vshost.exe -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/sdktest/SDKTest.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/sdktest/SDKTest.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | SDKTest 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/sdktest/UIForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/sdktest/UIForm.vb -------------------------------------------------------------------------------- /qbdt/vb.NET/qbXML/sdktest/qbooks.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/qbdt/vb.NET/qbXML/sdktest/qbooks.vb -------------------------------------------------------------------------------- /views/Callout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/views/Callout.png -------------------------------------------------------------------------------- /views/Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntuitDeveloper/QBXML_SDK_Samples/fe94a141bf7fec875565e478b67a823248a1ecd8/views/Sample.png --------------------------------------------------------------------------------