Results 1 to 4 of 4

Thread: Convert pst to est

  1. #1
    Join Date
    Apr 2009
    Posts
    24

    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. #2
    Join Date
    Apr 2008
    Posts
    2,139

    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 :

    For Example :
    11:35 AM PST = 2:35 PM EST

  3. #3
    Join Date
    May 2008
    Posts
    4,831

    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. #4
    Join Date
    Jan 2008
    Posts
    3,755

    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.

Similar Threads

  1. Convert CDR to PSD
    By neonxgenesis in forum Windows Software
    Replies: 3
    Last Post: 30-10-2009, 01:42 PM
  2. Convert dvd-ram to dvd
    By Murena in forum Portable Devices
    Replies: 3
    Last Post: 27-05-2009, 05:43 PM
  3. How to convert pub to pdf
    By Gretel in forum Windows Software
    Replies: 2
    Last Post: 19-05-2009, 11:33 PM
  4. Convert rtf to pdf
    By Ebenezer in forum Windows Software
    Replies: 3
    Last Post: 14-05-2009, 12:10 PM
  5. Replies: 1
    Last Post: 26-07-2008, 02:30 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,238,572.74975 seconds with 17 queries