4642 and some qbfc foot gunnery

This commit is contained in:
2026-02-13 09:46:48 -08:00
parent c1e4459dfa
commit 648533d750
20 changed files with 9 additions and 9 deletions

View File

@@ -50,6 +50,11 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="interop.QBFC14, Version=15.0.0.1, Culture=neutral, PublicKeyToken=31d8aec643e18259, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<EmbedInteropTypes>True</EmbedInteropTypes>
<HintPath>..\libs\QuickBooks\qbfc14\interop.QBFC14.dll</HintPath>
</Reference>
<Reference Include="Interop.QBFC15">
<HintPath>..\libs\QuickBooks\Interop.QBFC15.dll</HintPath>
<EmbedInteropTypes>True</EmbedInteropTypes>

View File

@@ -1,4 +1,4 @@
using Interop.QBFC15;
using Interop.QBFC14;
using Newtonsoft.Json.Linq;
using System;
using System.Collections;

View File

@@ -1,11 +1,5 @@
# Installing QBI
Did you hear about Bertram?
He didn't read all the instructions before starting installation and the whole thing took twice as long and resulted in so many problems down the road it was a right kerfuffle!
Don't be a Bertram; read these instructions before you install QBI.
## Requirements before installation
#### 64 Bit Windows operating system

View File

@@ -54,8 +54,8 @@ function CheckForQBFC(): Boolean;
begin
if not QBFCChecked then begin
QBFCCheckResult := True;
if not FileExists(ExpandConstant('{commoncf32}\Intuit\QuickBooks\QBFC15.dll')) then begin
QBFCCheckResult := MsgBox('QBFC15 does not appear to have been installed as required prior to QBI.' #13#13 'File: ' + ExpandConstant('{commoncf32}\Intuit\QuickBooks\QBFC15.dll') + ' was not found.'#13#13'Do you want to install QBI anyway?', mbConfirmation, MB_YESNO) = idYes;
if not FileExists(ExpandConstant('{commoncf32}\Intuit\QuickBooks\QBFC14.dll')) then begin
QBFCCheckResult := MsgBox('QBFC14 does not appear to have been installed as required prior to QBI.' #13#13 'File: ' + ExpandConstant('{commoncf32}\Intuit\QuickBooks\QBFC14.dll') + ' was not found.'#13#13'Do you want to install QBI anyway?', mbConfirmation, MB_YESNO) = idYes;
if not QBFCCheckResult then begin
WizardForm.CancelButton.OnClick(WizardForm.CancelButton);
end;

View File

@@ -0,0 +1 @@
Installer and app are coded to use qbfc14, the installer is on the ayanova.com download site and the docs for qbi link to it so using qbfc14 but keeping the qbfc15 stuff just in case can't get it anywhere else and becomes necessary.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.