473,387 Members | 1,501 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Creating a Clickable list

loonette
I'm sure that this has been asked on here, but I have been looking for the last hour and couldn't find anything that quite answers my question. I need help with Access 2000 and creating a clickable list. I have a table that lists all of our customers called "tblbidderinfo". I would like to create a new form that allows you to search by last name and when you click on the person's last name in a list it would pull up their record in the form "frmbidderinfonum". I'm sure that whoever helps me with this will need more information, but I am pretty green at this and don't know what other information would be required.

Thanks for any help you can give me!

Lori
Apr 5 '10 #1

✓ answered by NeoPa


5 4931
topher23
234 Expert 100+
Since I don't know the names of your fields, I'm going to assume a Unique ID for each customer called ID and a name field called BidderName.

Create a list box called lstSelectBidder, and set the RowSource to

Expand|Select|Wrap|Line Numbers
  1. SELECT ID, BidderName FROM tblBidderInfo ORDER BY BidderName;
  2.  
In the list box Properties, set the number of columns to 2 but set the column widths to 0";2" - this will make it so the name shows up rather than the ID.

Now, go to the On Click event of the list box and click the builder (...). In the code for the event put this code:
Expand|Select|Wrap|Line Numbers
  1.     DoCmd.OpenForm "frmBidderInfoNum", , , "ID = " & Me!lstSelectBidder
  2.  
and that ought to do it. Let me know how it works for you.
Apr 6 '10 #2
Topher,

Thank you for the reply, but I didn't make myself 100% clear. I would like to have a text box at the top of the form in which I could type a last name, for example "smith" and the form would then populate with all the customers whose last name is Smith and each name is hyperlink to it's record in my form "frmbidderinfonum". I have the name fields in "frmbidderinfornum" split between first and last with the fields being titled "firstname" and "lastname". I guess I want it to be like when when you search for something on eBay, like you put in "widgit" and a hyperlinked list of everything widgit being sold on eBay comes up. Is this possible? and if so how do I got about it? Please let me know if you need any other information about tables, forms or fields.

Thank you!

Lori
Apr 9 '10 #3
Thank you so much for your help. I worked on the code using the form filter and it works! I am so grateful!
Apr 10 '10 #5
NeoPa
32,556 Expert Mod 16PB
I'm very pleased I could help Lori :)

Welcome to Bytes!
Apr 12 '10 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: Aaron | last post by:
I know this is a thing used primarily on websites..but since python can do anything ;) I'm trying to make a clickable image map for my wxPython program. Basically, I know how to organize the...
1
by: John Tipper | last post by:
I am trying to create a clickable image for use within an MFC VC++ application. The requirement is for the control to generate messages on click or double click etc for different areas of the...
3
by: mallyonline | last post by:
Thank you for your previous help. I posted regarding listing the names of files held in a folder on the server and making the list appear clickable. This has now been accomplished. The...
3
by: Henrik | last post by:
I need to get a list of clickable objects on the desktop and their positions. I have written a small program in C# and by using the Win32 function: WindowFromPoint -function I get a handle to the...
3
by: Michael Dawson | last post by:
I am creating a list of items which need to be clickable on a web page, but I am unfamiliar with ASP event handling. I created the following test control: public class MyCustomControl :...
4
by: luftikus143 | last post by:
Hi there, I have a nasty little problem, as so often, only with IE. Here is an screenshot to better illustrate the problem. http://geodata.grid.unep.ch/screenshot13.png The map is clickable (to...
2
by: mavhunlj | last post by:
Im creating a clickable slide show, and my images are not changing is only displaying the first image on the slide. I want it to display different images on the slide I created.
7
by: Jeff Gaines | last post by:
I have spent the day learning how to use Zend Development Environment. I can now produce a list of files in a directory, filtered by extension, and apparently clickable. Unfortunately clicking on...
3
by: crazychrisy54 | last post by:
Hi there I just wondered if there is any way using GD to insert a clickable button or some clickable text into a image? It is possible to create images for buttons but what if you want a...
2
by: GloStix | last post by:
For some reason, FF likes to put a black underline on all my buttons. No matter what I do, it has the line I've tried displaying as block and cursor, anything.. Also I've been trying to get it so...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.