Extracting database field/form names with ASP/ADO and PerlScript

2001-01-26 Thread David Innes
Ok, so I've wasted entirely too much time on this and I'm about ready to go back to DBI (where I could probably solve this problem in 10 minutes.) The basic question is what's the ASP/PerlScript way to fetch a row of data into a hash the way DBI's fetchrow_hashref() does? If you like that sort o

RE: Serving Images

2001-01-26 Thread Ed Moon
Check out LWP. You basically need is a scriptable browser that can retrieve the image for you. This can be done with LWP. Take a look at lwpcook for examples on how to do this. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Steve Sotis Sent: Friday, Ja

Re: Serving Images

2001-01-26 Thread $Bill Luebkert
Steve Sotis wrote: > > $Bill / Brian, > > I think both of you responded directly to me, instead of through the list > and, although you both had some nice code, I *think* (but could be wrong) > that they missed the point of the question. Maybe the question wasn't pointy enough since we both mis

Re: Serving Images

2001-01-26 Thread Steve Sotis
$Bill / Brian, I think both of you responded directly to me, instead of through the list and, although you both had some nice code, I *think* (but could be wrong) that they missed the point of the question. Both of your solutions are opening files that are local. That was the whole point of t

Re: a easy thing with procents....

2001-01-26 Thread $Bill Luebkert
Keith Calvert Ivey wrote: > > $Bill Luebkert <[EMAIL PROTECTED]> wrote: > > > If he can't figure out how to change a . to a , maybe he needs > > a new occupation/language. :) > > Probably, but we've had worse questions here, and how to round > numbers is in the FAQ after all. Also - wouldn't

Re: a easy thing with procents....

2001-01-26 Thread Keith Calvert Ivey
$Bill Luebkert <[EMAIL PROTECTED]> wrote: > If he can't figure out how to change a . to a , maybe he needs > a new occupation/language. :) Probably, but we've had worse questions here, and how to round numbers is in the FAQ after all. -- Keith C. Ivey <[EMAIL PROTECTED]> Washington, DC _

Re: a easy thing with procents....

2001-01-26 Thread $Bill Luebkert
Keith Calvert Ivey wrote: > > $Bill Luebkert <[EMAIL PROTECTED]> wrote: > > Kristofer Wolff wrote: > > > > > > hi I am priniting out procents like: > > > > > > $procent = ($d*100)/$sum; > > > print "$procent %"; > > > > > > but now i

Re: a easy thing with procents....

2001-01-26 Thread Keith Calvert Ivey
$Bill Luebkert <[EMAIL PROTECTED]> wrote: > Kristofer Wolff wrote: > > > > hi I am priniting out procents like: > > > > $procent = ($d*100)/$sum; > > print "$procent %"; > > > > but now i have somthing like: "13,832548 %" how can I

Re: a easy thing with procents....

2001-01-26 Thread $Bill Luebkert
Kristofer Wolff wrote: > > hi I am priniting out procents like: > > $procent = ($d*100)/$sum; > print "$procent %"; > > but now i have somthing like: "13,832548 %" how can I round this to a 2 > string thing after the komma ? It's

a easy thing with procents....

2001-01-26 Thread Kristofer Wolff
hi I am priniting out procents like: $procent = ($d*100)/$sum; print "$procent %"; but now i have somthing like: "13,832548 %" how can I round this to a 2 string thing after the komma ? -- Ven