Auto set the Time

Im using a 1st gen iPhone running v2.2 on the Vodafone network in India. I dont see a setting for Auto setting the date/time anywhere. I know there is supposed to be such a setting on the phone because I've seen people referring to it on this forum, but just cant find it on my phone.. can anyone please tell me where I would find it?
Another thing, does syncing the phone with the Mac synchronise the Mac's time to the phone? I know this happens when you first set up the phone thru the Mac, but I've noticed that now my phone is several seconds off from the Mac, meaning that it does not sync the time with the Mac

I always hear how Europe's cellular networks are more mature and developed, etc., and most phones available in Europe are generally more advanced than what is available in the U.S. because of the more mature and developed cellular networks in Europe, but most or many cellular providers in Europe don't support an automatic date and time feature for cell phones?
I've always had this available with all cell phones and with a number of different cellular providers I've used, which dates back to the mid 90's.
I wonder why all these mature and developed networks and cellular providers in Europe don't support this?

Similar Messages

  • Can't set the time on the 6500 Slide

    I just bought a 6500 slide and can't do one of the most basic things - set the time!
    I have gone to auto-update but it is shows the wrong time.
    At the time I purchased the handset the sales assistant turned the phone on to check if my sim card was working but he may have saved the incorrect date and time.
    I have managed to save the correct date but can't for the life of me now save the correct time.
    Can anyone help?
    So simple but yet I can't figure it out.
    Thanks.

    Hi racheljc,
    Try this:
    Menu
    Settings
    Time and date
    Time
    From there, you should be able to change the time.
    I hope this helps.
    My posts are my opinion and in no way the direct views of Nokia.
    If my posts are helpful, please give me some KUDOS using the green star on the left.

  • Script Help required to Auto-populate the Time Period Value

    Hi Experts ,
                    Time Period object was defined in System
    I have a collection M_ED_SYS_CE with M_ED_YR as collection field .
    M_ED_YR field is a Time Period Picker (i.e. values are like "Year 2011" , Year 2010)
    my requirement was to auto-populate the M_ED_YR collection field with Time Period object . No manual Interruption
    Also I need to increment and auto-popualte & set  the Time Period values for all  existing M_ED_YR Collection fields .
    Can any one please clarify if TimePeriod objects defined in System is of VLV type or String Objects
    Any suggestions are highly Apprecaited .
    thanks in Advance
    Tayi

    REsolved

  • How do you set the time period on IMAP email accounts (razr maxx)

    Hi Guys -
    Does anyone know how you can set the time period that the stock email will keep the already downloaded messages for IMAP email accounts?
    Mine never seems to show more than a couple of days worth at a time. I'd ideally like to be able to see at least 2 weeks worth of messages without needing to download them again!
    On other phones I've had there was a setting in the menu, but either I can't find it...or it's not there. I've found the setting for how OFTEN it checks the accounts, but not the setting I am seeking.
    Your help is appreciated!
    Best Wishes for the Holiday Season.
    -Rich

    Hey Rich.  Once in 'settings,' there should be a "days to sync' under the 'data usage' section.   You don't have that?

  • How do I set the time in icloud mail?

    I have tried to set the time zone in my account. It show CST, but is 2hours behind time and I cannot get it to change.

    Hi...
    On a Mac for the time zone, open System Preferences > Date & Time > Time Zone
    For an iOS device, tap Settings > General > Date & Time > Time Zone

  • Setting the time on 1300 bridges

    stupid question, how do you set the clock on the 1300 bridges, specifically the 1310?

    kieran
    two issues
    one the Cisco AP's do not have a clock like your PC if you set the time manually when the AP loses power or reboots the time is reset to the default and you need to set it again.
    te]wo the better solution is to designate a time server for the AP to syncronize to.
    either method can be configured by clcking services on hte WEB interface and then select NTP or SNTP depending on you IOS version. then entering the time server IP address in the proper box or typing in hte proper date and time in the fields below, if you select the time server method the date and time will be filled in automaticaly once the time is syncronized.
    HTH
    Bill

  • How do i set the time frame of a waveform chart programmatically to be a 30 sec window or a 24 hour window

    i'm using LV7.0 and what i need to do is to be able to set the time frame or range of a waveform chart programmatically before i start taking and plotting data. sometimes this window needs to be 30s wide and sometimes it needs to be 24 hrs wide. (in the first reference, i need the chart to fill up with 30s of historical data then the whole chart scrolls with each new data point). the data acquisition records data at a rate of once per second. i've tried to use the chart properties of XScale.offset, XScale.Range.Minimum and XScale.Range.Maximum but no matter what i do the time-stamp on the x-axis is always "00:00:00 PM" and "MM/DD/YYYY" even though values are seen being plotted on the right side of the chart as expected.
    Attachments:
    BX0265 ShelfLife DAQmx.vi ‏120 KB

    Okay, there seems to be some confusion here -- the X axis values are of type double, but they can be represented in the HH:MMS MMD:YYYY format if you want in which case it interprets the floating point as the number of seconds since 6pm Dec 31, 1903. 
    You can programmatically set this value using the XScale.Minimum and XScale.Maximum properties, but note that if you wire a waveform to the chart after setting these values the t0 parameter will override what you set using the property node for XScale.Minimum.  If instead you leave the t0 parameter empty you can use the XScale.Offset property and wire the same value in that you wire to XScale.Minimum.  Changing the amount you add to XScale.Minmum to obtain what you wire into XScale.Maximum will determine the time window size.
    Doug M
    Applications Engineer
    National Instruments
    For those unfamiliar with NBC's The Office, my icon is NOT a picture of me

  • Timer works if I set the time before the current one

    Hi,
    I've got a block that is part of an actionListener that has 4 buttons, anyway I want the timer to execute something exactly at the time I set it.....but in the code that I have it also executes if i set the time before the current time
    Here's the segmant:
    private class ButtonResponder implements ActionListener
              public void actionPerformed(ActionEvent event) 
                    if (event.getSource() == exitButton)
                                  System.exit(0);
                   if(event.getSource() == setButton)
                        int hour = Integer.parseInt(hours[hourComboBox.getSelectedIndex()]);
                        int min = Integer.parseInt(minutes[minuteComboBox.getSelectedIndex()]);
                        Calendar calendar = Calendar.getInstance();
                        calendar.set(Calendar.HOUR_OF_DAY, hour);
                        calendar.set(Calendar.MINUTE, min);
                        calendar.set(Calendar.SECOND, 0);
                        Date time = calendar.getTime();
                    timer = new java.util.Timer();
                        timer.schedule(new TimerTask()
                             public void run()
                                  JOptionPane.showMessageDialog(null, "it is time");
                        , time, 5*1000);
                   if (event.getSource() == cancelButton)
                        timer.cancel();
              }So if I put zeros in hours and minutes it will execute immediately....how can I make execute at the exact time (so that if the time now is 2:00 and I set it to 1:00 it only executes the next day??
    Message was edited by:
    Octavian

    Bump the day if the time is less than current time.
    Kaj

  • How do you set the time for this forum??? Not in nerd pleas

    how do you set the time for this forum?

    There were problems with the correct time display for postings, and based on another recent post this doesn't seem to have been fixed. My advice... don't worry about it.

  • Setting the time to UTC?

    Okay my local time is 1 hour behind. My UTC time is correct. In /etc/rc.conf iI have "HARDWARECLOCK="UTC" but everywhere the time is displayed its in local time? Is there a way to set the time to UTC system wide?

    Are you dualbooting windows btw? If you are, keep HARDWARECLOCK at localtime

  • Can I set the time ruler in the main window to minutes/seconds/milliseconds?

    Is there a way to set the time ruler in the MAIN window to minutes/seconds/milliseconds?
    It seems that the only ruler time display option is minutes/seconds/frames/subframes.
    Or, failing that, is there a way to suppress the display of frames/subframes?
    I have already figured out how to set the main ruler to time, and the LCD to minutes/seconds/milliseconds…it's just a matter of having that in the ruler as well.
    Thanks.

    To my surprise that is not possible. Although, surprise...
    You could put in a feature request here:
    http://www.apple.com/feedback/logic-pro.html
    and/or here:
    http://www.logicprohelp.com/forum/viewforum.php?f=41

  • TS4020 how do i set the time my iCloud account to Sydney Australia

    how do i set the time my iCloud account to Sydney
    Cheers

    Hi...
    On a Mac for the time zone, open System Preferences > Date & Time > Time Zone
    For an iOS device, tap Settings > General > Date & Time > Time Zone

  • Please help to set the time zone in a porper way

    Dear Folks please help to set the time zone in a porper way
    select sessiontimezone from dual;
    Database: Oracle 11.2.0.2
    Operating system: AIX 5.3
    SESSIONTIMEZONE
    +00:00
    SQL> select systimestamp from dual;
    SYSTIMESTAMP
    06-NOV-12 04.21.07.438426 AM +00:00
    SQL> select dbtimezone from dual;
    DBTIME
    +00:00
    SQL> Select DBMS_SCHEDULER.get_sys_time_zone_name from dual;
    GET_SYS_TIME_ZONE_NAME
    Asia/Kuala_Lumpur
    By looking Doc ID: Note:149120.1 in Metalink:
    ALTER DATABASE <my db name> SET TIME_ZONE = 'Asia/Kuala_Lumpur'
    or
    ALTER DATABASE <my db name> SET TIME_ZONE = '+08:00'
    For reflecting the change I refreshed the db by shutdown and restart.
    but still the returning no timezone value for user schema, please help how to set the time zone in a proper way?

    SQL> conn sys/sys as sysdba
    Connected.
    DBNAME
    db
    SQL> select u.name || '.' || o.name || '.' || c.name "Col TSLTZ"
      2    from sys.obj$ o, sys.col$ c, sys.user$ u
      3   where c.type# = 231
      4     and o.obj# = c.obj#
      5     and u.user# = o.owner#;
    no rows selected
    SQL>  select DBTIMEZONE from dual;
    DBTIME
    +00:00
    SQL> alter database set time_zone='Asia/Kuala_Lumpur';
    Database altered.
    SQL> select DBTIMEZONE from dual;
    DBTIME
    +00:00
    SQL> startup force;
    ORACLE instance started.
    Total System Global Area  426852352 bytes
    Fixed Size                  1375060 bytes
    Variable Size             260048044 bytes
    Database Buffers          159383552 bytes
    Redo Buffers                6045696 bytes
    Database mounted.
    Database opened.
    SQL> select DBTIMEZONE from dual;
    DBTIMEZONE
    Asia/Kuala_LumpurRefer:
    Re: how to check db time zone
    Edited by: Ora on 5 Nov, 2012 11:36 PM

  • Setting the time in CIMC

    Newbie question.. but how do I set the time in CIMC?                  

    What type of server do you have?
    Is it a c-series server?
    To get into the bios you will have to reboot your server, and preset F2 when a little bit after you see the cisco logo.

  • Setting the time in iPod Classic

    Hello,
    I set the time in 24 h mode as this is normal in Germany. When changing the time, the screen still shows the American way in 12 h mode. How can I change this, too?
    Best regards
    rudi_ratlos

    Hi Jochen,
    Clock control will display only the System time but you can change it by defining the 'Time Zone' dropdown in 'Display' tab of Clock properties.
    Regards
    Basheer

Maybe you are looking for

  • Input and CRC errors on ASA 5505 outside interface

    All, I see input and crc errors on my ASA 5505  eth0/0(outside) interface and packet drops. There is very slow connection though we have 20mb line. ISP also sees the issue on the Lan interface side. We have the speed and duplex configured same on bot

  • How can I log off the old apple ID and on to the new apple ID in Settings icloud?

    I have an old apple ID that is currently signed into my new iphone5s under settings>icloud. My new apple ID is signed in elsewhere on the phone. I cannot sign out or delete the old apple ID account because I do not know the password. I cannot reset t

  • Fonts not appearing in InDesign

    Hi, Does anyone know why some fonts won't appear in InDesign even though they are in my Fonts folder on Local Disk?  I also tried putting a copy in the Fonts folder in InDesign, but they still don't appear in the program. Thanks, Jen

  • Logic for monthly quarterly yearly basis for  ar eport

    hi ,           i need to run a report (which shows sales order number and creation date based on erdat entered in selection screen) in back ground. for that i have to develop a wrapper program which calls the main program and executes it. i can do th

  • ALE Vendor Confirmation

    Hi, When a Vendor is created FK01 the ALE is settings done to send the Vendor code to another SAP system. But now it will be Unconfirmed in both the systems. When the Confirmation is done using a different User in Sending system using FK08, this data