├── Extra Samples ├── JScript │ ├── CaptureImage_B64.js │ ├── CaptureImage_Binary.js │ ├── CaptureImage_DigitiserInfo.js │ ├── CreateImageFromB64Text.js │ ├── Run-JS.bat │ └── WizardScriptAntiAlias.js ├── Java │ ├── TestSigCapt_Binary │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── Run-TestSigCapt.bat │ │ ├── lib │ │ │ ├── flsx.jar │ │ │ └── wgssLicenceJNI.jar │ │ └── src │ │ │ └── com │ │ │ └── wacom │ │ │ └── sdk │ │ │ └── sample │ │ │ └── TestSigCapt.java │ └── TestSigCapt_HashCheck │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── Project1.jpr │ │ ├── classes │ │ ├── .data │ │ │ └── Project1.cdi │ │ └── com │ │ │ └── wacom │ │ │ └── sdk │ │ │ └── sample │ │ │ ├── TestSigCapt$1.class │ │ │ ├── TestSigCapt$2.class │ │ │ └── TestSigCapt.class │ │ ├── lib │ │ ├── flsx.jar │ │ └── wgssLicenceJNI.jar │ │ ├── public_html │ │ └── WEB-INF │ │ │ ├── faces-config.xml │ │ │ └── web.xml │ │ └── src │ │ └── com │ │ └── wacom │ │ └── sdk │ │ └── sample │ │ ├── Run-Java.bat │ │ └── TestSigCaptHash.java └── VS2010 │ ├── TestSigCapt-CheckInstall │ ├── .vs │ │ └── TestSigCapt │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache │ │ │ ├── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ │ └── sqlite3 │ │ │ │ ├── db.lock │ │ │ │ ├── storage.ide │ │ │ │ ├── storage.ide-shm │ │ │ │ └── storage.ide-wal │ │ │ └── v16 │ │ │ └── .suo │ ├── TestSigCapt.exe │ ├── TestSigCapt.sln │ ├── TestSigCapt.suo │ └── TestSigCapt │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── TestSigCapt.Designer.cs │ │ ├── TestSigCapt.cs │ │ ├── TestSigCapt.csproj │ │ ├── TestSigCapt.resx │ │ ├── bin │ │ ├── Debug │ │ │ ├── Florentis.InteropFlSigCOM.dll │ │ │ ├── Florentis.InteropFlSigCapt.dll │ │ │ ├── TestSigCapt.exe │ │ │ ├── TestSigCapt.pdb │ │ │ ├── sig1.png │ │ │ └── stdole.dll │ │ └── x64 │ │ │ └── Debug │ │ │ ├── Florentis.InteropFlSigCOM.dll │ │ │ ├── Florentis.InteropFlSigCapt.dll │ │ │ ├── TestSigCapt.exe │ │ │ ├── TestSigCapt.pdb │ │ │ ├── TestSigCapt.zip │ │ │ └── stdole.dll │ │ └── obj │ │ ├── x64 │ │ └── Debug │ │ │ ├── .NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TestSigCapt.Properties.Resources.resources │ │ │ ├── TestSigCapt.TestSigCapt.resources │ │ │ ├── TestSigCapt.csproj.CopyComplete │ │ │ ├── TestSigCapt.csproj.CoreCompileInputs.cache │ │ │ ├── TestSigCapt.csproj.FileListAbsolute.txt │ │ │ ├── TestSigCapt.csproj.GenerateResource.cache │ │ │ ├── TestSigCapt.csprojAssemblyReference.cache │ │ │ ├── TestSigCapt.exe │ │ │ └── TestSigCapt.pdb │ │ └── x86 │ │ └── Debug │ │ ├── .NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TestSigCapt.Properties.Resources.resources │ │ ├── TestSigCapt.TestSigCapt.resources │ │ ├── TestSigCapt.csproj.CopyComplete │ │ ├── TestSigCapt.csproj.CoreCompileInputs.cache │ │ ├── TestSigCapt.csproj.FileListAbsolute.txt │ │ ├── TestSigCapt.csproj.GenerateResource.cache │ │ ├── TestSigCapt.csprojAssemblyReference.cache │ │ ├── TestSigCapt.exe │ │ └── TestSigCapt.pdb │ ├── TestSigCaptTranspBkgd │ └── TestSigCapt │ │ ├── .vs │ │ └── TestSigCapt │ │ │ └── v16 │ │ │ └── .suo │ │ ├── ReadMe.txt │ │ ├── TestSigCapt.sln │ │ ├── TestSigCapt.suo │ │ ├── TestSigCapt.v12.suo │ │ └── TestSigCapt │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── TestSigCapt.Designer.cs │ │ ├── TestSigCapt.cs │ │ ├── TestSigCapt.csproj │ │ ├── TestSigCapt.resx │ │ ├── app.config │ │ ├── bin │ │ └── Debug │ │ │ ├── TestSigCapt.exe │ │ │ ├── TestSigCapt.exe.config │ │ │ ├── TestSigCapt.pdb │ │ │ ├── TestSigCapt.vshost.exe │ │ │ ├── TestSigCapt.vshost.exe.config │ │ │ ├── TestSigCapt.vshost.exe.manifest │ │ │ ├── Thumbs.db │ │ │ ├── sig1.png │ │ │ └── stdole.dll │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── .NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs │ │ ├── TestSigCapt.Properties.Resources.resources │ │ ├── TestSigCapt.TestSigCapt.resources │ │ ├── TestSigCapt.csproj.CopyComplete │ │ ├── TestSigCapt.csproj.CoreCompileInputs.cache │ │ ├── TestSigCapt.csproj.FileListAbsolute.txt │ │ ├── TestSigCapt.csproj.GenerateResource.cache │ │ ├── TestSigCapt.csprojAssemblyReference.cache │ │ ├── TestSigCapt.exe │ │ └── TestSigCapt.pdb │ ├── TestSigCapt_AutoSizing │ └── TestSigCapt_AutoSizing │ │ ├── .vs │ │ └── TestSigCapt │ │ │ └── v16 │ │ │ └── .suo │ │ ├── ReadMe.txt │ │ ├── TestSigCapt.sln │ │ ├── TestSigCapt.suo │ │ └── TestSigCapt │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── TestSigCapt.Designer.cs │ │ ├── TestSigCapt.cs │ │ ├── TestSigCapt.csproj │ │ ├── TestSigCapt.resx │ │ ├── bin │ │ └── Debug │ │ │ ├── Florentis.InteropFlSigCOM.dll │ │ │ ├── Florentis.InteropFlSigCapt.dll │ │ │ ├── TestSigCapt.exe │ │ │ ├── TestSigCapt.pdb │ │ │ ├── TestSigCapt.vshost.exe │ │ │ ├── TestSigCapt.vshost.exe.manifest │ │ │ ├── sig1.png │ │ │ └── stdole.dll │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── .NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs │ │ ├── TestSigCapt.Properties.Resources.resources │ │ ├── TestSigCapt.TestSigCapt.resources │ │ ├── TestSigCapt.csproj.CopyComplete │ │ ├── TestSigCapt.csproj.CoreCompileInputs.cache │ │ ├── TestSigCapt.csproj.FileListAbsolute.txt │ │ ├── TestSigCapt.csproj.GenerateResource.cache │ │ ├── TestSigCapt.csprojAssemblyReference.cache │ │ ├── TestSigCapt.exe │ │ └── TestSigCapt.pdb │ ├── TestSigCapt_MemStream │ ├── .vs │ │ └── TestSigCapt │ │ │ └── v16 │ │ │ └── .suo │ ├── ReadMe.txt │ ├── TestSigCapt.sln │ ├── TestSigCapt.suo │ ├── TestSigCapt.v12.suo │ └── TestSigCapt │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── TestSigCapt.Designer.cs │ │ ├── TestSigCapt.cs │ │ ├── TestSigCapt.csproj │ │ ├── TestSigCapt.resx │ │ ├── app.config │ │ ├── bin │ │ └── Debug │ │ │ ├── Florentis.InteropFlSigCOM.dll │ │ │ ├── Florentis.InteropFlSigCapt.dll │ │ │ ├── TestSigCapt.exe │ │ │ ├── TestSigCapt.exe.config │ │ │ ├── TestSigCapt.pdb │ │ │ ├── TestSigCapt.vshost.exe │ │ │ ├── TestSigCapt.vshost.exe.config │ │ │ ├── TestSigCapt.vshost.exe.manifest │ │ │ └── stdole.dll │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── .NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs │ │ ├── TestSigCapt.Properties.Resources.resources │ │ ├── TestSigCapt.TestSigCapt.resources │ │ ├── TestSigCapt.csproj.CopyComplete │ │ ├── TestSigCapt.csproj.CoreCompileInputs.cache │ │ ├── TestSigCapt.csproj.FileListAbsolute.txt │ │ ├── TestSigCapt.csproj.GenerateResource.cache │ │ ├── TestSigCapt.csprojAssemblyReference.cache │ │ ├── TestSigCapt.exe │ │ └── TestSigCapt.pdb │ ├── TestWizPinInput │ ├── .vs │ │ └── TestWizSigCapt │ │ │ └── v16 │ │ │ └── .suo │ ├── ReadMe.txt │ ├── TestWizSigCapt.sln │ ├── TestWizSigCapt.suo │ ├── TestWizSigCapt.v12.suo │ └── TestWizSigCapt │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── TestWizSigCapt.Designer.cs │ │ ├── TestWizSigCapt.cs │ │ ├── TestWizSigCapt.csproj │ │ ├── TestWizSigCapt.resx │ │ ├── app.config │ │ ├── bin │ │ └── Debug │ │ │ ├── Florentis.InteropAxFlSigCOM.dll │ │ │ ├── Florentis.InteropAxFlWizCOM.dll │ │ │ ├── Florentis.InteropFlSigCOM.dll │ │ │ ├── Florentis.InteropFlSigCapt.dll │ │ │ ├── Florentis.InteropFlWizCOM.dll │ │ │ ├── TestWizSigCapt.exe │ │ │ ├── TestWizSigCapt.exe.config │ │ │ ├── TestWizSigCapt.pdb │ │ │ ├── TestWizSigCapt.vshost.exe │ │ │ ├── TestWizSigCapt.vshost.exe.config │ │ │ ├── TestWizSigCapt.vshost.exe.manifest │ │ │ └── stdole.dll │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── .NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs │ │ ├── TestWizSigCapt.Form1.resources │ │ ├── TestWizSigCapt.Properties.Resources.resources │ │ ├── TestWizSigCapt.TestWizSigCapt.resources │ │ ├── TestWizSigCapt.csproj.CopyComplete │ │ ├── TestWizSigCapt.csproj.CoreCompileInputs.cache │ │ ├── TestWizSigCapt.csproj.FileListAbsolute.txt │ │ ├── TestWizSigCapt.csproj.GenerateResource.cache │ │ ├── TestWizSigCapt.csprojAssemblyReference.cache │ │ ├── TestWizSigCapt.exe │ │ └── TestWizSigCapt.pdb │ ├── WizSigCaptRetry │ ├── .vs │ │ └── TestWizSigCapt │ │ │ └── v16 │ │ │ └── .suo │ ├── ReadMe.txt │ ├── TestWizSigCapt.sln │ ├── TestWizSigCapt.suo │ ├── TestWizSigCapt.v12.suo │ └── TestWizSigCapt │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── TestWizSigCapt.Designer.cs │ │ ├── TestWizSigCapt.cs │ │ ├── TestWizSigCapt.csproj │ │ ├── TestWizSigCapt.resx │ │ ├── app.config │ │ ├── bin │ │ └── Debug │ │ │ ├── Florentis.InteropAxFlSigCOM.dll │ │ │ ├── Florentis.InteropAxFlWizCOM.dll │ │ │ ├── TestWizSigCapt.exe │ │ │ ├── TestWizSigCapt.exe.config │ │ │ ├── TestWizSigCapt.pdb │ │ │ ├── TestWizSigCapt.vshost.exe │ │ │ ├── TestWizSigCapt.vshost.exe.config │ │ │ ├── TestWizSigCapt.vshost.exe.manifest │ │ │ └── stdole.dll │ │ └── obj │ │ └── x86 │ │ └── Debug │ │ ├── .NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TestWizSigCapt.Form1.resources │ │ ├── TestWizSigCapt.Properties.Resources.resources │ │ ├── TestWizSigCapt.TestWizSigCapt.resources │ │ ├── TestWizSigCapt.csproj.CopyComplete │ │ ├── TestWizSigCapt.csproj.CoreCompileInputs.cache │ │ ├── TestWizSigCapt.csproj.FileListAbsolute.txt │ │ ├── TestWizSigCapt.csproj.GenerateResource.cache │ │ ├── TestWizSigCapt.csprojAssemblyReference.cache │ │ ├── TestWizSigCapt.exe │ │ └── TestWizSigCapt.pdb │ └── WizardExtra │ ├── .vs │ └── WizardExtra │ │ ├── DesignTimeBuild │ │ └── .dtbcache │ │ ├── v14 │ │ └── .suo │ │ ├── v15 │ │ ├── .suo │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ └── v16 │ │ └── .suo │ ├── ReadMe.txt │ ├── WizardExtra.sln │ ├── WizardExtra.suo │ ├── WizardExtra │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Step1.Designer.cs │ ├── Step1.cs │ ├── Step1.resx │ ├── WizardExtra.Designer.cs │ ├── WizardExtra.cs │ ├── WizardExtra.csproj │ ├── WizardExtra.resx │ ├── app.config │ ├── bin │ │ ├── Debug │ │ │ ├── Florentis.InteropAxFlSigCOM.dll │ │ │ ├── Florentis.InteropAxFlWizCOM.dll │ │ │ ├── WizardExtra.exe │ │ │ ├── WizardExtra.exe.config │ │ │ ├── WizardExtra.pdb │ │ │ ├── sig1.png │ │ │ └── stdole.dll │ │ ├── Release.zip │ │ └── Release │ │ │ ├── Florentis.InteropAxFlSigCOM.dll │ │ │ ├── Florentis.InteropAxFlWizCOM.dll │ │ │ ├── WizardExtra.exe │ │ │ ├── WizardExtra.exe.config │ │ │ ├── WizardExtra.pdb │ │ │ ├── images │ │ │ ├── Accept300.png │ │ │ ├── Accept430.png │ │ │ ├── Accept500.png │ │ │ ├── Accept530.png │ │ │ ├── Cancel300.png │ │ │ ├── Cancel430.png │ │ │ ├── Cancel500.png │ │ │ ├── Cancel530.png │ │ │ ├── Clear300.png │ │ │ ├── Clear430.png │ │ │ ├── Clear500.png │ │ │ ├── Clear530.png │ │ │ ├── LeftArrow300.png │ │ │ ├── LeftArrow430.png │ │ │ ├── LeftArrow500.png │ │ │ ├── LeftArrow530.png │ │ │ ├── Next300.jpg │ │ │ ├── Next300.png │ │ │ ├── Next430.jpg │ │ │ ├── Next430.png │ │ │ ├── Next500.png │ │ │ ├── Next500.safe.jpg │ │ │ ├── Next530.jpg │ │ │ ├── Next530.png │ │ │ ├── RightArrow300.png │ │ │ ├── RightArrow430.png │ │ │ ├── RightArrow500.png │ │ │ └── RightArrow530.png │ │ │ ├── sig1.png │ │ │ └── stdole.dll │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── .NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WizardExtra.Properties.Resources.resources │ │ ├── WizardExtra.Step1.resources │ │ ├── WizardExtra.WizardExtra.resources │ │ ├── WizardExtra.csproj.CopyComplete │ │ ├── WizardExtra.csproj.CoreCompileInputs.cache │ │ ├── WizardExtra.csproj.FileListAbsolute.txt │ │ ├── WizardExtra.csproj.GenerateResource.cache │ │ ├── WizardExtra.csprojAssemblyReference.cache │ │ ├── WizardExtra.exe │ │ └── WizardExtra.pdb │ │ └── Release │ │ ├── .NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs │ │ ├── TestSigCapt_WPF.csproj.AssemblyReference.cache │ │ ├── WizardExtra.Properties.Resources.resources │ │ ├── WizardExtra.Step1.resources │ │ ├── WizardExtra.WizardExtra.resources │ │ ├── WizardExtra.csproj.CopyComplete │ │ ├── WizardExtra.csproj.CoreCompileInputs.cache │ │ ├── WizardExtra.csproj.FileListAbsolute.txt │ │ ├── WizardExtra.csproj.GenerateResource.cache │ │ ├── WizardExtra.csprojAssemblyReference.cache │ │ ├── WizardExtra.exe │ │ └── WizardExtra.pdb │ └── images │ ├── Accept300.png │ ├── Accept430.png │ ├── Accept500.png │ ├── Accept530.png │ ├── Cancel300.png │ ├── Cancel430.png │ ├── Cancel500.png │ ├── Cancel530.png │ ├── Clear300.png │ ├── Clear430.png │ ├── Clear500.png │ ├── Clear530.png │ ├── LeftArrow300.png │ ├── LeftArrow430.png │ ├── LeftArrow500.png │ ├── LeftArrow530.png │ ├── Next300.jpg │ ├── Next300.png │ ├── Next430.jpg │ ├── Next430.png │ ├── Next500.png │ ├── Next500.safe.jpg │ ├── Next530.jpg │ ├── Next530.png │ ├── RightArrow300.png │ ├── RightArrow430.png │ ├── RightArrow500.png │ └── RightArrow530.png ├── GETTING-STARTED.md ├── LICENSE ├── README.md ├── RELEASE.md ├── Samples ├── Cpp │ ├── TestSigCaptCPP │ │ ├── TestSigCapt.cpp │ │ ├── TestSigCapt.rc │ │ ├── TestSigCaptCPP.sln │ │ ├── TestSigCaptCPP.vcxproj │ │ ├── TestSigCaptCPP.vcxproj.filters │ │ └── resource.h │ └── TestWizSigCaptCPP │ │ ├── TestWizSigCapt.cpp │ │ ├── TestWizSigCapt.rc │ │ ├── TestWizSigCaptCPP.sln │ │ ├── TestWizSigCaptCPP.vcxproj │ │ ├── TestWizSigCaptCPP.vcxproj.filters │ │ └── resource.h ├── Delphi │ ├── TestSigCapt │ │ ├── FLSIGCTLLib_TLB.dcr │ │ ├── FLSIGCTLLib_TLB.pas │ │ ├── TestSigCapt.dpr │ │ ├── TestSigCapt.dproj │ │ ├── TestSigCapt.dproj.local │ │ ├── TestSigCapt.identcache │ │ ├── TestSigCapt.res │ │ ├── TestSigCaptForm.dfm │ │ └── TestSigCaptForm.pas │ ├── TestSigCaptHash │ │ ├── FLSIGCTLLib_TLB.dcr │ │ ├── FLSIGCTLLib_TLB.pas │ │ ├── TestSigCapt.dpr │ │ ├── TestSigCapt.dproj │ │ ├── TestSigCapt.dproj.local │ │ ├── TestSigCapt.identcache │ │ ├── TestSigCapt.res │ │ ├── TestSigCaptForm.dfm │ │ └── TestSigCaptForm.pas │ └── TestWizSigCapt │ │ ├── FLSIGCTLLib_TLB.dcr │ │ ├── FLSIGCTLLib_TLB.pas │ │ ├── FlWizCOMLib_TLB.dcr │ │ ├── FlWizCOMLib_TLB.pas │ │ ├── TestWizSigCapt.dpr │ │ ├── TestWizSigCapt.dproj │ │ ├── TestWizSigCapt.dproj.local │ │ ├── TestWizSigCapt.identcache │ │ ├── TestWizSigCapt.res │ │ ├── TestWizSigCaptForm.dfm │ │ └── TestWizSigCaptForm.pas ├── JScript │ ├── CaptureImage.js │ ├── CaptureSigText.js │ ├── DecodeImage.js │ ├── DecodeSigText.js │ ├── Readme.txt │ ├── Run-JS.bat │ ├── Run-JS.x64.bat │ ├── STU │ │ ├── 320x200.png │ │ ├── 396x100.png │ │ ├── 640x480.png │ │ ├── 800x480-530.png │ │ └── 800x480.png │ ├── Thumbs.db │ ├── Versions.js │ ├── WizardScript.js │ └── WizardUpload.js ├── Java │ ├── 320x200.png │ ├── 396x100.png │ ├── 640x480.png │ ├── 800x480-530.png │ ├── 800x480.png │ ├── CaptureImage.java │ ├── CaptureImageBase64.java │ ├── CaptureImageClipped.java │ ├── CaptureImageRelative.java │ ├── DecodeImage.java │ ├── Readme.txt │ ├── Run-Java.bat │ ├── Run-Java.x64.bat │ ├── TestSigCapt │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── Run javaw-TestSigCapt.bat │ │ ├── Run-TestSigCapt-x64.bat │ │ ├── Run-TestSigCapt.bat │ │ ├── bin │ │ │ └── com │ │ │ │ └── wacom │ │ │ │ └── sdk │ │ │ │ └── sample │ │ │ │ ├── TestSigCapt$1.class │ │ │ │ ├── TestSigCapt$2.class │ │ │ │ └── TestSigCapt.class │ │ ├── lib │ │ │ ├── flsx.jar │ │ │ └── wgssLicenceJNI.jar │ │ └── src │ │ │ └── com │ │ │ └── wacom │ │ │ └── sdk │ │ │ └── sample │ │ │ └── TestSigCapt.java │ ├── TestWizSigCapt │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── Run-TestWizSigCapt-x64.bat │ │ ├── Run-TestWizSigCapt.bat │ │ ├── bin │ │ │ └── com │ │ │ │ └── wacom │ │ │ │ └── sdk │ │ │ │ └── sample │ │ │ │ ├── TestWizSigCapt$1.class │ │ │ │ ├── TestWizSigCapt$2.class │ │ │ │ ├── TestWizSigCapt$3.class │ │ │ │ ├── TestWizSigCapt$MyWizardScript$1.class │ │ │ │ ├── TestWizSigCapt$MyWizardScript.class │ │ │ │ └── TestWizSigCapt.class │ │ ├── lib │ │ │ ├── flsx.jar │ │ │ └── wgssLicenceJNI.jar │ │ └── src │ │ │ └── com │ │ │ └── wacom │ │ │ └── sdk │ │ │ └── sample │ │ │ └── TestWizSigCapt.java │ ├── TestWizSigCaptSimulate │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── Run-TestWizSigCaptSimulate-x64.bat │ │ ├── Run-TestWizSigCaptSimulate.bat │ │ ├── bin │ │ │ └── com │ │ │ │ └── wacom │ │ │ │ └── sdk │ │ │ │ └── sample │ │ │ │ ├── TestWizSigCaptSimulate$1.class │ │ │ │ ├── TestWizSigCaptSimulate$10.class │ │ │ │ ├── TestWizSigCaptSimulate$11.class │ │ │ │ ├── TestWizSigCaptSimulate$2$1.class │ │ │ │ ├── TestWizSigCaptSimulate$2.class │ │ │ │ ├── TestWizSigCaptSimulate$3.class │ │ │ │ ├── TestWizSigCaptSimulate$4.class │ │ │ │ ├── TestWizSigCaptSimulate$5.class │ │ │ │ ├── TestWizSigCaptSimulate$6.class │ │ │ │ ├── TestWizSigCaptSimulate$7.class │ │ │ │ ├── TestWizSigCaptSimulate$8.class │ │ │ │ ├── TestWizSigCaptSimulate$9.class │ │ │ │ ├── TestWizSigCaptSimulate$STATE.class │ │ │ │ └── TestWizSigCaptSimulate.class │ │ ├── lib │ │ │ ├── flsx.jar │ │ │ └── wgssLicenceJNI.jar │ │ └── src │ │ │ └── com │ │ │ └── wacom │ │ │ └── sdk │ │ │ └── sample │ │ │ └── TestWizSigCaptSimulate.java │ ├── WizardScript.java │ ├── WizardScript_byteArray.java │ └── WizardUpload.java ├── VS2022 │ ├── TestSigCapt │ │ └── TestSigCapt │ │ │ ├── .vs │ │ │ └── TestSigCapt │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache │ │ │ │ ├── FileContentIndex │ │ │ │ ├── a18fda9c-c433-4cce-b5c7-0774e71a6f05.vsidx │ │ │ │ ├── ec0d33e0-1fbf-410a-ac04-64f622b5f871.vsidx │ │ │ │ └── read.lock │ │ │ │ ├── v15 │ │ │ │ ├── .suo │ │ │ │ └── Server │ │ │ │ │ └── sqlite3 │ │ │ │ │ ├── db.lock │ │ │ │ │ ├── storage.ide │ │ │ │ │ ├── storage.ide-shm │ │ │ │ │ └── storage.ide-wal │ │ │ │ ├── v16 │ │ │ │ └── .suo │ │ │ │ └── v17 │ │ │ │ └── .suo │ │ │ ├── ReadMe.txt │ │ │ ├── TestSigCapt.sln │ │ │ ├── TestSigCapt.suo │ │ │ └── TestSigCapt │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── TestSigCapt.Designer.cs │ │ │ ├── TestSigCapt.cs │ │ │ ├── TestSigCapt.csproj │ │ │ └── TestSigCapt.resx │ ├── TestSigCapt_WPF │ │ ├── .vs │ │ │ └── TestSigCapt_WPF │ │ │ │ ├── FileContentIndex │ │ │ │ ├── 3232274b-2ec0-47ff-8da6-d2e3ce4e3187.vsidx │ │ │ │ ├── 60cc6cca-e0f1-478e-a733-cdea12608902.vsidx │ │ │ │ └── read.lock │ │ │ │ ├── v16 │ │ │ │ └── .suo │ │ │ │ └── v17 │ │ │ │ └── .suo │ │ ├── TestSigCapt_WPF.sln │ │ └── TestSigCapt_WPF │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── TestSigCapt_WPF.csproj │ │ │ └── sig1.png │ ├── TestWizCapt_WPF │ │ ├── .vs │ │ │ └── TestWizCapt_WPF │ │ │ │ ├── FileContentIndex │ │ │ │ ├── 206c3f15-99bd-489a-9e1d-975f508f054e.vsidx │ │ │ │ ├── e17be2d8-170f-45f6-8827-0fdf13d00e4b.vsidx │ │ │ │ └── read.lock │ │ │ │ ├── v16 │ │ │ │ └── .suo │ │ │ │ └── v17 │ │ │ │ └── .suo │ │ ├── TestWizCapt_WPF.sln │ │ └── TestWizCapt_WPF │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ └── TestWizCapt_WPF.csproj │ └── TestWizSigCapt │ │ ├── .vs │ │ └── TestWizSigCapt │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache │ │ │ ├── FileContentIndex │ │ │ ├── 24545ba0-8066-42bd-857a-2b681623434e.vsidx │ │ │ ├── de7dcc5c-ad49-431f-905f-0c65f27d2554.vsidx │ │ │ └── read.lock │ │ │ ├── v14 │ │ │ └── .suo │ │ │ ├── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ │ └── sqlite3 │ │ │ │ ├── db.lock │ │ │ │ ├── storage.ide │ │ │ │ ├── storage.ide-shm │ │ │ │ └── storage.ide-wal │ │ │ ├── v16 │ │ │ └── .suo │ │ │ └── v17 │ │ │ └── .suo │ │ ├── ReadMe.txt │ │ ├── TestWizSigCapt.sln │ │ ├── TestWizSigCapt.suo │ │ └── TestWizSigCapt │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── TestWizSigCapt.Designer.cs │ │ ├── TestWizSigCapt.cs │ │ ├── TestWizSigCapt.csproj │ │ ├── TestWizSigCapt.resx │ │ └── app.config └── VS2022VB │ ├── TestSigCapt │ ├── .vs │ │ └── TestSigCapt │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache │ │ │ ├── FileContentIndex │ │ │ ├── 463c5c76-9fb3-4bfc-9787-4ad94388d288.vsidx │ │ │ ├── 4b3ac91e-db00-4537-9463-2d14c6e06a00.vsidx │ │ │ └── read.lock │ │ │ ├── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ │ └── sqlite3 │ │ │ │ ├── db.lock │ │ │ │ ├── storage.ide │ │ │ │ ├── storage.ide-shm │ │ │ │ └── storage.ide-wal │ │ │ ├── v16 │ │ │ └── .suo │ │ │ └── v17 │ │ │ └── .suo │ ├── ReadMe.txt │ ├── TestSigCapt.sln │ ├── TestSigCapt.suo │ └── TestSigCapt │ │ ├── App.config │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── TestSigCapt.Designer.vb │ │ ├── TestSigCapt.resx │ │ ├── TestSigCapt.vb │ │ └── TestSigCapt.vbproj │ └── TestWizSigCapt │ ├── .vs │ └── TestWizSigCapt │ │ ├── FileContentIndex │ │ ├── 7e866c75-b3f9-4202-b783-944263058b47.vsidx │ │ ├── e1ca8d23-abb7-4408-a5fc-24a86dd6228a.vsidx │ │ └── read.lock │ │ ├── v14 │ │ └── .suo │ │ ├── v15 │ │ ├── .suo │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ ├── v16 │ │ ├── .suo │ │ └── DesignTimeBuild │ │ │ └── .dtbcache │ │ └── v17 │ │ └── .suo │ ├── ReadMe.txt │ ├── TestWizSigCapt.sln │ ├── TestWizSigCapt.suo │ └── TestWizSigCapt │ ├── App.config │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── TestWizSigCapt.Designer.vb │ ├── TestWizSigCapt.resx │ ├── TestWizSigCapt.vb │ └── TestWizSigCapt.vbproj ├── Signature-Components-API.pdf ├── THIRDPARTY.md └── media ├── InstallerOptions.png ├── SigCapture.png ├── SigCaptureAPI.png ├── SigScope.png ├── SignPro.png ├── Signature-Library.png └── jsmith.png /Extra Samples/JScript/Run-JS.bat: -------------------------------------------------------------------------------- 1 | @REM run a .JS script via cscript 2 | @if [%1] == [] goto HELP 3 | @if "%ProgramFiles(x86)%32BIT"=="32BIT" ( 4 | cscript %1 %2 %3 %4 %5 %6 %7 5 | ) else ( 6 | C:\Windows\SysWOW64\cscript %1 %2 %3 %4 %5 %6 %7 7 | ) 8 | 9 | @goto END 10 | 11 | :HELP 12 | @echo. 13 | @echo Runs a .JS script file from cscript 14 | @echo Example: Run-JS.bat CaptureImage.js 15 | @echo. 16 | @echo Command line arguments are passed to the script 17 | @echo Example: Run-JS.bat CaptureImage.js filename.png 18 | 19 | :END 20 | -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_Binary/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_Binary/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | TestSigCapt 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_Binary/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 7 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 8 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 9 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 10 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 11 | org.eclipse.jdt.core.compiler.source=1.5 12 | -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_Binary/Run-TestSigCapt.bat: -------------------------------------------------------------------------------- 1 | @echo. 2 | @setlocal 3 | @set APP=TestSigCapt 4 | @set APP_SRC=src\com\wacom\sdk\sample\%APP%.java 5 | @set APP_BIN=bin\com\wacom\sdk\sample\%APP%.class 6 | @set APP_BIN_CLASS=com.wacom.sdk.sample.%APP% 7 | @REM Point to ProgramFiles(x86) on 64bit Windows 8 | @set PROGRAM_FILES=%ProgramFiles(x86)% 9 | @if "%ProgramFiles(x86)%32BIT"=="32BIT" ( 10 | @set PROGRAM_FILES=%ProgramFiles% 11 | ) 12 | @set JAR_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS\flsx.jar;%PROGRAM_FILES%\Common Files\WacomGSS\wgssLicenceJNI.jar;" 13 | @set DLL_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS" 14 | @if exist %APP_BIN% del %APP_BIN% 15 | @ 16 | @echo Compiling %APP% ... 17 | @if not exist bin md bin 18 | @javac -classpath bin;%JAR_PATHS% -d bin %APP_SRC% 19 | @echo. 20 | @if not exist %APP_BIN% goto END 21 | @echo Run %APP% ... 22 | @java -classpath bin;%JAR_PATHS% -Djava.library.path=%DLL_PATHS% %APP_BIN_CLASS% 23 | @goto END 24 | 25 | :END 26 | -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_Binary/lib/flsx.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/Java/TestSigCapt_Binary/lib/flsx.jar -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_Binary/lib/wgssLicenceJNI.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/Java/TestSigCapt_Binary/lib/wgssLicenceJNI.jar -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_HashCheck/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_HashCheck/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | TestSigCapt 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_HashCheck/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 7 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 8 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 9 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 10 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 11 | org.eclipse.jdt.core.compiler.source=1.5 12 | -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_HashCheck/classes/.data/Project1.cdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/Java/TestSigCapt_HashCheck/classes/.data/Project1.cdi -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_HashCheck/classes/com/wacom/sdk/sample/TestSigCapt$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/Java/TestSigCapt_HashCheck/classes/com/wacom/sdk/sample/TestSigCapt$1.class -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_HashCheck/classes/com/wacom/sdk/sample/TestSigCapt$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/Java/TestSigCapt_HashCheck/classes/com/wacom/sdk/sample/TestSigCapt$2.class -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_HashCheck/classes/com/wacom/sdk/sample/TestSigCapt.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/Java/TestSigCapt_HashCheck/classes/com/wacom/sdk/sample/TestSigCapt.class -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_HashCheck/lib/flsx.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/Java/TestSigCapt_HashCheck/lib/flsx.jar -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_HashCheck/lib/wgssLicenceJNI.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/Java/TestSigCapt_HashCheck/lib/wgssLicenceJNI.jar -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_HashCheck/public_html/WEB-INF/faces-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Extra Samples/Java/TestSigCapt_HashCheck/public_html/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | Faces Servlet 7 | javax.faces.webapp.FacesServlet 8 | 1 9 | 10 | 11 | Faces Servlet 12 | /faces/* 13 | 14 | 15 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/.vs/TestSigCapt/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/.vs/TestSigCapt/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/.vs/TestSigCapt/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/.vs/TestSigCapt/v15/.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/.vs/TestSigCapt/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/.vs/TestSigCapt/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/.vs/TestSigCapt/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/.vs/TestSigCapt/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/.vs/TestSigCapt/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/.vs/TestSigCapt/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/.vs/TestSigCapt/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/.vs/TestSigCapt/v16/.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | 7 | namespace TestSigCapt 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new TestSigCapt()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/Debug/Florentis.InteropFlSigCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/Debug/Florentis.InteropFlSigCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/Debug/Florentis.InteropFlSigCapt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/Debug/Florentis.InteropFlSigCapt.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/Debug/TestSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/Debug/TestSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/Debug/TestSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/Debug/TestSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/Debug/sig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/Debug/sig1.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/Debug/stdole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/Debug/stdole.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/x64/Debug/Florentis.InteropFlSigCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/x64/Debug/Florentis.InteropFlSigCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/x64/Debug/Florentis.InteropFlSigCapt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/x64/Debug/Florentis.InteropFlSigCapt.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/x64/Debug/TestSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/x64/Debug/TestSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/x64/Debug/TestSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/x64/Debug/TestSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/x64/Debug/TestSigCapt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/x64/Debug/TestSigCapt.zip -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/x64/Debug/stdole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/bin/x64/Debug/stdole.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")] 5 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.Properties.Resources.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.TestSigCapt.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.TestSigCapt.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.csproj.CopyComplete -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0c7819f628ff9515b8910346cf6a497724a75210 2 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x64/Debug/TestSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")] 5 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.Properties.Resources.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.TestSigCapt.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.TestSigCapt.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.CopyComplete -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f529026a9e4f7b5536b5e021e51c88db273ac730 2 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt-CheckInstall/TestSigCapt/obj/x86/Debug/TestSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/.vs/TestSigCapt/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/.vs/TestSigCapt/v16/.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestSigCapt", "TestSigCapt\TestSigCapt.csproj", "{44369E3F-FEB9-4C89-9516-FF2C9A912A3A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Debug|x86.ActiveCfg = Debug|x86 13 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Debug|x86.Build.0 = Debug|x86 14 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Release|x86.ActiveCfg = Release|x86 15 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt.v12.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace TestSigCapt 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new TestSigCapt()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/TestSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/TestSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/TestSigCapt.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/TestSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/TestSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/TestSigCapt.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/TestSigCapt.vshost.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/TestSigCapt.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/TestSigCapt.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/Thumbs.db -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/sig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/sig1.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/stdole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/bin/Debug/stdole.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")] 5 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.Properties.Resources.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.TestSigCapt.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.TestSigCapt.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.CopyComplete -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 347036481a722ef2e37eaee0b1d8ba343fd5e168 2 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCaptTranspBkgd/TestSigCapt/TestSigCapt/obj/x86/Debug/TestSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/.vs/TestSigCapt/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/.vs/TestSigCapt/v16/.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestSigCapt", "TestSigCapt\TestSigCapt.csproj", "{44369E3F-FEB9-4C89-9516-FF2C9A912A3A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Debug|x86.ActiveCfg = Debug|x86 13 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Debug|x86.Build.0 = Debug|x86 14 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Release|x86.ActiveCfg = Release|x86 15 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace TestSigCapt 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new TestSigCapt()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/Florentis.InteropFlSigCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/Florentis.InteropFlSigCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/Florentis.InteropFlSigCapt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/Florentis.InteropFlSigCapt.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/TestSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/TestSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/TestSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/TestSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/TestSigCapt.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/TestSigCapt.vshost.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/TestSigCapt.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/sig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/sig1.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/stdole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/bin/Debug/stdole.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")] 5 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.Properties.Resources.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.TestSigCapt.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.TestSigCapt.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.CopyComplete -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 347036481a722ef2e37eaee0b1d8ba343fd5e168 2 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_AutoSizing/TestSigCapt_AutoSizing/TestSigCapt/obj/x86/Debug/TestSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/.vs/TestSigCapt/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/.vs/TestSigCapt/v16/.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestSigCapt", "TestSigCapt\TestSigCapt.csproj", "{44369E3F-FEB9-4C89-9516-FF2C9A912A3A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Debug|x86.ActiveCfg = Debug|x86 13 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Debug|x86.Build.0 = Debug|x86 14 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Release|x86.ActiveCfg = Release|x86 15 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt.v12.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace TestSigCapt 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new TestSigCapt()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/Florentis.InteropFlSigCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/Florentis.InteropFlSigCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/Florentis.InteropFlSigCapt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/Florentis.InteropFlSigCapt.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/TestSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/TestSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/TestSigCapt.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/TestSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/TestSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/TestSigCapt.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/TestSigCapt.vshost.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/TestSigCapt.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/TestSigCapt.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/stdole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/bin/Debug/stdole.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")] 5 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.Properties.Resources.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.TestSigCapt.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.TestSigCapt.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.CopyComplete -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 347036481a722ef2e37eaee0b1d8ba343fd5e168 2 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestSigCapt_MemStream/TestSigCapt/obj/x86/Debug/TestSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/.vs/TestWizSigCapt/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/.vs/TestWizSigCapt/v16/.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestWizSigCapt", "TestWizSigCapt\TestWizSigCapt.csproj", "{3AEFD279-B73A-4EFB-B77B-86FC48A1661B}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Debug|x86.ActiveCfg = Debug|x86 13 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Debug|x86.Build.0 = Debug|x86 14 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Release|x86.ActiveCfg = Release|x86 15 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt.v12.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Windows.Forms; 9 | 10 | namespace TestWizSigCapt 11 | { 12 | public partial class Form1 : Form 13 | { 14 | public Form1() 15 | { 16 | InitializeComponent(); 17 | } 18 | 19 | private void button1_Click(object sender, EventArgs e) 20 | { 21 | using (TestWizSigCapt wiz = new TestWizSigCapt()) 22 | { 23 | wiz.ShowDialog(); 24 | } 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace TestWizSigCapt 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new TestWizSigCapt()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/Florentis.InteropAxFlSigCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/Florentis.InteropAxFlSigCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/Florentis.InteropAxFlWizCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/Florentis.InteropAxFlWizCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/Florentis.InteropFlSigCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/Florentis.InteropFlSigCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/Florentis.InteropFlSigCapt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/Florentis.InteropFlSigCapt.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/Florentis.InteropFlWizCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/Florentis.InteropFlWizCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/TestWizSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/TestWizSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/TestWizSigCapt.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/TestWizSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/TestWizSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/TestWizSigCapt.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/TestWizSigCapt.vshost.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/TestWizSigCapt.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/TestWizSigCapt.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/stdole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/bin/Debug/stdole.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")] 5 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.Form1.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.Properties.Resources.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.TestWizSigCapt.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.TestWizSigCapt.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csproj.CopyComplete -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 760e00ff68b325b65d7255329d7cc443fd39ab67 2 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/TestWizPinInput/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/.vs/TestWizSigCapt/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/.vs/TestWizSigCapt/v16/.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestWizSigCapt", "TestWizSigCapt\TestWizSigCapt.csproj", "{3AEFD279-B73A-4EFB-B77B-86FC48A1661B}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Debug|x86.ActiveCfg = Debug|x86 13 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Debug|x86.Build.0 = Debug|x86 14 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Release|x86.ActiveCfg = Release|x86 15 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt.v12.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Windows.Forms; 9 | 10 | namespace TestWizSigCapt 11 | { 12 | public partial class Form1 : Form 13 | { 14 | public Form1() 15 | { 16 | InitializeComponent(); 17 | } 18 | 19 | private void button1_Click(object sender, EventArgs e) 20 | { 21 | using (TestWizSigCapt wiz = new TestWizSigCapt()) 22 | { 23 | wiz.ShowDialog(); 24 | } 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace TestWizSigCapt 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/Florentis.InteropAxFlSigCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/Florentis.InteropAxFlSigCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/Florentis.InteropAxFlWizCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/Florentis.InteropAxFlWizCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/TestWizSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/TestWizSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/TestWizSigCapt.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/TestWizSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/TestWizSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/TestWizSigCapt.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/TestWizSigCapt.vshost.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/TestWizSigCapt.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/TestWizSigCapt.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/stdole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/bin/Debug/stdole.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")] 5 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.Form1.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.Properties.Resources.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.TestWizSigCapt.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.TestWizSigCapt.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csproj.CopyComplete -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 760e00ff68b325b65d7255329d7cc443fd39ab67 2 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizSigCaptRetry/TestWizSigCapt/obj/x86/Debug/TestWizSigCapt.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/v14/.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/v15/.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/.vs/WizardExtra/v16/.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WizardExtra", "WizardExtra\WizardExtra.csproj", "{3AEFD279-B73A-4EFB-B77B-86FC48A1661B}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Debug|x86.ActiveCfg = Debug|x86 13 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Debug|x86.Build.0 = Debug|x86 14 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Release|x86.ActiveCfg = Release|x86 15 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra.suo -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WizardExtra 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new WizardExtra()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/Florentis.InteropAxFlSigCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/Florentis.InteropAxFlSigCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/Florentis.InteropAxFlWizCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/Florentis.InteropAxFlWizCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/WizardExtra.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/WizardExtra.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/WizardExtra.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/WizardExtra.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/WizardExtra.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/sig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/sig1.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/stdole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Debug/stdole.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release.zip -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/Florentis.InteropAxFlSigCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/Florentis.InteropAxFlSigCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/Florentis.InteropAxFlWizCOM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/Florentis.InteropAxFlWizCOM.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/WizardExtra.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/WizardExtra.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/WizardExtra.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/WizardExtra.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/WizardExtra.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Accept300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Accept300.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Accept430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Accept430.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Accept500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Accept500.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Accept530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Accept530.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Cancel300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Cancel300.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Cancel430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Cancel430.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Cancel500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Cancel500.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Cancel530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Cancel530.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Clear300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Clear300.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Clear430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Clear430.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Clear500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Clear500.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Clear530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Clear530.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/LeftArrow300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/LeftArrow300.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/LeftArrow430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/LeftArrow430.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/LeftArrow500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/LeftArrow500.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/LeftArrow530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/LeftArrow530.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next300.jpg -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next300.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next430.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next430.jpg -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next430.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next500.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next500.safe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next500.safe.jpg -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next530.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next530.jpg -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/Next530.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/RightArrow300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/RightArrow300.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/RightArrow430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/RightArrow430.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/RightArrow500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/RightArrow500.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/RightArrow530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/images/RightArrow530.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/sig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/sig1.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/stdole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/bin/Release/stdole.dll -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")] 5 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.Properties.Resources.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.Step1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.Step1.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.WizardExtra.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.WizardExtra.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.csproj.CopyComplete -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 19cb2f845cc856ac0b14c3c63ca54510fe965ff5 2 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Debug/WizardExtra.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")] 5 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/TestSigCapt_WPF.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/TestSigCapt_WPF.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.Properties.Resources.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.Step1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.Step1.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.WizardExtra.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.WizardExtra.resources -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.csproj.CopyComplete -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 41d64ea4eec87e4bad4f2d85c222ae3a5c9807b3 2 | -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.exe -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/WizardExtra/obj/x86/Release/WizardExtra.pdb -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Accept300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Accept300.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Accept430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Accept430.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Accept500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Accept500.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Accept530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Accept530.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Cancel300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Cancel300.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Cancel430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Cancel430.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Cancel500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Cancel500.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Cancel530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Cancel530.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Clear300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Clear300.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Clear430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Clear430.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Clear500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Clear500.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Clear530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Clear530.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/LeftArrow300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/LeftArrow300.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/LeftArrow430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/LeftArrow430.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/LeftArrow500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/LeftArrow500.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/LeftArrow530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/LeftArrow530.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Next300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Next300.jpg -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Next300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Next300.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Next430.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Next430.jpg -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Next430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Next430.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Next500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Next500.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Next500.safe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Next500.safe.jpg -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Next530.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Next530.jpg -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/Next530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/Next530.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/RightArrow300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/RightArrow300.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/RightArrow430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/RightArrow430.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/RightArrow500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/RightArrow500.png -------------------------------------------------------------------------------- /Extra Samples/VS2010/WizardExtra/images/RightArrow530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Extra Samples/VS2010/WizardExtra/images/RightArrow530.png -------------------------------------------------------------------------------- /Samples/Cpp/TestSigCaptCPP/TestSigCapt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Cpp/TestSigCaptCPP/TestSigCapt.rc -------------------------------------------------------------------------------- /Samples/Cpp/TestSigCaptCPP/TestSigCaptCPP.sln: -------------------------------------------------------------------------------- 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("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestSigCaptCPP", "TestSigCaptCPP.vcxproj", "{5A6A37EC-53EF-414A-AEAE-EB4F0B59085A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Win32 = Debug|Win32 11 | Release|Win32 = Release|Win32 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {5A6A37EC-53EF-414A-AEAE-EB4F0B59085A}.Debug|Win32.ActiveCfg = Debug|Win32 15 | {5A6A37EC-53EF-414A-AEAE-EB4F0B59085A}.Debug|Win32.Build.0 = Debug|Win32 16 | {5A6A37EC-53EF-414A-AEAE-EB4F0B59085A}.Release|Win32.ActiveCfg = Release|Win32 17 | {5A6A37EC-53EF-414A-AEAE-EB4F0B59085A}.Release|Win32.Build.0 = Release|Win32 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Samples/Cpp/TestSigCaptCPP/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Cpp/TestSigCaptCPP/resource.h -------------------------------------------------------------------------------- /Samples/Cpp/TestWizSigCaptCPP/TestWizSigCapt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Cpp/TestWizSigCaptCPP/TestWizSigCapt.rc -------------------------------------------------------------------------------- /Samples/Cpp/TestWizSigCaptCPP/TestWizSigCaptCPP.sln: -------------------------------------------------------------------------------- 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("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestWizSigCaptCPP", "TestWizSigCaptCPP.vcxproj", "{5A6A37EC-53EF-414A-AEAE-EB4F0B59085A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Win32 = Debug|Win32 11 | Release|Win32 = Release|Win32 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {5A6A37EC-53EF-414A-AEAE-EB4F0B59085A}.Debug|Win32.ActiveCfg = Debug|Win32 15 | {5A6A37EC-53EF-414A-AEAE-EB4F0B59085A}.Debug|Win32.Build.0 = Debug|Win32 16 | {5A6A37EC-53EF-414A-AEAE-EB4F0B59085A}.Release|Win32.ActiveCfg = Release|Win32 17 | {5A6A37EC-53EF-414A-AEAE-EB4F0B59085A}.Release|Win32.Build.0 = Release|Win32 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Samples/Cpp/TestWizSigCaptCPP/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Cpp/TestWizSigCaptCPP/resource.h -------------------------------------------------------------------------------- /Samples/Delphi/TestSigCapt/FLSIGCTLLib_TLB.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Delphi/TestSigCapt/FLSIGCTLLib_TLB.dcr -------------------------------------------------------------------------------- /Samples/Delphi/TestSigCapt/TestSigCapt.dpr: -------------------------------------------------------------------------------- 1 | program TestSigCapt; 2 | 3 | uses 4 | Vcl.Forms, 5 | TestSigCaptForm in 'TestSigCaptForm.pas' {Form1}; 6 | 7 | {$R *.res} 8 | 9 | begin 10 | Application.Initialize; 11 | Application.MainFormOnTaskbar := True; 12 | Application.CreateForm(TForm1, Form1); 13 | Application.Run; 14 | end. 15 | -------------------------------------------------------------------------------- /Samples/Delphi/TestSigCapt/TestSigCapt.dproj.local: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 2012/08/23 12:06:22.000.361,=C:\Users\jgarrido\Documents\RAD Studio\Projects\Unit1.pas 5 | 2012/08/23 12:06:46.000.643,C:\Users\jgarrido\Documents\RAD Studio\Projects\Unit1.pas=X:\delphi\TestSigCapt\TestSigCaptForm.pas 6 | 2012/08/23 12:06:46.000.643,C:\Users\jgarrido\Documents\RAD Studio\Projects\Unit1.dfm=X:\delphi\TestSigCapt\TestSigCaptForm.dfm 7 | 2012/08/23 12:06:50.000.418,C:\Users\jgarrido\Documents\RAD Studio\Projects\Project1.dproj=X:\delphi\TestSigCapt\TestSigCapt.dproj 8 | 9 | 10 | -------------------------------------------------------------------------------- /Samples/Delphi/TestSigCapt/TestSigCapt.identcache: -------------------------------------------------------------------------------- 1 | )X:\delphi\TestSigCapt\TestSigCaptForm.pas%X:\delphi\TestSigCapt\TestSigCapt.dpr -------------------------------------------------------------------------------- /Samples/Delphi/TestSigCapt/TestSigCapt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Delphi/TestSigCapt/TestSigCapt.res -------------------------------------------------------------------------------- /Samples/Delphi/TestSigCapt/TestSigCaptForm.dfm: -------------------------------------------------------------------------------- 1 | object Form1: TForm1 2 | Left = 0 3 | Top = 0 4 | BorderStyle = bsDialog 5 | Caption = 'TestSigCapt' 6 | ClientHeight = 351 7 | ClientWidth = 481 8 | Color = clBtnFace 9 | Font.Charset = DEFAULT_CHARSET 10 | Font.Color = clWindowText 11 | Font.Height = -11 12 | Font.Name = 'Tahoma' 13 | Font.Style = [] 14 | OldCreateOrder = False 15 | OnCreate = FormCreate 16 | PixelsPerInch = 96 17 | TextHeight = 13 18 | object Image1: TImage 19 | Left = 16 20 | Top = 16 21 | Width = 200 22 | Height = 150 23 | end 24 | object Memo1: TMemo 25 | Left = 16 26 | Top = 192 27 | Width = 433 28 | Height = 129 29 | ReadOnly = True 30 | TabOrder = 0 31 | end 32 | object btnSign: TButton 33 | Left = 272 34 | Top = 64 35 | Width = 113 36 | Height = 57 37 | Caption = 'Sign' 38 | TabOrder = 1 39 | OnClick = btnSignClick 40 | end 41 | end 42 | -------------------------------------------------------------------------------- /Samples/Delphi/TestSigCaptHash/FLSIGCTLLib_TLB.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Delphi/TestSigCaptHash/FLSIGCTLLib_TLB.dcr -------------------------------------------------------------------------------- /Samples/Delphi/TestSigCaptHash/TestSigCapt.dpr: -------------------------------------------------------------------------------- 1 | program TestSigCapt; 2 | 3 | uses 4 | Vcl.Forms, 5 | TestSigCaptForm in 'TestSigCaptForm.pas' {Form1}; 6 | 7 | {$R *.res} 8 | 9 | begin 10 | Application.Initialize; 11 | Application.MainFormOnTaskbar := True; 12 | Application.CreateForm(TForm1, Form1); 13 | Application.Run; 14 | end. 15 | -------------------------------------------------------------------------------- /Samples/Delphi/TestSigCaptHash/TestSigCapt.dproj.local: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 2012/08/23 12:06:22.000.361,=C:\Users\jgarrido\Documents\RAD Studio\Projects\Unit1.pas 5 | 2012/08/23 12:06:46.000.643,C:\Users\jgarrido\Documents\RAD Studio\Projects\Unit1.pas=X:\delphi\TestSigCapt\TestSigCaptForm.pas 6 | 2012/08/23 12:06:46.000.643,C:\Users\jgarrido\Documents\RAD Studio\Projects\Unit1.dfm=X:\delphi\TestSigCapt\TestSigCaptForm.dfm 7 | 2012/08/23 12:06:50.000.418,C:\Users\jgarrido\Documents\RAD Studio\Projects\Project1.dproj=X:\delphi\TestSigCapt\TestSigCapt.dproj 8 | 9 | 10 | -------------------------------------------------------------------------------- /Samples/Delphi/TestSigCaptHash/TestSigCapt.identcache: -------------------------------------------------------------------------------- 1 | CC:\Signature-SDK-Samples\Delphi\TestSigCaptHash\TestSigCaptForm.pas?C:\Signature-SDK-Samples\Delphi\TestSigCaptHash\TestSigCapt.dpr -------------------------------------------------------------------------------- /Samples/Delphi/TestSigCaptHash/TestSigCapt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Delphi/TestSigCaptHash/TestSigCapt.res -------------------------------------------------------------------------------- /Samples/Delphi/TestWizSigCapt/FLSIGCTLLib_TLB.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Delphi/TestWizSigCapt/FLSIGCTLLib_TLB.dcr -------------------------------------------------------------------------------- /Samples/Delphi/TestWizSigCapt/FlWizCOMLib_TLB.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Delphi/TestWizSigCapt/FlWizCOMLib_TLB.dcr -------------------------------------------------------------------------------- /Samples/Delphi/TestWizSigCapt/TestWizSigCapt.dpr: -------------------------------------------------------------------------------- 1 | program TestWizSigCapt; 2 | 3 | uses 4 | Forms, 5 | TestWizSigCaptForm in 'TestWizSigCaptForm.pas' {Form1}, 6 | FlWizCOMLib_TLB in 'c:\dev\sdk2 examples\delphi\DemoButtons\FlWizCOMLib_TLB.pas', 7 | FLSIGCTLLib_TLB in 'c:\dev\sdk2 examples\delphi\DemoButtons\FLSIGCTLLib_TLB.pas'; 8 | 9 | {$R *.res} 10 | 11 | begin 12 | Application.Initialize; 13 | //Application.MainFormOnTaskbar := True; 14 | Application.CreateForm(TForm1, Form1); 15 | Application.Run; 16 | end. 17 | -------------------------------------------------------------------------------- /Samples/Delphi/TestWizSigCapt/TestWizSigCapt.dproj.local: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 2012/08/23 12:31:25.086,=C:\Users\jgarrido\Documents\RAD Studio\Projects\Unit1.pas 5 | 2012/08/23 12:31:49.048,X:\delphi\TestWizSigCapt\TestWizSigCaptForm.dfm=C:\Users\jgarrido\Documents\RAD Studio\Projects\Unit1.dfm 6 | 2012/08/23 12:31:49.048,X:\delphi\TestWizSigCapt\TestWizSigCaptForm.pas=C:\Users\jgarrido\Documents\RAD Studio\Projects\Unit1.pas 7 | 2012/08/23 12:31:53.749,X:\delphi\TestWizSigCapt\TestWizSigCapt.dproj=C:\Users\jgarrido\Documents\RAD Studio\Projects\Project1.dproj 8 | 9 | 10 | -------------------------------------------------------------------------------- /Samples/Delphi/TestWizSigCapt/TestWizSigCapt.identcache: -------------------------------------------------------------------------------- 1 | +X:\delphi\TestWizSigCapt\TestWizSigCapt.dpr/X:\delphi\TestWizSigCapt\TestWizSigCaptForm.pas -------------------------------------------------------------------------------- /Samples/Delphi/TestWizSigCapt/TestWizSigCapt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Delphi/TestWizSigCapt/TestWizSigCapt.res -------------------------------------------------------------------------------- /Samples/JScript/Readme.txt: -------------------------------------------------------------------------------- 1 | Running the javascript tests 2 | 3 | Install the Wacom Signature SDK 4 | 5 | Start a dos prompt 6 | C:\test\jscriptt> 7 | 8 | Run a 32bit test on Win7-32 or Win7-64: 9 | C:\Test\jscript>Run-JS.bat CaptureImage.js 10 | 11 | Run a 64bit test on Win7-64: 12 | C:\Test\jscript>Run-JS.x64.bat CaptureImage.js 13 | -------------------------------------------------------------------------------- /Samples/JScript/Run-JS.bat: -------------------------------------------------------------------------------- 1 | @REM run a .JS script via cscript 2 | @if [%1] == [] goto HELP 3 | @if "%ProgramFiles(x86)%32BIT"=="32BIT" ( 4 | cscript /nologo %* 5 | ) else ( 6 | C:\Windows\SysWOW64\cscript /nologo %* 7 | ) 8 | 9 | @goto END 10 | 11 | :HELP 12 | @echo. 13 | @echo Runs a .JS script file from cscript 14 | @echo Example: Run-JS.bat CaptureImage.js 15 | @echo. 16 | @echo Command line arguments are passed to the script 17 | @echo Example: Run-JS.bat CaptureImage.js filename.png 18 | 19 | :END 20 | -------------------------------------------------------------------------------- /Samples/JScript/Run-JS.x64.bat: -------------------------------------------------------------------------------- 1 | @REM run a .JS script via cscript 2 | @if [%1] == [] goto HELP 3 | 4 | cscript /nologo %* 5 | 6 | 7 | 8 | 9 | @goto END 10 | 11 | :HELP 12 | @echo. 13 | @echo Runs a .JS script file from cscript 14 | @echo Example: Run-JS.bat CaptureImage.js 15 | @echo. 16 | @echo Command line arguments are passed to the script 17 | @echo Example: Run-JS.bat CaptureImage.js filename.png 18 | 19 | :END 20 | -------------------------------------------------------------------------------- /Samples/JScript/STU/320x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/JScript/STU/320x200.png -------------------------------------------------------------------------------- /Samples/JScript/STU/396x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/JScript/STU/396x100.png -------------------------------------------------------------------------------- /Samples/JScript/STU/640x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/JScript/STU/640x480.png -------------------------------------------------------------------------------- /Samples/JScript/STU/800x480-530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/JScript/STU/800x480-530.png -------------------------------------------------------------------------------- /Samples/JScript/STU/800x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/JScript/STU/800x480.png -------------------------------------------------------------------------------- /Samples/JScript/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/JScript/Thumbs.db -------------------------------------------------------------------------------- /Samples/JScript/Versions.js: -------------------------------------------------------------------------------- 1 | /* 2 | Versions 3 | Report component versions. 4 | 5 | */ 6 | function print( txt ) { 7 | WScript.Echo(txt); 8 | } 9 | main(); 10 | function main() { 11 | try { 12 | print("Component versions:"); 13 | sigCtl = new ActiveXObject("Florentis.SigCtl"); 14 | print("DLL: flSigCtl.dll v" + sigCtl.GetProperty("Component_FileVersion")); 15 | sigCapt = new ActiveXObject("Florentis.DynamicCapture"); 16 | print("DLL: flSigCapt.dll v" + sigCapt.GetProperty("Component_FileVersion")); 17 | wizCtl = new ActiveXObject("Florentis.WizCtl"); 18 | print("DLL: flWizCtl.dll v" + wizCtl.GetProperty("Component_FileVersion")); 19 | } 20 | catch (ex) { 21 | print("Exception: " + ex.message); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Samples/Java/320x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/320x200.png -------------------------------------------------------------------------------- /Samples/Java/396x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/396x100.png -------------------------------------------------------------------------------- /Samples/Java/640x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/640x480.png -------------------------------------------------------------------------------- /Samples/Java/800x480-530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/800x480-530.png -------------------------------------------------------------------------------- /Samples/Java/800x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/800x480.png -------------------------------------------------------------------------------- /Samples/Java/Readme.txt: -------------------------------------------------------------------------------- 1 | Running the java tests 2 | 3 | Install the JDK 4 | Install the Wacom Signature SDK 5 | 6 | Start a dos prompt 7 | C:\test\java>set path="\Program Files\Java\jdk1.6.0_30\bin";%path% 8 | 9 | For 32bit java on Win7-64: 10 | C:\test\java>set path="\Program Files (x86)\Java\jdk1.6.0_30\bin";%path% 11 | 12 | 13 | Run a 32bit test on Win7-32 or Win7-64: 14 | C:\Test\java>Run-Java.bat CaptureImage.java 15 | 16 | Run a 64bit test on Win7-64: 17 | C:\Test\java>Run-Java.x64.bat CaptureImage.java 18 | 19 | 20 | -------------------------------------------------------------------------------- /Samples/Java/TestSigCapt/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Samples/Java/TestSigCapt/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | TestSigCapt 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /Samples/Java/TestSigCapt/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 7 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 8 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 9 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 10 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 11 | org.eclipse.jdt.core.compiler.source=1.5 12 | -------------------------------------------------------------------------------- /Samples/Java/TestSigCapt/Run javaw-TestSigCapt.bat: -------------------------------------------------------------------------------- 1 | @echo. 2 | @setlocal 3 | @set APP=TestSigCapt 4 | @set APP_SRC=src\com\wacom\sdk\sample\%APP%.java 5 | @set APP_BIN=bin\com\wacom\sdk\sample\%APP%.class 6 | @set APP_BIN_CLASS=com.wacom.sdk.sample.%APP% 7 | @REM Point to ProgramFiles(x86) on 64bit Windows 8 | @set PROGRAM_FILES=%ProgramFiles(x86)% 9 | @if "%ProgramFiles(x86)%32BIT"=="32BIT" ( 10 | @set PROGRAM_FILES=%ProgramFiles% 11 | ) 12 | @set JAR_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS\flsx.jar;%PROGRAM_FILES%\Common Files\WacomGSS\wgssLicenceJNI.jar;" 13 | @set DLL_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS" 14 | @if exist %APP_BIN% del %APP_BIN% 15 | @ 16 | @echo Compiling %APP% ... 17 | @if not exist bin md bin 18 | @javac -classpath bin;%JAR_PATHS% -d bin %APP_SRC% 19 | @echo. 20 | @if not exist %APP_BIN% goto END 21 | @echo Run %APP% ... 22 | @javaw -classpath bin;%JAR_PATHS% -Djava.library.path=%DLL_PATHS% %APP_BIN_CLASS% 23 | @goto END 24 | 25 | :END 26 | -------------------------------------------------------------------------------- /Samples/Java/TestSigCapt/Run-TestSigCapt-x64.bat: -------------------------------------------------------------------------------- 1 | @echo. 2 | @setlocal 3 | @set APP=TestSigCapt 4 | @set APP_SRC=src\com\wacom\sdk\sample\%APP%.java 5 | @set APP_BIN=bin\com\wacom\sdk\sample\%APP%.class 6 | @set APP_BIN_CLASS=com.wacom.sdk.sample.%APP% 7 | @REM Point to ProgramFiles(x86) on 64bit Windows 8 | @set PROGRAM_FILES=%ProgramFiles% 9 | @set JAR_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS\flsx.jar;%PROGRAM_FILES%\Common Files\WacomGSS\wgssLicenceJNI.jar;" 10 | @set DLL_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS" 11 | @if exist %APP_BIN% del %APP_BIN% 12 | @ 13 | @echo Compiling %APP% ... 14 | @if not exist bin md bin 15 | @"C:\Program Files\Java\jdk-10.0.1\bin\javac" -classpath bin;%JAR_PATHS% -d bin %APP_SRC% 16 | @echo. 17 | @if not exist %APP_BIN% goto END 18 | @echo Run %APP% ... 19 | @"C:\Program Files\Java\jdk-10.0.1\bin\java" -classpath bin;%JAR_PATHS% -Djava.library.path=%DLL_PATHS% %APP_BIN_CLASS% 20 | @goto END 21 | 22 | :END 23 | -------------------------------------------------------------------------------- /Samples/Java/TestSigCapt/Run-TestSigCapt.bat: -------------------------------------------------------------------------------- 1 | @echo. 2 | @setlocal 3 | @set APP=TestSigCapt 4 | @set APP_SRC=src\com\wacom\sdk\sample\%APP%.java 5 | @set APP_BIN=bin\com\wacom\sdk\sample\%APP%.class 6 | @set APP_BIN_CLASS=com.wacom.sdk.sample.%APP% 7 | @REM Point to ProgramFiles(x86) on 64bit Windows 8 | @set PROGRAM_FILES=%ProgramFiles(x86)% 9 | @if "%ProgramFiles(x86)%32BIT"=="32BIT" ( 10 | @set PROGRAM_FILES=%ProgramFiles% 11 | ) 12 | @set JAR_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS\flsx.jar;%PROGRAM_FILES%\Common Files\WacomGSS\wgssLicenceJNI.jar;" 13 | @set DLL_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS" 14 | @if exist %APP_BIN% del %APP_BIN% 15 | @ 16 | @echo Compiling %APP% ... 17 | @if not exist bin md bin 18 | @"C:\Program Files\Java\jdk-10.0.1\bin\javac" -classpath bin;%JAR_PATHS% -d bin %APP_SRC% 19 | @echo. 20 | @if not exist %APP_BIN% goto END 21 | @echo Run %APP% ... 22 | @"C:\Program Files\Java\jdk-10.0.1\bin\java" -classpath bin;%JAR_PATHS% -Djava.library.path=%DLL_PATHS% %APP_BIN_CLASS% 23 | @goto END 24 | 25 | :END 26 | -------------------------------------------------------------------------------- /Samples/Java/TestSigCapt/bin/com/wacom/sdk/sample/TestSigCapt$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestSigCapt/bin/com/wacom/sdk/sample/TestSigCapt$1.class -------------------------------------------------------------------------------- /Samples/Java/TestSigCapt/bin/com/wacom/sdk/sample/TestSigCapt$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestSigCapt/bin/com/wacom/sdk/sample/TestSigCapt$2.class -------------------------------------------------------------------------------- /Samples/Java/TestSigCapt/bin/com/wacom/sdk/sample/TestSigCapt.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestSigCapt/bin/com/wacom/sdk/sample/TestSigCapt.class -------------------------------------------------------------------------------- /Samples/Java/TestSigCapt/lib/flsx.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestSigCapt/lib/flsx.jar -------------------------------------------------------------------------------- /Samples/Java/TestSigCapt/lib/wgssLicenceJNI.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestSigCapt/lib/wgssLicenceJNI.jar -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | TestWizSigCapt 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 7 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 8 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 9 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 10 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 11 | org.eclipse.jdt.core.compiler.source=1.5 12 | -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/Run-TestWizSigCapt-x64.bat: -------------------------------------------------------------------------------- 1 | @echo. 2 | @setlocal 3 | @set APP=TestWizSigCapt 4 | @set APP_SRC=src\com\wacom\sdk\sample\%APP%.java 5 | @set APP_BIN=bin\com\wacom\sdk\sample\%APP%.class 6 | @set APP_BIN_CLASS=com.wacom.sdk.sample.%APP% 7 | @REM Point to ProgramFiles(x86) on 64bit Windows 8 | @set PROGRAM_FILES=%ProgramFiles% 9 | @set JAR_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS\flsx.jar;%PROGRAM_FILES%\Common Files\WacomGSS\wgssLicenceJNI.jar;" 10 | @set DLL_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS" 11 | @if exist %APP_BIN% del %APP_BIN% 12 | @ 13 | @echo Compiling %APP% ... 14 | @if not exist bin md bin 15 | @"C:\Program Files\java\jdk-10.0.1\bin\javac" -classpath bin;%JAR_PATHS% -d bin %APP_SRC% 16 | @echo. 17 | @if not exist %APP_BIN% goto END 18 | @echo Run %APP% ... 19 | @"C:\Program Files\java\jdk-10.0.1\bin\java" -classpath bin;%JAR_PATHS% -Djava.library.path=%DLL_PATHS% %APP_BIN_CLASS% 20 | @goto END 21 | 22 | :END 23 | -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/Run-TestWizSigCapt.bat: -------------------------------------------------------------------------------- 1 | @echo. 2 | @setlocal 3 | @set APP=TestWizSigCapt 4 | @set APP_SRC=src\com\wacom\sdk\sample\%APP%.java 5 | @set APP_BIN=bin\com\wacom\sdk\sample\%APP%.class 6 | @set APP_BIN_CLASS=com.wacom.sdk.sample.%APP% 7 | @REM Point to ProgramFiles(x86) on 64bit Windows 8 | @set PROGRAM_FILES=%ProgramFiles(x86)% 9 | @if "%ProgramFiles(x86)%32BIT"=="32BIT" ( 10 | @set PROGRAM_FILES=%ProgramFiles% 11 | ) 12 | @set JAR_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS\flsx.jar;%PROGRAM_FILES%\Common Files\WacomGSS\wgssLicenceJNI.jar;" 13 | @set DLL_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS" 14 | @if exist %APP_BIN% del %APP_BIN% 15 | @ 16 | @echo Compiling %APP% ... 17 | @if not exist bin md bin 18 | @javac -classpath bin;%JAR_PATHS% -d bin %APP_SRC% 19 | @echo. 20 | @if not exist %APP_BIN% goto END 21 | @echo Run %APP% ... 22 | @java -classpath bin;%JAR_PATHS% -Djava.library.path=%DLL_PATHS% %APP_BIN_CLASS% 23 | @goto END 24 | 25 | :END 26 | -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/bin/com/wacom/sdk/sample/TestWizSigCapt$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCapt/bin/com/wacom/sdk/sample/TestWizSigCapt$1.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/bin/com/wacom/sdk/sample/TestWizSigCapt$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCapt/bin/com/wacom/sdk/sample/TestWizSigCapt$2.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/bin/com/wacom/sdk/sample/TestWizSigCapt$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCapt/bin/com/wacom/sdk/sample/TestWizSigCapt$3.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/bin/com/wacom/sdk/sample/TestWizSigCapt$MyWizardScript$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCapt/bin/com/wacom/sdk/sample/TestWizSigCapt$MyWizardScript$1.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/bin/com/wacom/sdk/sample/TestWizSigCapt$MyWizardScript.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCapt/bin/com/wacom/sdk/sample/TestWizSigCapt$MyWizardScript.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/bin/com/wacom/sdk/sample/TestWizSigCapt.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCapt/bin/com/wacom/sdk/sample/TestWizSigCapt.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/lib/flsx.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCapt/lib/flsx.jar -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCapt/lib/wgssLicenceJNI.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCapt/lib/wgssLicenceJNI.jar -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | TestWizSigCaptSimulate 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 7 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 8 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 9 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 10 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 11 | org.eclipse.jdt.core.compiler.source=1.5 12 | -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/Run-TestWizSigCaptSimulate-x64.bat: -------------------------------------------------------------------------------- 1 | @echo. 2 | @setlocal 3 | @set APP=TestWizSigCaptSimulate 4 | @set APP_SRC=src\com\wacom\sdk\sample\%APP%.java 5 | @set APP_BIN=bin\com\wacom\sdk\sample\%APP%.class 6 | @set APP_BIN_CLASS=com.wacom.sdk.sample.%APP% 7 | @REM Point to ProgramFiles(x86) on 64bit Windows 8 | @set PROGRAM_FILES=%ProgramFiles% 9 | @set JAR_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS\flsx.jar;%PROGRAM_FILES%\Common Files\WacomGSS\wgssLicenceJNI.jar;" 10 | @set DLL_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS" 11 | @if exist %APP_BIN% del %APP_BIN% 12 | @ 13 | @echo Compiling %APP% ... 14 | @if not exist bin md bin 15 | @"C:\Program Files\java\jdk-10.0.1\bin\javac" -classpath bin;%JAR_PATHS% -d bin %APP_SRC% 16 | @echo. 17 | @if not exist %APP_BIN% goto END 18 | @echo Run %APP% ... 19 | @"C:\Program Files\java\jdk-10.0.1\bin\java" -classpath bin;%JAR_PATHS% -Djava.library.path=%DLL_PATHS% %APP_BIN_CLASS% 20 | @goto END 21 | 22 | :END 23 | -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/Run-TestWizSigCaptSimulate.bat: -------------------------------------------------------------------------------- 1 | @echo. 2 | @setlocal 3 | @set APP=TestWizSigCaptSimulate 4 | @set APP_SRC=src\com\wacom\sdk\sample\%APP%.java 5 | @set APP_BIN=bin\com\wacom\sdk\sample\%APP%.class 6 | @set APP_BIN_CLASS=com.wacom.sdk.sample.%APP% 7 | @REM Point to ProgramFiles(x86) on 64bit Windows 8 | @set PROGRAM_FILES=%ProgramFiles(x86)% 9 | @if "%ProgramFiles(x86)%32BIT"=="32BIT" ( 10 | @set PROGRAM_FILES=%ProgramFiles% 11 | ) 12 | @set JAR_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS\flsx.jar;%PROGRAM_FILES%\Common Files\WacomGSS\wgssLicenceJNI.jar;" 13 | @set DLL_PATHS="%PROGRAM_FILES%\Common Files\WacomGSS" 14 | @if exist %APP_BIN% del %APP_BIN% 15 | @ 16 | @echo Compiling %APP% ... 17 | @if not exist bin md bin 18 | @javac -classpath bin;%JAR_PATHS% -d bin %APP_SRC% 19 | @echo. 20 | @if not exist %APP_BIN% goto END 21 | @echo Run %APP% ... 22 | @java -classpath bin;%JAR_PATHS% -Djava.library.path=%DLL_PATHS% %APP_BIN_CLASS% 23 | @goto END 24 | 25 | :END 26 | -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$1.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$10.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$11.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$2$1.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$2.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$3.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$4.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$5.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$6.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$7.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$8.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$9.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$STATE.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate$STATE.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/bin/com/wacom/sdk/sample/TestWizSigCaptSimulate.class -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/lib/flsx.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/lib/flsx.jar -------------------------------------------------------------------------------- /Samples/Java/TestWizSigCaptSimulate/lib/wgssLicenceJNI.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/Java/TestWizSigCaptSimulate/lib/wgssLicenceJNI.jar -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/FileContentIndex/a18fda9c-c433-4cce-b5c7-0774e71a6f05.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/FileContentIndex/a18fda9c-c433-4cce-b5c7-0774e71a6f05.vsidx -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/FileContentIndex/ec0d33e0-1fbf-410a-ac04-64f622b5f871.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/FileContentIndex/ec0d33e0-1fbf-410a-ac04-64f622b5f871.vsidx -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/FileContentIndex/read.lock -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/v15/.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/v16/.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt/TestSigCapt/.vs/TestSigCapt/v17/.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/TestSigCapt.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestSigCapt", "TestSigCapt\TestSigCapt.csproj", "{44369E3F-FEB9-4C89-9516-FF2C9A912A3A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Debug|x86.ActiveCfg = Debug|x86 13 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Debug|x86.Build.0 = Debug|x86 14 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Release|x86.ActiveCfg = Release|x86 15 | {44369E3F-FEB9-4C89-9516-FF2C9A912A3A}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/TestSigCapt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt/TestSigCapt/TestSigCapt.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/TestSigCapt/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace TestSigCapt 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new TestSigCapt()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt/TestSigCapt/TestSigCapt/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt_WPF/.vs/TestSigCapt_WPF/FileContentIndex/3232274b-2ec0-47ff-8da6-d2e3ce4e3187.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt_WPF/.vs/TestSigCapt_WPF/FileContentIndex/3232274b-2ec0-47ff-8da6-d2e3ce4e3187.vsidx -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt_WPF/.vs/TestSigCapt_WPF/FileContentIndex/60cc6cca-e0f1-478e-a733-cdea12608902.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt_WPF/.vs/TestSigCapt_WPF/FileContentIndex/60cc6cca-e0f1-478e-a733-cdea12608902.vsidx -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt_WPF/.vs/TestSigCapt_WPF/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt_WPF/.vs/TestSigCapt_WPF/FileContentIndex/read.lock -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt_WPF/.vs/TestSigCapt_WPF/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt_WPF/.vs/TestSigCapt_WPF/v16/.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt_WPF/.vs/TestSigCapt_WPF/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt_WPF/.vs/TestSigCapt_WPF/v17/.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt_WPF/TestSigCapt_WPF/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt_WPF/TestSigCapt_WPF/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt_WPF/TestSigCapt_WPF/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace TestSigCapt_WPF 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt_WPF/TestSigCapt_WPF/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Samples/VS2022/TestSigCapt_WPF/TestSigCapt_WPF/sig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestSigCapt_WPF/TestSigCapt_WPF/sig1.png -------------------------------------------------------------------------------- /Samples/VS2022/TestWizCapt_WPF/.vs/TestWizCapt_WPF/FileContentIndex/206c3f15-99bd-489a-9e1d-975f508f054e.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizCapt_WPF/.vs/TestWizCapt_WPF/FileContentIndex/206c3f15-99bd-489a-9e1d-975f508f054e.vsidx -------------------------------------------------------------------------------- /Samples/VS2022/TestWizCapt_WPF/.vs/TestWizCapt_WPF/FileContentIndex/e17be2d8-170f-45f6-8827-0fdf13d00e4b.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizCapt_WPF/.vs/TestWizCapt_WPF/FileContentIndex/e17be2d8-170f-45f6-8827-0fdf13d00e4b.vsidx -------------------------------------------------------------------------------- /Samples/VS2022/TestWizCapt_WPF/.vs/TestWizCapt_WPF/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizCapt_WPF/.vs/TestWizCapt_WPF/FileContentIndex/read.lock -------------------------------------------------------------------------------- /Samples/VS2022/TestWizCapt_WPF/.vs/TestWizCapt_WPF/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizCapt_WPF/.vs/TestWizCapt_WPF/v16/.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestWizCapt_WPF/.vs/TestWizCapt_WPF/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizCapt_WPF/.vs/TestWizCapt_WPF/v17/.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestWizCapt_WPF/TestWizCapt_WPF/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Samples/VS2022/TestWizCapt_WPF/TestWizCapt_WPF/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Samples/VS2022/TestWizCapt_WPF/TestWizCapt_WPF/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace TestWizCapt_WPF 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Samples/VS2022/TestWizCapt_WPF/TestWizCapt_WPF/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/FileContentIndex/24545ba0-8066-42bd-857a-2b681623434e.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/FileContentIndex/24545ba0-8066-42bd-857a-2b681623434e.vsidx -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/FileContentIndex/de7dcc5c-ad49-431f-905f-0c65f27d2554.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/FileContentIndex/de7dcc5c-ad49-431f-905f-0c65f27d2554.vsidx -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/FileContentIndex/read.lock -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v14/.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v15/.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v16/.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizSigCapt/.vs/TestWizSigCapt/v17/.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/TestWizSigCapt.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestWizSigCapt", "TestWizSigCapt\TestWizSigCapt.csproj", "{3AEFD279-B73A-4EFB-B77B-86FC48A1661B}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Debug|x86.ActiveCfg = Debug|x86 13 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Debug|x86.Build.0 = Debug|x86 14 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Release|x86.ActiveCfg = Release|x86 15 | {3AEFD279-B73A-4EFB-B77B-86FC48A1661B}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/TestWizSigCapt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022/TestWizSigCapt/TestWizSigCapt.suo -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/TestWizSigCapt/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace TestWizSigCapt 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new TestWizSigCapt()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/TestWizSigCapt/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Samples/VS2022/TestWizSigCapt/TestWizSigCapt/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/FileContentIndex/463c5c76-9fb3-4bfc-9787-4ad94388d288.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/FileContentIndex/463c5c76-9fb3-4bfc-9787-4ad94388d288.vsidx -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/FileContentIndex/4b3ac91e-db00-4537-9463-2d14c6e06a00.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/FileContentIndex/4b3ac91e-db00-4537-9463-2d14c6e06a00.vsidx -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/FileContentIndex/read.lock -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/v15/.suo -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/v16/.suo -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestSigCapt/.vs/TestSigCapt/v17/.suo -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/TestSigCapt.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "TestSigCapt", "TestSigCapt\TestSigCapt.vbproj", "{A0F18217-24BB-4F1D-99D1-2C12C371F73A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {A0F18217-24BB-4F1D-99D1-2C12C371F73A}.Debug|x86.ActiveCfg = Debug|x86 13 | {A0F18217-24BB-4F1D-99D1-2C12C371F73A}.Debug|x86.Build.0 = Debug|x86 14 | {A0F18217-24BB-4F1D-99D1-2C12C371F73A}.Release|x86.ActiveCfg = Release|x86 15 | {A0F18217-24BB-4F1D-99D1-2C12C371F73A}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/TestSigCapt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestSigCapt/TestSigCapt.suo -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/TestSigCapt/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/TestSigCapt/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | true 4 | VBTestSigCapt 5 | false 6 | 0 7 | true 8 | 0 9 | true 10 | -------------------------------------------------------------------------------- /Samples/VS2022VB/TestSigCapt/TestSigCapt/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/FileContentIndex/7e866c75-b3f9-4202-b783-944263058b47.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/FileContentIndex/7e866c75-b3f9-4202-b783-944263058b47.vsidx -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/FileContentIndex/e1ca8d23-abb7-4408-a5fc-24a86dd6228a.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/FileContentIndex/e1ca8d23-abb7-4408-a5fc-24a86dd6228a.vsidx -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/FileContentIndex/read.lock -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v14/.suo -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v15/.suo -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v16/.suo -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v16/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v16/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestWizSigCapt/.vs/TestWizSigCapt/v17/.suo -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/TestWizSigCapt.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "TestWizSigCapt", "TestWizSigCapt\TestWizSigCapt.vbproj", "{F5CD0F64-D66B-43B2-94D4-3B976B152B13}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {F5CD0F64-D66B-43B2-94D4-3B976B152B13}.Debug|x86.ActiveCfg = Debug|x86 13 | {F5CD0F64-D66B-43B2-94D4-3B976B152B13}.Debug|x86.Build.0 = Debug|x86 14 | {F5CD0F64-D66B-43B2-94D4-3B976B152B13}.Release|x86.ActiveCfg = Release|x86 15 | {F5CD0F64-D66B-43B2-94D4-3B976B152B13}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/TestWizSigCapt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Samples/VS2022VB/TestWizSigCapt/TestWizSigCapt.suo -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/TestWizSigCapt/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/TestWizSigCapt/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | true 4 | TestWizSigCapt 5 | false 6 | 0 7 | true 8 | 0 9 | true 10 | -------------------------------------------------------------------------------- /Samples/VS2022VB/TestWizSigCapt/TestWizSigCapt/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Signature-Components-API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/Signature-Components-API.pdf -------------------------------------------------------------------------------- /THIRDPARTY.md: -------------------------------------------------------------------------------- 1 | # Third Party Software and Licenses 2 | 3 | Below are terms, notices and disclaimers for third party software not part of the SDK but included in the sample code. 4 | 5 | * No third party libraries used 6 | -------------------------------------------------------------------------------- /media/InstallerOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/media/InstallerOptions.png -------------------------------------------------------------------------------- /media/SigCapture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/media/SigCapture.png -------------------------------------------------------------------------------- /media/SigCaptureAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/media/SigCaptureAPI.png -------------------------------------------------------------------------------- /media/SigScope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/media/SigScope.png -------------------------------------------------------------------------------- /media/SignPro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/media/SignPro.png -------------------------------------------------------------------------------- /media/Signature-Library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/media/Signature-Library.png -------------------------------------------------------------------------------- /media/jsmith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wacom-Developer/sdk-for-signature-windows/89f7b6368d45ea3428f551f57281685cacda648a/media/jsmith.png --------------------------------------------------------------------------------