Re: Hours popup menu

2002-06-12 Thread John W. Krahn
Kevin Old wrote: > > Hello all, Hello, > What I'd like to do is create a popup menu on a web page that > has the hours 00-59 in it. Thing is, the only way I can come > up to do it is by writing out something like below..and then > putting a reference to this array in the code for the popup

RE: Hours popup menu

2002-06-10 Thread Langa Kentane
ew and could be dead wrong. What does the list say? Regards Langa > -Original Message- > From: Kevin Old [mailto:[EMAIL PROTECTED]] > Sent: 10 June 2002 04:47 PM > To: [EMAIL PROTECTED] > Subject: Hours popup menu > > > Hello all, > > What I'd like to

RE: Hours popup menu

2002-06-10 Thread Nikola Janceski
doh.. for got the d ... sprintf ( "%02d", $_ ) .. it's going to be a tiresome day. > -Original Message- > From: Kevin Old [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 10, 2002 11:50 AM > To: [EMAIL PROTECTED] > Subject: Re: Hours popup menu > >

Re: Hours popup menu

2002-06-10 Thread Kevin Old
ECTED]> wrote: > @hoursvals = map { sprintf("%02", $_) } (00 .. 59); > > > -Original Message- > > From: Kevin Old [mailto:[EMAIL PROTECTED]] > > Sent: Monday, June 10, 2002 10:47 AM > > To: [EMAIL PROTECTED] > > Subject: Hours popup menu > >

Re: Hours popup menu

2002-06-10 Thread Connie Chan
PROTECTED]> Sent: Monday, June 10, 2002 10:46 PM Subject: Hours popup menu > Hello all, > > What I'd like to do is create a popup menu on a web page that has the hours 00-59 in it. Thing is, the only way I can come up to do it is by writing out something like below..and then

RE: Hours popup menu

2002-06-10 Thread Nikola Janceski
@hoursvals = map { sprintf("%02", $_) } (00 .. 59); > -Original Message- > From: Kevin Old [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 10, 2002 10:47 AM > To: [EMAIL PROTECTED] > Subject: Hours popup menu > > > Hello all, > > What I'

Hours popup menu

2002-06-10 Thread Kevin Old
Hello all, What I'd like to do is create a popup menu on a web page that has the hours 00-59 in it. Thing is, the only way I can come up to do it is by writing out something like below..and then putting a reference to this array in the code for the popup menu. @hoursvals = (00 01 02 03 04