Postcode and address finders - on Access

G

Guest

Help! I am trying to put an address finder (from postcodes - PAF) on to my
acess database. How do I go about this? Any suggestions?
 
J

John Nurick

To get reasonable performance you'll need to import the PAF into a
database table and index it on the postcode, if you haven't already done
so.

After that, most applications seem to have a textbox or combobox for the
user to enter the postcode. (If a combobox, use Allen Browne's technique
for dealing with comboboxes with large numbers of records in the
rowsource: you'll find it somewhere at www.allenbrowne.com.)

Once a postcode has been entered, the usual system is to use it in a
query to populate a listbox or combobox with all the addresses that
match the postcode. If the user finds the desired address in this list,
they click on it and then use this data (with maybe a further query to
return all the fields in the one record you're interested in) to
populate the address fields in your record.

If the desired address isn't in the list, take appropriate action: e.g.
allow the user to type it directly into the address fields and flag the
record for manual examination later.
 
B

Brian Wilson

female_gremlin said:
Help! I am trying to put an address finder (from postcodes - PAF) on to
my
acess database. How do I go about this? Any suggestions?


I relied on a third party solution for this. It was reasonably priced, the
customer was very pleased with the result and it was fairly stress-free:
http://www.afd.co.uk/
 
G

Guest

Brilliant, thanks for this I'll give it a go!

John Nurick said:
To get reasonable performance you'll need to import the PAF into a
database table and index it on the postcode, if you haven't already done
so.

After that, most applications seem to have a textbox or combobox for the
user to enter the postcode. (If a combobox, use Allen Browne's technique
for dealing with comboboxes with large numbers of records in the
rowsource: you'll find it somewhere at www.allenbrowne.com.)

Once a postcode has been entered, the usual system is to use it in a
query to populate a listbox or combobox with all the addresses that
match the postcode. If the user finds the desired address in this list,
they click on it and then use this data (with maybe a further query to
return all the fields in the one record you're interested in) to
populate the address fields in your record.

If the desired address isn't in the list, take appropriate action: e.g.
allow the user to type it directly into the address fields and flag the
record for manual examination later.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top