Re: How create a date+time type of vbs in perl?

2011-04-18 Thread Bill Luebkert
On 4/18/2011 1:49 AM, Xiao Yafeng wrote: > Hi, > Is there a way to create a date type of vbs in perl? > > for example, > how can I translate below vbs statement into perlish > one? > > date_from = DateSerial(2011,03, 23) + timeserial(6, 0, 0) > > any r

RE: How create a date+time type of vbs in perl?

2011-04-18 Thread Eric Robertson
Hi Have you tried Date::Calc module, which I use for all my date and time calculations? It's pretty comprehensive. Eric Robertson _ From: activeperl-boun...@listserv.activestate.com [mailto:activeperl-boun...@listserv.activestate.com] On Behalf Of Xiao Yafeng Sent: 18 Apr

How create a date+time type of vbs in perl?

2011-04-18 Thread Xiao Yafeng
Hi, Is there a way to create a date type of vbs in perl? for example, how can I translate below vbs statement into perlish one? date_from = DateSerial(2011,03, 23) + timeserial(6, 0, 0) any reply is really appreciated. _