It's not possible to switch on my Iphone 4

It's not possible to switch on my Iphone 4 and also to charge it with two different cables. When I first uesed the phone its battery had 42%, so i don't know why it switcht itself off...
Can you help me?

Try a reset by pressing and holding the home and power buttons until the white Apple logo appears.

Similar Messages

  • Travel Expense: Error: Travel Exp already exist not possible to switch schema

    Dear Team,
    I am supporting Travel Management in one reputed company.
    User facing one issue where TRF raised by copying one old TRF, during that time Travel expense report also getting copied. It is not giving any error while raising TRF in this process, but when the user trying to raise TER for the same he is geeing error: 'Travel Expenses already exist not possible to switch schema' Kindly suggest how can I stop this. Attached is the ESS Screen.
    Regards,
    Adi.

    Hi Adi,
    no. Leave that as it is. I wasn't entirely sure whether the field's value influences the TER in any way. But since it is = 1 and your TER schema collides, this is completely irrelevant. Still good to have this ruled out.
    Have you checked what I wrote concerning FITVFELD_WEB? There's a checkbox in the schema "Overlapping Trips allowed" (loosely translated from German, might not be verbatim). If it's not checked, check it and retry.
    Again though: 4 years ago, as I already stated in my earlier posts, these settings had no impact on the collision of Travel Expense Claims and coexisting TERs in the same time were not possible. I assume it is still not possible, so we're clutching at straws here.
    However. If I understood your business needs correctly, you actually do not want the expense report data/indicators to be taken into account, because you just need the copy for the Travel Request, right? There might be chances for implicit enhancements and "killing" that bit information from the copied TE-Cluster entry so it doesn't stray into the copy of the Travel Request Copy anymore.
    Cheers, Lukas

  • How long does it take after switching on an iPhone 4S before you can enter the SIM card PIN?

    Hello,
    I have question concerning the iPhone 4s. I am currently not sure if my iPhone 4S shows a malfunction or not.
    After switching on my iPhone 4S it can take more 45 seconds before the dialog to enter SIM card PIN is displayed. I observe the same duration with two SIM cards from two different providers. It is not fully reproducible. In some care cases the dialog for requesting the SIM card PIN is also displayed after a few seconds. On my iPhone 3GS and my iPad this dialog is always displayed with the same SIM cards already after a few seconds. Could you please let my know how long does it take with your iPhone 4S?
    Thank you in advance.
    Roland

    I had a similar issue activating by HTC DNA.  The activation instructions Verizon sends are horrible since they explicitly mention that you do not need to call in to activate your phone.  I left my SIM activation running overnight and it just didn't work.  I finally called Verizon from my work phone the next day and the agent informed me that you do need to call to activate your SIM card.  You will need to have your SIM card ready when you call (to provide the long string of numbers on the back of the card).  Hope this helps!

  • I want to buy the movie Crazy Stupid Love but it is not available in the US, only in the UK.  I live in the US but is it possible to switch the itunes store so that I can buy that movie?

    I want to buy the movie Crazy Stupid Love but it is not available in the US, only in the UK.  I live in the US but is it possible to switch the itunes store so that I can buy that movie?

    It used to be in the US iTunes Store as that's where I purchased it.  Often the studios will temporarily pull a movie from the store during times the movie is scheduled to be shown on TV or cable TV as the TV network has been granted exclusive access during the period. It will return to the store later.

  • Workflow not starting and RFC status is 'User Switch Is Not Possible'

    Hi All,
    I am using ABAP classes to raise an event that triggers the workflow.
    When I am executing the workflow from SWUS or raising event from SWUE or SE24, the workflow is starting fine.
    But when I am raising the event from a Webdynpro application, the same event is raised, but the workflow is not getting triggerred.
    I could see a record in SWEL, but the workitem is not created.
    In SWEL, it is showing the RFC status as 'User Switch Is Not Possible'.
    When I go to SM58, I am able to re-execute the failed transaction and this time the workflow is getting triggered.
    The same workflow is working fine in D env. but not in T env.
    The event linkages are all same and I also used the COMMIT WORK statement after raising the event.
    Another problem is the RFC status is sometimes set to SYSFAIL and sometimes as 'System overloaded, repeat immediately by batch' other than 'User Switch Is Not Possible'.
    Please help.
    Thanks,
    Cay.

    Hi,
    call function module AUTHORITY_CHECK_RFC explicitly before a remote call to be able to treat a possible exception. If the authorization exists, the function module does not return an explicit result but, like all successfully executed function modules, sets sy-subrc to 0. If sy-subrc is not equal to zero then it could be the problem with the user authorization.
    I also think it could alos possible because of your Host name check whether any changes are done to host name.
    Regards
    Pavan

  • Is it possible to switch from the preinstalled iTunesU to the original iTunes on an iPad. If it is can someone explain how to do it?

    Is it possible to switch from the preinstalled iTunesU on my iPad to the original iTunes. If it is can someone tell me how, and is this something that commonly happens?

    I'm not sure what you are asking.  There is no "preinstalled iTunesU" on an iPad.  The iTunes app is a portal to the iTunes Store. Use the icons at the bottom of the page to switch to different sections of the store.  Use the Music app or the Videos app to access iTunes media you have synced to the iPad.
    To learn more, refer to the iPad iOS5 User Guide

  • Is it possible to switch the rows and columns?

    Is it possible to switch the rows and columns of a table? The reason I ask is that it would be easier for me to input the data with the number at the top of a column and the fields going down. But it would be easier to read the data with the number on the left and the fields going to the right. Is it possible to switch a table in this way?

    mahongue wrote:
    Is it possible to switch the rows and columns of a table? The reason I ask is
    that it would be easier for me to input the data with the number at the top
    of a column and the fields going down. But it would be easier to read the
    data with the number on the left and the fields going to the right. Is it
    possible to switch a table in this way?
    It sounds to me as though you wish to transpose a table so that the original is changed from rows to columns and from columns to rows, as in the following:
    Table 1
        A   B   C
    ========
    1   o   p   q
    2   r   s   t
    3   u   v   w
    Table 2
        A   B   C
    ========
    1   o   r   u
    2   p   s   v
    3   q   t   w
    You are right - it would be nice to have a menu item to magically transpose a selected block of cells. But there isn't one. So...
    One way to solve this is to use the index() and transpose() functions to accomplish row and column cell transposition. If you are going to use a 1:1 cell correspondence and change the header columns and rows also, you can use this:
       =INDEX(TRANSPOSE(Table # :: <range>),ROW(),COLUMN())
    where Table # and <range> is substituted as in the following fashion:
       =INDEX(TRANSPOSE(Table 1 :: $A$1:$C$3),ROW(),COLUMN())
    Create a second table. Copy the modified formula above with the appropriate substitutions, select the range you wish to have your transposition inserted into (must match the transposed cell dimensions of the original range), paste the forumula and voila! the cells will be transposed.
    Cautions:
    o The target table must match the swapped cell length and width dimension. For example, if the original data range is 6 columns wide by 4 rows deep, then the corresponding table or range to hold the transposition must be 4 columns wide by 6 rows deep.
    o If your transposed data block is to be offset from the origin of the new table, then you will need to include a subtractive offset into your cell formula, since in the transpose() function the data in the master data range is referenced from its position with the master range, not its cell position in the table. Such an offset is necessary because this example formula uses the target row and column numbers to arrive at indexed positions.
    For example, if the new data range is to be offset one column to the right and one row below from the target table's origin then you must subtract (-1) from the cell and from the column references in the formula:
      Example:
      =INDEX(TRANSPOSE(Table 3 :: $B$2:$D$4),ROW()-1,COLUMN()-1)
    If someone has a better solution I'd be glad to hear of it.

  • Not possible to post down payment clearing. There are no down payments:CJ88

    Hi Experts,
    When I settle WBS Element cost to the Asset Under Construction using transaction CJ88, I receive following error.
    AA571 Not possible to post down payment clearing. There are no down payments.
    Please help.
    Thank You.

    Hi,
    first please check if the message AA 571 is right:                                                                               
    -  Please check table ANLC. If ANLC-KANZA + ANLC-ANSAZ < 0    AA 571                                                                               
    -  Check asset values (AW01N, ANEP, ANLC) and find out where the negative down payments come from (tty 180, 181)                                                                               
    However, in some cases a negative down payment balance cannot be avoided  (for example through translation differences in foreign currency  areas). This is the problem of AA 571. Sometimes it is not justified. For this                
    cases we have the following note:                                                                               
    860038  Error AA571 not justified                                                  
    Using SM30, for the T100S table, create an entry for the message                      
    class AA, message number 571, allowed message type "AEW" and                          
    standard message type "E". Select the entry as 'Switch off'.                                                                               
    If when you post to a fixed asset the down payments are negative, or                  
    become negative through the posting, you continue to receive an error as              
    a default with these changes.                                                                               
    Recommended procedure:                                                                               
    o  Change this message to a warning message for one or several                    
           special users. This user should then be used to post to any such               
           fixed asset that has down payments that are already negative or                
           become negative through posting.                                                                               
    o  This should only be permitted in the cases where a negative down               
           payment balance cannot be avoided due to foreign currency                      
           rounding.                                                                      
    regards Bernhard
    Edited by: Bernhard Kirchner on Feb 11, 2011 9:27 AM

  • Is there a possibility to switch off in Firefox the functionality of quick launch key (additional key in laptop) that cause to run the homepage

    Dear Support,
    Is there a possibility to switch off in Firefox the functionality of quick launch key (additional key in laptop) that cause to run the homepage. I would like to switch this functionality off, because the key is malfunctioned and always pressed. I was able to switch off the functionality of this key in Windows system by deleting entries in registry Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AppKey. After this change, when somebody works in system the Firefox is not running is not launching all the time. But when I open the Firefox the setting in system is overwritten and when I am using it Firefox returns to the homepage instantly. I think because of this quick launch button. I tried to change settings in about:config like browser.startup.homepage, browser.startup.homepage_override, startup.homepage_override_url,… this is for Firefox version is 10.0.2
    Thank you
    Best Regards

    Hi,
    Thank you for your interesst.
    This internet button key is one of buttons located above the keyboard near the power button. What I have achieved to this moment was to stop it functionality in the system by clearing the entries in the fields Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AppKey\17\ShellExecute and entry
    Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AppKey\7\Association that was http
    After these changes in registry the behavior of the button was suppressed, the Firefox stopped to start unexpectedly all the time – so in system it works. But the problem is still when I have opened Firefox. Every time when you want to surf in internet – the homepage is activated also unexpectedly. I wrote this post with intention to ask if there is a possibility to switch off the functionality of this quick launch button in Firefox. Because I assume Firefox overrides the system setup – this I have made in registry. I tried with some option changes in about:config but without success. And I know that for older versions of firefox was some option in about:config do disable_quick launch button. But in 10.0.2 I couldn't locate it.
    Thank you
    Regards
    Lukasz

  • [SOLVED]wlan0 up - Operation not possible due to RF-kill

    Hello everyone.
    I've encountered trouble trying to activate my wlan0 interface and I was wishing that someone here might be able to help me.
    $ip link
    1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default
    link/loopback
    2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
    link/ether
    3: wlan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
    link/ether
    My attempt at trying to activate wlan0 renders the following;
    $sudo ip link set wlan0 up
    RTNETLINK answers: Operation not possible due to RF-kill
    Unblocking everything with RF-Kill does not seem to change much in particular:
    $rfkill list all
    0: hp-wifi: Wireless LAN
    Soft blocked: yes
    Hard blocked: no
    1: phy0: Wireless LAN
    Soft blocked: yes
    Hard blocked: yes
    $sudo rfkill unblock all
    $rfkill list all
    0: hp-wifi: Wireless LAN
    Soft blocked: yes
    Hard blocked: no
    1: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: yes
    Enabling/Disabling the wifi-button on my keyboard only changes the Hard Blocked-parameter of hp-wifi. The Soft block remains unchanged regardless of me trying to unblock all with rfkill.
    The following is the output of dmesg | grep phy0
    $ dmesg | grep phy0
    [ 7.460715] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 5390, rev 0502 detected
    [ 7.465387] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 5390 detected
    [ 7.500363] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    dmesg | grep hp-wifi renders nothing.
    Additional Information:
    $uname -r
    3.12.2-1-ARCH
    Entire output of lsmod
    Module Size Used by
    hid_generic 1161 0
    usbhid 40577 0
    hid 90678 2 hid_generic,usbhid
    arc4 2008 2
    rt2800pci 11055 0
    rt2800lib 74595 1 rt2800pci
    rt2x00pci 2664 1 rt2800pci
    rt2x00mmio 2945 1 rt2800pci
    rt2x00lib 37807 4 rt2x00pci,rt2800lib,rt2800pci,rt2x00mmio
    joydev 9671 0
    eeprom_93cx6 2193 1 rt2800pci
    mac80211 466554 3 rt2x00lib,rt2x00pci,rt2800lib
    cfg80211 412854 2 mac80211,rt2x00lib
    uvcvideo 72900 0
    kvm_amd 52575 0
    videobuf2_vmalloc 3280 1 uvcvideo
    videobuf2_memops 2343 1 videobuf2_vmalloc
    videobuf2_core 28027 1 uvcvideo
    kvm 389125 1 kvm_amd
    videodev 111140 2 uvcvideo,videobuf2_core
    hp_wmi 7627 0
    media 11751 2 uvcvideo,videodev
    radeon 1284675 6
    sparse_keymap 3154 1 hp_wmi
    crc_ccitt 1371 1 rt2800lib
    rfkill 15651 2 cfg80211,hp_wmi
    r8169 58399 0
    microcode 15216 0
    evdev 10989 13
    mii 4035 1 r8169
    pcspkr 2035 0
    k10temp 3058 0
    psmouse 85428 0
    ttm 63411 1 radeon
    serio_raw 5049 0
    rtsx_pci_ms 7266 0
    drm_kms_helper 36286 1 radeon
    memstick 7472 1 rtsx_pci_ms
    drm 238206 8 ttm,drm_kms_helper,radeon
    sp5100_tco 5824 0
    thermal 8532 0
    battery 6837 0
    wmi 8419 1 hp_wmi
    i2c_piix4 10592 0
    snd_hda_codec_realtek 40772 1
    i2c_algo_bit 5399 1 radeon
    i2c_core 24164 6 drm,i2c_piix4,drm_kms_helper,i2c_algo_bit,radeon,videodev
    ac 3332 0
    acpi_cpufreq 10779 0
    video 11228 0
    snd_hda_intel 36904 0
    shpchp 25465 0
    button 4677 0
    snd_hda_codec 149633 2 snd_hda_codec_realtek,snd_hda_intel
    snd_hwdep 6340 1 snd_hda_codec
    snd_pcm 77709 2 snd_hda_codec,snd_hda_intel
    snd_page_alloc 7242 2 snd_pcm,snd_hda_intel
    snd_timer 18726 1 snd_pcm
    snd 59173 6 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_pcm,snd_hda_codec,snd_hda_intel
    soundcore 5450 1 snd
    processor 24935 3 acpi_cpufreq
    ext4 474187 4
    crc16 1367 1 ext4
    mbcache 6082 1 ext4
    jbd2 83504 1 ext4
    sr_mod 14898 0
    cdrom 34848 1 sr_mod
    sd_mod 30789 6
    rtsx_pci_sdmmc 14332 0
    mmc_core 95691 1 rtsx_pci_sdmmc
    ahci 22896 5
    libahci 21401 1 ahci
    rtsx_pci 32049 2 rtsx_pci_ms,rtsx_pci_sdmmc
    libata 170792 2 ahci,libahci
    ehci_pci 4000 0
    ohci_pci 4072 0
    ohci_hcd 23937 1 ohci_pci
    ehci_hcd 59220 1 ehci_pci
    usbcore 180136 6 uvcvideo,ohci_hcd,ohci_pci,ehci_hcd,ehci_pci,usbhid
    scsi_mod 130669 3 libata,sd_mod,sr_mod
    usb_common 1656 1 usbcore
    Entire output of lspci
    00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 14h Processor Root Complex
    00:01.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Wrestler [Radeon HD 6320]
    00:11.0 SATA controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode]
    00:12.0 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
    00:12.2 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller
    00:14.0 SMBus: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 SMBus Controller (rev 42)
    00:14.2 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 Azalia (Intel HDA) (rev 40)
    00:14.3 ISA bridge: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 LPC host controller (rev 40)
    00:14.4 PCI bridge: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 PCI to PCI Bridge (rev 40)
    00:14.5 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI2 Controller
    00:15.0 PCI bridge: Advanced Micro Devices, Inc. [AMD/ATI] SB700/SB800/SB900 PCI to PCI bridge (PCIE port 0)
    00:15.1 PCI bridge: Advanced Micro Devices, Inc. [AMD/ATI] SB700/SB800/SB900 PCI to PCI bridge (PCIE port 1)
    00:15.3 PCI bridge: Advanced Micro Devices, Inc. [AMD/ATI] SB900 PCI to PCI bridge (PCIE port 3)
    00:16.0 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
    00:16.2 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller
    00:18.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 0 (rev 43)
    00:18.1 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 1
    00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 2
    00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 3
    00:18.4 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 4
    00:18.5 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 6
    00:18.6 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 5
    00:18.7 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 7
    02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5209 PCI Express Card Reader (rev 01)
    06:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 05)
    07:00.0 Network controller: Ralink corp. RT5390 Wireless 802.11n 1T/1R PCIe
    It is worth mentioning that this problem has remained persistent throughout multiple linux distributions that I've tried on my laptop. The Wifi works fine in Windows 7 but as soon as I switch to any linux distro it stops working.
    I intend to put your advice to good use so any help would be very appreciated.
    Last edited by FunkDojo (2013-12-05 13:02:45)

    As I can see you have two wireless interaces, when i see only phy0 with rfkill, it's maybe your hp-wifi that force to disable phy0 interace. I think if you blacklist the driver it might allow phy0 to be enabled.
    Please download and install lshw available in the community repo and enter in a terminal :
    $ lshw -c network
    Last edited by maxarsys (2013-12-05 06:26:05)

  • Upgrade 7.9.07 BUILD 014-123-244-287 to 7.9.08.22 not possible

    After upgrading to 7.9.08.08, it's not possible to upgrade to .22:
    pagxen010:/mnt/BPO_Files/MAXDB/MAXDB7908_22/maxdb-server-linux-64bit-x86_64-7_9_08_22 # ./SDBUPD
    SAP MaxDB Installation Manager - Database Upgrade 7.9.08.22
    Upgrade Database:
    0: UQ1 "/sapdb/UQ1/db" 7.9.08.08
    1: None (Abort upgrade)
    please enter database id: 0
    Please enter Database Manager Operator: CONTROL
    Please enter Database Manager Operator Password:
    Checking upgrade...
    Running finalize check...
    Current database state is ONLINE
    Switching database state to OFFLINE
    Checking parameters...
    Switching database state to ADMIN
    Switching database state to ONLINE
    ERR: Upgrade failed
    ERR: error upgrading
    ERR: Finalize upgrade failed: Current database state is ONLINE
    Switching database state to OFFLINE
    Checking parameters...
    Switching database state to ADMIN
    Switching database state to ONLINE
    Cannot switch database mode, error during dbm command:
    db_online
    ERR
    -24622,ERR_AUTOLOADSYSTAB: Automatic loading of the System Tables
    failed-24909,ERR_DBAUNKNOWN: SYSDBA unknown
    Looking for error messages in knldiag
    No error messages found in knldiag
    I tried to restore a backup, no effort. It seems like SUPERDBA isn't working any more, data cache can't be displayed as well.
    Any suggestions?

    Something seems wrong:
    dbmcli on pagsapup1 : UP1>sql_execute select * from users
    ERR
    -24988,ERR_SQL: SQL error
    -4004,Unknown table name or unknown schema:USERS
    dbmcli on pagsapup1 : UP1>sql_execute select * from DOMAIN.USERS
    ERR
    -24988,ERR_SQL: SQL error
    -4004,Unknown table name or unknown schema:USERS

  • Http to file scenario generate "Acknowledgement not possible"?

    Hi.
    On PI7.1 we built a http to file scenario and used the RWB "Test message" functionality to test the interface.
    Now we get a "Acknowledgement not possible" in sxmb_moni. How can we switch this off.
    thanks

    Hi
    while sending request use either EO or EOIO for Asynch.
    EO and EOIO, processing occurs asynchronously and the client only receives a confirmation of receipt with HTTP status u2018200u2019.
    Read this
    http://help.sap.com/saphelp_nw04/helpdata/en/43/64db4daf9f30b4e10000000a11466f/content.htm

  • I have the new iphone and thought I could download Netflix but only found "Netflix Instant's  Best Movies" in the apps. I pay for Netflix monthly. Is it not possible to download it here and use it on the iPhone?

    I have the new iphone and thought I could download Netflix but only found "Netflix Instant's  Best Movies" in the apps. I pay for Netflix monthly. Is it not possible to download it here and use it on the iPhone? Insight appreciated.

    TJBUSMC1973 wrote:
    The iPhone is working, as designed and advertised.  In this case, the user failed to educate themselves properly, either by proper research or asking the right questions, before purchasing the device.
    I understand that the OP failed to do research. But then, I wasn't replying to the OP. I was replying to Chris. I have Verizon. I can talk and use data at the same time with my Droid Maxx. Therefore, the problem is not just with the network. It would be technically possible for an iPhone to do that on Verizon/Sprint if Apple had chosen to use a different chip, such as the kind other phone manufacturers have elected to use.
    Of course, this is probably all irrelevant to the OP's issue. It was merely a point of clarification, especially for those people who are used to being able to use both voice and data at the same time on Verizon. When they switch to an iPhone, they are often surprized at the limitation.
    Best of luck.

  • Menu Bar Icons no longer showing, not able to switch on in control panel

    I had sleep problems with my MBP (http://discussions.apple.com/thread.jspa?threadID=2449728&tstart=0) and as such I did a combo update as this could possibly solve it.
    However, now all the control panel icons in the menu bar have gone (like the clock, network, airport, etc) and I am not able to switch them on in the relevant control panels. If I hit the tick box 'show in menu bar' of any control panel it ticks it for a split second and immediately removes the tick.
    I am able to turn it on via /System/Library/CoreServices/Menu Extras/, however after a restart all is back to previous state, no icons in menu bar.
    I redid the combo update > no success.
    any ideas?

    I did that and all is well in the other account.
    in a moment of inspiration, I reinstalled the
    Home/Library/Preferences/com.apple.systemuiserver.plist
    /Library/Preferences/SystemConfiguration/com.apple.PowerManagement.plist
    from a backup and this solved the Menu Bar issue.
    Thanks for thinking with me.

  • 3109:Is that possible to switch screen colors off ...

    Hi
    I am new user of Nokia 3109 (it should come tomorrow). I would be interested to know how to (if possible) switch the mobile screen colors "off"...I mean to get the phone screen working monochrome ? Is that possible ? Anybody knows ho to do that ? Why I want to do this? - I hate chargers, cables, I want my phone battery to last as long as possible and I think monochrome should do the job. And, also, I noticed most of color screens are hard to use in bright sun, I am in Melbourne - there is plenty sun here !
    Thanks in advance

    It is not possible to make the phone run in monochrome. You could probably find a basic theme with very little colour in it but it wouldn't save you any power.
    Most nokia's tend be good in sunlight. If you have any difficulties change your theme to one with better contrasting colours.

Maybe you are looking for