|
Simply Zip code Address lookup - a new revelation in postcode address lookup software,
for your Bespoke Application using
the internet.
Simply
activate - enter Zip code - select address - and the software fills the appropriate information into your Bespoke Application or any
of your other favorite applications.
Thus reducing errors
and speeding up data entry.
Show
me a Demonstration with Bespoke Systems
|
|
Cost
Effective:
 |
Simply
Pay as you go |
 |
Most
cost effective system available |
 |
No expensive user
licenses needed |
 |
Remote
users/Laptops can use system |
|
|
Simple
Installation:
 |
Download and get
up and running in minutes |
 |
Easy to install on Network PC’s |
 |
Install on
Laptops for remote workers |
 |
Simple
integrations by either using keystrokes to write information
in to your application, or by using our COM
object. Example
code |
|
|
Interfaces with all top packages:
 |
Your
own web site: Add Zip code Lookup to your
own web pages |
 |
Microsoft
Packages: Word, Word,
Word |
 |
CRM
Packages: Goldmine, ACT, Maximiser, MS CRM,
plus others |
 |
Accounts
Software: Sage, Pegasus, Access Accounts, plus others |
 |
Bespoke
Software: Simple integration in Microsoft Access,
VB Applications, Any other language using COM Component |
All
applications are listed under "Interfaces with" menu on left-hand
menu
|
|
Always up to date:
 |
Zip code information:
Retrieved from our up to date Web server, the latest information at your finger tips.
No need to load updates every few months. |
|
|
|
How does it work?:
|
|
Simply install our Zip code
address lookup software, then either get the user to press [Windows]
+ [s] key to activate in the first line of the address, or use our
COM object to call the search window and extract the address from a
button in your application. Example
code
|
|
We also offer great
reseller margins, which can be applied for from the menu option on
the left-hand menu.
|
|
|
Demonstration
of Zip code Address Lookup for your Bespoke Application:
|

|
|

|
Tutorial
: Using COM Object |
 |
The above video shows Zip code
Lookup
Software integrated into a Bespoke Application. These
examples, in Microsoft Access and Excel, are included as part of the
installation. Press Alt+F11 to view the VB code, in
either of these applications.
|
Easy Integration:
|
 |
Simply download
application and install on network. Click
here to download
|
 |
Open MS Access
or MS Excel examples included in installation
|
 |
Add button to your Application, to
activate the Zip code Address search, using
the following code. VB.NET/Visual
Basic Zip code Address Search Code:
'Open Zip
code Address Search object to perform search
Dim LookupSoftware As Object
Set LookupSoftware = GetObject("", "COMAddress.Lookup")
With LookupSoftware
' US=Zip code search,UK=Postcode address Search
.SearchType = "US"
'To prime search box from your application
.SearchPrima = ""
'Set search window Title
.SearchTitle = "Search Example"
'Show Address Search window
If .SearchForCode() Then
'Fill in returned address data
Me.Company = .CompanyName
Me.Line1 = .Line1
Me.Line2 = .Line2
Me.Line3 = .Line3
Me.Town = .Town
Me.State = .CountyState
Me.Zipcode = .PostZipCode
Me.Country = .Country
Else
'Zip code Address Search cancelled
End If
End With
Set
LookupSoftware=nothing
COMAddress.Lookup is a COM
object, which in the above example is being used in VB, but the same
object could easily be used with VB.NET, Delphi, and another
language which allows you to create and use a COM object
|
|
The above code will call our standard address lookup desktop
application which is running in the background.
This has the advantage
that the address lookup search window can be used with other
applications which the user may be using.
|
|
|