|
| |||||||||
| Tags: convert, database, est, pst, time zone |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| Convert pst to est
One of my friend was asking that how to convert pst to est???? Actually he was given a database in which he has to change from pst time zone to est time zone.... Can anyone Help here...???? |
|
#2
| ||||
| ||||
| Re: convert pst to est
Hi Gruss! You just need to add 3 hours to the PST timing. I mean it is quite simple add 3 hours to the time you want to convert it to EST timing. Just follow the example as given below : Quote:
|
|
#3
| ||||
| ||||
| Re: convert pst to est
Following is the code given to do your work easy just if you know coding then put it in the VB & will solve your problem....! Code: Dim d As DateTime
d = DateTime.Parse("MAY 26, 2009 12:00:00 AM") 'date assignment
d = d.AddHours(3.0)
' - displays 10/26/2003 03:00:00 AM – an ERROR!
MsgBox(d.ToString) |
|
#4
| ||||
| ||||
| Re: convert pst to est
If you know coding in SQL Server then use DATEADD(hh,-3,GETDATE()) - will give a new datetime value representing three hours prior to the given date/time. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Convert pst to est" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How do I convert .DMG to .ISO? | xxsniper1522 | Windows Software | 2 | 13-10-2010 07:47 AM |
| Convert WMA to MP3 | Jamaima | Windows Software | 5 | 10-11-2009 02:42 PM |
| How to convert pub to pdf | Gretel | Windows Software | 2 | 20-05-2009 12:33 AM |
| convert PDF to JPG | Kool | Windows Software | 3 | 20-03-2009 12:00 AM |
| Convert video to iPod, Convert iTunes video, Convert DivX to MP4 | tommyhills | MediaCenter | 0 | 31-03-2008 03:48 PM |