Skip to content

Commit 2c1be1a

Browse files
author
david_webb6
committed
US CANADA customer add 32 bit
1 parent 2f5e6c5 commit 2c1be1a

11 files changed

+1087
-0
lines changed
23.4 KB
Binary file not shown.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
<Assembly: AssemblyTitle("")>
14+
<Assembly: AssemblyDescription("")>
15+
<Assembly: AssemblyCompany("Intuit")>
16+
<Assembly: AssemblyProduct("")>
17+
<Assembly: AssemblyCopyright("")>
18+
<Assembly: AssemblyTrademark("")>
19+
<Assembly: AssemblyCulture("")>
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+
<Assembly: AssemblyVersion("1.0.*")>
32+
33+
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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.
Binary file not shown.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25420.1
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "US_CDN_CustomerAdd", "US_CDN_CustomerAdd.vbproj", "{B33BE537-1F79-4D19-B18F-917FF12D7D5A}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{B33BE537-1F79-4D19-B18F-917FF12D7D5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{B33BE537-1F79-4D19-B18F-917FF12D7D5A}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{B33BE537-1F79-4D19-B18F-917FF12D7D5A}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{B33BE537-1F79-4D19-B18F-917FF12D7D5A}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal
Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<ProjectType>Local</ProjectType>
5+
<MyType>WindowsForms</MyType>
6+
<ProductVersion>8.0.30729</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>{B33BE537-1F79-4D19-B18F-917FF12D7D5A}</ProjectGuid>
9+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
10+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
11+
<AssemblyName>US_CDN_CustomerAdd</AssemblyName>
12+
<OutputType>WinExe</OutputType>
13+
<StartupObject>US_CDN_CustomerAdd.frmUS_CDN_CustomerAdd</StartupObject>
14+
<AssemblyMajorVersion>1</AssemblyMajorVersion>
15+
<AssemblyMinorVersion>0</AssemblyMinorVersion>
16+
<AssemblyRevisionNumber>0</AssemblyRevisionNumber>
17+
<GenerateRevisionNumber>False</GenerateRevisionNumber>
18+
<AssemblyCompanyName>Intuit</AssemblyCompanyName>
19+
<RootNamespace>US_CDN_CustomerAdd</RootNamespace>
20+
<FileUpgradeFlags>
21+
</FileUpgradeFlags>
22+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
23+
<UpgradeBackupLocation>
24+
</UpgradeBackupLocation>
25+
<OldToolsVersion>3.5</OldToolsVersion>
26+
<TargetFrameworkProfile />
27+
<PublishUrl>publish\</PublishUrl>
28+
<Install>true</Install>
29+
<InstallFrom>Disk</InstallFrom>
30+
<UpdateEnabled>false</UpdateEnabled>
31+
<UpdateMode>Foreground</UpdateMode>
32+
<UpdateInterval>7</UpdateInterval>
33+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
34+
<UpdatePeriodically>false</UpdatePeriodically>
35+
<UpdateRequired>false</UpdateRequired>
36+
<MapFileExtensions>true</MapFileExtensions>
37+
<ApplicationRevision>0</ApplicationRevision>
38+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
39+
<IsWebBootstrapper>false</IsWebBootstrapper>
40+
<UseApplicationTrust>false</UseApplicationTrust>
41+
<BootstrapperEnabled>true</BootstrapperEnabled>
42+
</PropertyGroup>
43+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
44+
<OutputPath>.\bin\</OutputPath>
45+
<DocumentationFile>US_CDN_CustomerAdd.xml</DocumentationFile>
46+
<DebugSymbols>True</DebugSymbols>
47+
<DefineDebug>True</DefineDebug>
48+
<DefineTrace>True</DefineTrace>
49+
<DefineConstants>Win32=True</DefineConstants>
50+
<PlatformTarget>AnyCPU</PlatformTarget>
51+
<NoWarn>42016,42017,42018,42019,42032,42353,42354,42355</NoWarn>
52+
<DebugType>full</DebugType>
53+
<Prefer32Bit>true</Prefer32Bit>
54+
</PropertyGroup>
55+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
56+
<OutputPath>.\bin\</OutputPath>
57+
<DocumentationFile>US_CDN_CustomerAdd.xml</DocumentationFile>
58+
<DebugSymbols>False</DebugSymbols>
59+
<DefineDebug>False</DefineDebug>
60+
<DefineTrace>True</DefineTrace>
61+
<DefineConstants>Win32=True</DefineConstants>
62+
<PlatformTarget>AnyCPU</PlatformTarget>
63+
<NoWarn>42016,42017,42018,42019,42032,42353,42354,42355</NoWarn>
64+
<DebugType>none</DebugType>
65+
<Prefer32Bit>true</Prefer32Bit>
66+
</PropertyGroup>
67+
<ItemGroup>
68+
<Reference Include="Microsoft.VisualBasic.Compatibility">
69+
<Name>Microsoft.VisualBasic.Compatibility</Name>
70+
</Reference>
71+
<Reference Include="System">
72+
<Name>System</Name>
73+
</Reference>
74+
<Reference Include="System.Data">
75+
<Name>System.Data</Name>
76+
</Reference>
77+
<Reference Include="System.Drawing">
78+
<Name>System.Drawing</Name>
79+
</Reference>
80+
<Reference Include="System.Windows.Forms">
81+
<Name>System.Windows.Forms</Name>
82+
</Reference>
83+
<Reference Include="System.XML">
84+
<Name>System.XML</Name>
85+
</Reference>
86+
<COMReference Include="MSXML2">
87+
<Guid>{F5078F18-C551-11D3-89B9-0000F81FE221}</Guid>
88+
<VersionMajor>6</VersionMajor>
89+
<VersionMinor>0</VersionMinor>
90+
<Lcid>0</Lcid>
91+
<WrapperTool>tlbimp</WrapperTool>
92+
<Isolated>False</Isolated>
93+
<EmbedInteropTypes>True</EmbedInteropTypes>
94+
</COMReference>
95+
<COMReference Include="QBXMLRP2Lib">
96+
<Guid>{4351618F-9059-4A79-B638-DCB8B97B3262}</Guid>
97+
<Lcid>0</Lcid>
98+
<VersionMajor>1</VersionMajor>
99+
<VersionMinor>0</VersionMinor>
100+
<WrapperTool>tlbimp</WrapperTool>
101+
<EmbedInteropTypes>True</EmbedInteropTypes>
102+
</COMReference>
103+
</ItemGroup>
104+
<ItemGroup>
105+
<Import Include="Microsoft.VisualBasic" />
106+
<Import Include="Microsoft.VisualBasic.Compatibility" />
107+
<Import Include="System" />
108+
<Import Include="System.Collections" />
109+
<Import Include="System.Data" />
110+
<Import Include="System.Diagnostics" />
111+
<Import Include="System.Drawing" />
112+
<Import Include="System.Windows.Forms" />
113+
</ItemGroup>
114+
<ItemGroup>
115+
<Compile Include="AssemblyInfo.vb" />
116+
<Compile Include="frmUS_CDN_CustomerAdd.Designer.vb">
117+
<SubType>Code</SubType>
118+
<DependentUpon>frmUS_CDN_CustomerAdd.vb</DependentUpon>
119+
</Compile>
120+
<Compile Include="frmUS_CDN_CustomerAdd.vb">
121+
<SubType>Form</SubType>
122+
</Compile>
123+
<Compile Include="modUS_CDN_CustomerAdd.vb">
124+
<SubType>Code</SubType>
125+
</Compile>
126+
<EmbeddedResource Include="frmUS_CDN_CustomerAdd.resX">
127+
<DependentUpon>frmUS_CDN_CustomerAdd.vb</DependentUpon>
128+
</EmbeddedResource>
129+
<None Include="app.config" />
130+
</ItemGroup>
131+
<ItemGroup>
132+
<Folder Include="My Project\" />
133+
</ItemGroup>
134+
<ItemGroup>
135+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
136+
<Visible>False</Visible>
137+
<ProductName>.NET Framework 3.5 SP1</ProductName>
138+
<Install>true</Install>
139+
</BootstrapperPackage>
140+
</ItemGroup>
141+
<Import Project="$(MSBuildBinPath)\Microsoft.VisualBasic.targets" />
142+
<PropertyGroup>
143+
<PreBuildEvent>
144+
</PreBuildEvent>
145+
<PostBuildEvent>
146+
</PostBuildEvent>
147+
</PropertyGroup>
148+
</Project>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<system.diagnostics>
4+
<sources>
5+
<!-- This section defines the logging configuration for My.Application.Log -->
6+
<source name="DefaultSource" switchName="DefaultSwitch">
7+
<listeners>
8+
<add name="FileLog"/>
9+
<!-- Uncomment the below section to write to the Application Event Log -->
10+
<!--<add name="EventLog"/>-->
11+
</listeners>
12+
</source>
13+
</sources>
14+
<switches>
15+
<add name="DefaultSwitch" value="Information"/>
16+
</switches>
17+
<sharedListeners>
18+
<add name="FileLog" type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" initializeData="FileLogWriter"/>
19+
<!-- Uncomment the below section and replace APPLICATION_NAME with the name of your application to write to the Application Event Log -->
20+
<!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
21+
</sharedListeners>
22+
</system.diagnostics>
23+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>

0 commit comments

Comments
 (0)