Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CTRL-Click to select multiple Fields

Status
Not open for further replies.

RayBec

Programmer
Dec 5, 2001
42
US
Thanks for the help...I need to display multiple customer records (names) on a screen (easy enough). I then need to allow the user to select multiple records using the 'CTRL' button and a mouse click. Please help me get started using with the multiple selection logic...
Thanks!!!
 
Web Based...I've got an Oracle database on the backend and need to allow folks to flag customer records for tracking. I'll present the records and need for them to go in an 'flag' as many as they like at one time.
Thanks!
 
I'd have to double check to be sure, but, using the CGI.pm module (which you should be doing!), I think it's like this:
Code:
use CGI;

my $j = new CGI;

my @list_of_selected = $j->param('nameSelect');

#Where nameSelect was the select-input for the 
# names,  and @list_of_selected will be the 
# array containing your list of results.
Hope this works!

--jim
 
Thanks about a million! I'm using CGI.pm...I'll give it a shot.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top