On a Screen 2 Table Cursor need to be Synchroize

Hi All.
I have a problem. In my Screen I have two table Control.
both the Table have different data but the no of Column and column are same.
My Requirement is that : My user want to synchronize the Cursor movement of table Control. Its only Horizontal.
Means when User Move the Cursor of one Table control the Cursor of second control also move in sequence with first table control..
please provide input,
Regards
Swati..

Hi Swati,
Horizontal scrolling in table controls doesn't trigger PAI, so I don't think it's possible. But if any other event is triggering PAI, you can get attribute LEFT_COL of the first table and set it for the second table in PBO.
Cheers, gabriel

Similar Messages

  • Black screen w/blinking cursor hp dv6700 please help me out someone!!

    My dv6700 running vista 32 bit has shut down on me and when i try to start it I get the first HP screen and then get stuck on a black screen with blinking cursor.....so i can't get to the next screen to press F8.....I went to this page to download iso file to make a recovery cd http://downloadcenter.intel.com/Detail_Desc.aspx?lang=eng&DwnldID=15074 and then used IMGBURN program to burn iso to cd....then put the burned cd into my HP cd drive and started it up but still to the black screen with blinking cursor.....then got into my bios screen on the next try to change boot order to start with cd drive but same thing...black screen blinking cursor.....I really hope someone can help me out here.......I've never posted on any forum ever...always googled everything myself cause i wasn't sure if i'd actually get a response on a forum....so i'm hoping i've been wrong this hole time...... 

    Hi,
    I don't think the ISO you downloaded will provide the necessary repair options you need to try, so I'd suggest first creating a retail Vista installation disc and using the repair options this provides.  A full description of creating the disc ( including links to the Vista Image downloads ) can be found on the following link.
    http://en.community.dell.com/support-forums/software-os/w/microsoft_os/3317.2-3-microsoft-windows-vi...
    Once created, tap away at the esc key as you start the notebook to enter the Start-up Menu.  Insert the Rescue CD.  Select Boot options ( usually f9 ), use the arrow keys to select the CD/DVD drive and hit enter.  You may also get a prompt to 'Press any key to continue' - do this if asked.
    When loaded, select Repair Your Computer and choose the Command Prompt.  When this loads, enter the following commands and hit enter after each one - include spaces as shown.
    Bootrec.exe
    bcdedit /export C:\BCD_Backup
    c:
    cd boot
    attrib bcd -s -h -r
    ren c:\boot\bcd bcd.old
    bootrec /RebuildBcd
    bootrec /fixmbr
    bootrec /fixboot
    Remove the Rescue CD and try rebooting the notebook.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Windows 7 64-bit black screen and blinking cursor for ages before boot

    Help!
    I'm having the black screen with blinking cursor whenever I try and boot up Windows 7 Ultimate 64-bit thru Bootcamp on my MacBook Pro. If i let it just sit there for maybe 2 or 3 minutes, it then goes to the Windows Boot Manager screen and allows me to click on Windows 7 and the it boots perfect. I've tried installing it twice, same thing. No problem booting OS X Snow Leo 10.6.3. Got the right NVidia drivers installed, makes no difference. Have Paragon NTFS installed so I can get thru to NTFS partition from OS X. I badly need Windows too and don't wanna slow it down by running it in Parallels or VMWare Fusion. A little help?
    Thanks a lot!

    Solved! Here's what worked for me, it's located at:
    http://discussions.apple.com/thread.jspa?messageID=11567814#11567814
    (scroll further down, Option 3, you'll see one or two others had success with it too)
    Message was edited by: rapture_elk

  • In the component overview screen of CO01 I want  to disable all  the field in  screen of table control.I want to make it as output screen only.

    Hi all
      In the component overview screen of CO01 I want  to disable all  the field in  screen of table control.I want to make it as output screen only.
    Thanks & Regards,
    Rajib.

    Isn't that just exactly what transaction CO02 does? CO01 is for creating production orders so what sense does it make to have it display mode only?
    Maybe your goal is to stop then end user changing the component assignment that is automatically  detected by the system. If so, personally I think a better starting point would be PP configuration or user authorizations rather than looking to change the screen by whatever method. As we don't know what you are trying to achieve it's hard to offer much more advice maybe all you need is to change transaction to CO02

  • SCREEN INTERNAL TABLE ATTRIBUTES

    Hi
    In the screen internal table attributes i have seen four groups namely by group1 to 4.
    My doubt is what is the concept behind this??
    How to find out the screen group for a particular field??
    it is already assigned or we have to assign it??
    Thanks and Regards
    Arun Joseph

    Hi Arun,
    (1)  what is the concept behind this??
    I will try to give a simple example for the same
    Imagine a field called TEST1 and test2 for which in the screen we have 4 groups
    Now the requirement is that
    (1) when user enters transaction X1 he needs to see the field TEST1 and TEST2
    (2) when user enters transaction X1 he needs to see the field TEST1 and dont want to see TEST2
    so if tcode =  X1
    we need both TEST1 and TEST2
    so in group1 (first of the 4 boxes we write G1 for both TEST1 and TEST2)
    we write the code
    loop at screen
    if screen-group1 = 'G1'
    screen-active = 1.
    else screen-active = 0.
    so if tcode =  X1
    we need to see TEST1 and hide TEST2
    in the second box of the group we write G2 only for TEST1
    we write the code
    loop at screen
    if screen-group2 = 'G1'
    screen-active = 1.
    else screen-active = 0.
    since TEST2 second box is empty the above code will execute the else part and hide field TEST2 but show TEST1
    In short screen groups help us group a particular set of screen fields based on a particular requirement
    in this case just 2 are mentioned , imagine a case with 10 fields,we can easily control thier screen properties through code by grouping them
    (2) How to find out the screen group for a particular field??
    Check the screen properties of the field in the screen painter and see which all groups are filled
    In the screen painter just see the boxes which are filled for "Group"
    if the first box is filled then in the ABAP code
    check by writing if screen-group1 = 'XX'
    if the second box is filled then in the ABAP code
    check by writing if screen-group2 = 'XX'
    the third box is filled then in the ABAP code
    check by writing if screen-group3 = 'XX'
    the fourth box is filled then in the ABAP code
    check by writing if screen-group4 = 'XX'
    this replaces the check  if screen-name = a field and checks which all fields fall under a group and does action on all the fields based on the code written
    (3)it is already assigned or we have to assign it??
    If it is a stndard program then it comes predefined if the group property of the screen is used to control it..to change it an access key maybe required provided there are no user exits for the same
    in a custom program we can fill the group properties of a screen element
    Pls revert if you need more clarifications
    Reward if helpful
    Regards
    Byju

  • Following a message saying that my Startup disc was full and advising me to delete some files, I deleted my trash but then apps started to fail. When I tried to log on again, all I got was a blank screen and a cursor. I am a Mac Book Pro virgin, help

    Following a message saying that my Startup disc was full and advising me to delete some files, I deleted my trash but then apps started to fail. When I tried to log on again, all I got was a blank screen and a cursor, so I am unable to delete any more files. I am a Mac Book Pro virgin, help

    How much free space do you actually have? Go to the Apple menu and select About This Mac... More Info... and click on the Storage tab. You should see something like this...
    This will show you how much free space you have and what's taking up all the space on your hard drive. You may need to backup and trash some seldom used files, applications, etc. You have to drag them into the Trash and empty the trash to regain the space. A general rule of thumb is that you should have about 15% of your hard drive storage free.
    Good luck,
    Clinton

  • On startup Mac Pro I get a blue screen and a cursor on the upper left. The mouse cursor shows up independently. Is it likely a video card failure?

    On startup Mac Pro I get a blue screen and a cursor on the upper left. The mouse cursor shows up independently. Is it likely a video card failure?

    I managed to boot the computer and get the desktop to show. I now have a "repaired" computer. There are several problems that have cropped up. One is that I can only start up now in Safe Boot mode. Is there a way to turn it off? Also, I do not have a sound list, so I can't access anything requiring audio. Google Chrome only shows up as a white screen. Pictures that loaded before don't load in browsers, etc. Any suggestions? I figure I should reinstall Mac OS Lion for starts, maybe even do a mirror backup and reformat the drive. I think this drive has turned into scrambled eggs...what a headache!

  • When i type in my correct password on the login screen and press enter it just goes to a blue screen for a few seconds then goes back to the same login screen again, please i need help?

    When i type in my correct password on the login screen and press enter it just goes to a blue screen for a few seconds then goes back to the same login screen again, please i need help?

    You can take some of the steps here, #4, #5 or even trying a #18
    Step by Step to fix your Mac
    but I suspect your going to first have to create a data recovery drive
    Create a data recovery, undelete boot drive
    to get your data off the machine,
    then do a #20 to eliminate the bad sectors as that's why your getting the "pinwheel" it's getting a delay reading from the drive, right when your trying to log in too, what a bad spot for it to happen.
    Step by Step to fix your Mac

  • Black screen with blinking cursor when installing win 7/vista x64 osx 10.6

    i am using bootcamp 3 to install windows 7/vista x64 on osx 10.6.6.when i select install mac reboots and then all i get is a black screen with white cursor.
    i have created a 20gb partition with disk utility in fat32 and i had installed windows successfully when i was on osx 10.5.i tried erasing and creating new partition but same problem.
    any help will be appreciated

    This solved it for me!
    From another forum:
    "1. Put the Windows 7 installation disc in the disc drive, and then start your computer.
    2. Hold down Option key till all available disks are displayed and select DVD. Press a key when you are prompted.
    3. Select a language, a time, a currency, a keyboard or an input method, and then 4. click Next.
    5. Click Repair your computer.
    6. Click the operating system that you want to repair, and then click Next.
    7.In the System Recovery Options dialog box, click Command Prompt.
    Type (these commands are safe)
    Code: Bootrec.exe /FixMbr
    Code: Bootrec.exe /FixBoot
    Code: Bootrec.exe /RebuildBcd
    *Press ENTER after each command.*
    *Restart your computer.* "

  • Server 2008 crash - black screen with mouse cursor

    dell poweredge 2950 with Perc 5/I RAID, ESXi 4.1 host, Windows Server 2008 R2 SP1 VM
    After swapping out a failed raid5 drive this vm began displaying inpage operation error popups while checking folder permissions.  event viewer errors: 
    The file system structure on the disk is corrupt and unusable. Please run the chkdsk utility on the volume \Device\HarddiskVolume2.
     The file system structure on the disk is corrupt and unusable. Please run the chkdsk utility on the volume C:.
    chkdsk /r run from the win2k8r2sp1 install dvd command line resulted in more corrections than i was able to screenshot:
    After this the server would only boot to black screen with mouse cursor.  same black screen result in safe mode or directory services restore mode.  sfc /scannow, startrep, and registry repair from the folder contents @ c:\windows\system32\config\regback
    have been attempted with no improvement.  I am still able to access the filesystem contents using the command line from the win2k8r2sp1 installation DVD -  user + registry files copied over to another drive without problem and i was able to load
    the registry hive on another system.  This server was doing dns, domain controller and certification authority but the only important item is getting the CA back somehow.  Any suggestions are welcome.

    Hi,
    According the information you have provided, the file system is broken.
    After the repair, do chkdsk /r and sfc /scannow give any warning or error?
    If yes, it means that the file system and system file are not repaired. Please post the error or warning here. It may give some hints.
    Best Regards.
    Steven Lee
    TechNet Community Support

  • Gnome Black Screen with Mouse Cursor after Login

    I am using Archlinux 64bit with a Gnome Desktop Environment. Everything was running normally uptill today. When i ran "sudo fc-cache", my system froze. I couldnt open any other app but i was able to access terminal. I restarted using "reboot" command. After that I was unable to log in to my desktop.
    The Gnome login screen comes and after entering the correct username and password, all I can see is a black screen with mouse cursor. I then started gnome manually with "startx" and it worked. But still I am unable to use normally (that is the graphical login). I reinstalled gdm but it didnt work. Please help me out.

    there are a lot of processess running... dunno killing which process will not cause a problem
    here is the xorg log  ( sorry i dont have much knowlegde to analyse it )
    [ 2957.489]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 2957.493] X Protocol Version 11, Revision 0
    [ 2957.494] Build Operating System: Linux 3.16.1-1-ARCH x86_64
    [ 2957.495] Current Operating System: Linux defo-arch 3.17.1-1-ARCH #1 SMP PREEMPT Wed Oct 15 15:04:35 CEST 2014 x86_64
    [ 2957.495] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=3c376af4-e330-4277-8bfa-388dabfced9e rw quiet
    [ 2957.497] Build Date: 21 September 2014 10:53:13AM
    [ 2957.498]
    [ 2957.499] Current version of pixman: 0.32.6
    [ 2957.501] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2957.501] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2957.506] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Oct 26 01:36:27 2014
    [ 2957.507] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 2957.507] (==) No Layout section. Using the first Screen section.
    [ 2957.507] (==) No screen section available. Using defaults.
    [ 2957.507] (**) |-->Screen "Default Screen Section" (0)
    [ 2957.507] (**) | |-->Monitor "<default monitor>"
    [ 2957.507] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 2957.507] (==) Automatically adding devices
    [ 2957.507] (==) Automatically enabling devices
    [ 2957.507] (==) Automatically adding GPU devices
    [ 2957.507] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 2957.507] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 2957.507] (==) FontPath set to:
    /usr/share/fonts/misc/
    [ 2957.507] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2957.507] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2957.507] (II) Loader magic: 0x818d80
    [ 2957.507] (II) Module ABI versions:
    [ 2957.507] X.Org ANSI C Emulation: 0.4
    [ 2957.507] X.Org Video Driver: 18.0
    [ 2957.507] X.Org XInput driver : 21.0
    [ 2957.507] X.Org Server Extension : 8.0
    [ 2957.509] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 2957.509] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 2957.510] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 2957.512] (--) PCI:*(0:0:2:0) 8086:2a02:1028:022f rev 12, Mem @ 0xfea00000/1048576, 0xe0000000/268435456, I/O @ 0x0000eff8/8
    [ 2957.512] (--) PCI: (0:0:2:1) 8086:2a03:1028:022f rev 12, Mem @ 0xfeb00000/1048576
    [ 2957.512] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 2957.512] (II) LoadModule: "glx"
    [ 2957.512] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2957.514] (II) Module glx: vendor="X.Org Foundation"
    [ 2957.514] compiled for 1.16.1, module version = 1.0.0
    [ 2957.514] ABI class: X.Org Server Extension, version 8.0
    [ 2957.514] (==) AIGLX enabled
    [ 2957.514] (==) Matched intel as autoconfigured driver 0
    [ 2957.514] (==) Matched intel as autoconfigured driver 1
    [ 2957.514] (==) Matched modesetting as autoconfigured driver 2
    [ 2957.514] (==) Matched fbdev as autoconfigured driver 3
    [ 2957.514] (==) Matched vesa as autoconfigured driver 4
    [ 2957.514] (==) Assigned the driver to the xf86ConfigLayout
    [ 2957.514] (II) LoadModule: "intel"
    [ 2957.514] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 2957.515] (II) Module intel: vendor="X.Org Foundation"
    [ 2957.515] compiled for 1.16.1, module version = 2.99.916
    [ 2957.515] Module class: X.Org Video Driver
    [ 2957.515] ABI class: X.Org Video Driver, version 18.0
    [ 2957.515] (II) LoadModule: "modesetting"
    [ 2957.515] (WW) Warning, couldn't open module modesetting
    [ 2957.515] (II) UnloadModule: "modesetting"
    [ 2957.515] (II) Unloading modesetting
    [ 2957.515] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 2957.515] (II) LoadModule: "fbdev"
    [ 2957.515] (WW) Warning, couldn't open module fbdev
    [ 2957.515] (II) UnloadModule: "fbdev"
    [ 2957.515] (II) Unloading fbdev
    [ 2957.515] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 2957.515] (II) LoadModule: "vesa"
    [ 2957.515] (WW) Warning, couldn't open module vesa
    [ 2957.515] (II) UnloadModule: "vesa"
    [ 2957.515] (II) Unloading vesa
    [ 2957.515] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 2957.515] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 2957.516] (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
    [ 2957.516] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
    [ 2957.516] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
    [ 2957.516] (++) using VT number 1
    [ 2957.516] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 2957.516] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20140725
    [ 2957.516] (--) intel(0): Integrated Graphics Chipset: Intel(R) 965GM
    [ 2957.517] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1
    [ 2957.517] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 2957.517] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 2957.517] (==) intel(0): RGB weight 888
    [ 2957.517] (==) intel(0): Default visual is TrueColor
    [ 2957.517] (II) intel(0): Output LVDS1 has no monitor section
    [ 2957.517] (--) intel(0): Found backlight control interface acpi_video0 (type 'firmware') for output LVDS1
    [ 2957.517] (II) intel(0): Enabled output LVDS1
    [ 2957.517] (II) intel(0): Output VGA1 has no monitor section
    [ 2957.517] (II) intel(0): Enabled output VGA1
    [ 2957.517] (II) intel(0): Output HDMI1 has no monitor section
    [ 2957.517] (II) intel(0): Enabled output HDMI1
    [ 2957.517] (II) intel(0): Output TV1 has no monitor section
    [ 2957.517] (II) intel(0): Enabled output TV1
    [ 2957.517] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
    [ 2957.517] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 2957.517] (II) intel(0): Enabled output VIRTUAL1
    [ 2957.517] (--) intel(0): Output LVDS1 using initial mode 1280x800 on pipe 1
    [ 2957.517] (==) intel(0): TearFree disabled
    [ 2957.517] (==) intel(0): DPI set to (96, 96)
    [ 2957.517] (II) Loading sub module "dri2"
    [ 2957.517] (II) LoadModule: "dri2"
    [ 2957.517] (II) Module "dri2" already built-in
    [ 2957.517] (II) Loading sub module "present"
    [ 2957.517] (II) LoadModule: "present"
    [ 2957.517] (II) Module "present" already built-in
    [ 2957.517] (==) Depth 24 pixmap format is 32 bpp
    [ 2957.518] (II) intel(0): SNA initialized with Broadwater (gen4) backend
    [ 2957.518] (==) intel(0): Backing store enabled
    [ 2957.518] (==) intel(0): Silken mouse enabled
    [ 2957.518] (II) intel(0): HW Cursor enabled
    [ 2957.518] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 2957.518] (==) intel(0): DPMS enabled
    [ 2957.518] (II) intel(0): [XvMC] i965_xvmc driver initialized.
    [ 2957.518] (II) intel(0): [DRI2] Setup complete
    [ 2957.518] (II) intel(0): [DRI2] DRI driver: i965
    [ 2957.518] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 2957.518] (II) intel(0): direct rendering: DRI2 enabled
    [ 2957.518] (II) intel(0): hardware support for Present enabled
    [ 2957.518] (==) intel(0): display hotplug detection enabled
    [ 2957.518] (--) RandR disabled
    [ 2957.569] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 2957.569] (II) AIGLX: enabled GLX_ARB_create_context
    [ 2957.569] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 2957.569] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 2957.569] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 2957.569] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 2957.569] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 2957.569] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 2957.569] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 2957.569] (II) AIGLX: Loaded and initialized i965
    [ 2957.569] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 2957.576] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 1, position (0, 0), rotation normal, reflection none
    [ 2957.583] (II) intel(0): Setting screen physical size to 338 x 211
    [ 2957.636] (II) config/udev: Adding input device Video Bus (/dev/input/event12)
    [ 2957.636] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 2957.636] (II) LoadModule: "evdev"
    [ 2957.636] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 2957.637] (II) Module evdev: vendor="X.Org Foundation"
    [ 2957.637] compiled for 1.16.0, module version = 2.9.0
    [ 2957.637] Module class: X.Org XInput Driver
    [ 2957.637] ABI class: X.Org XInput driver, version 21.0
    [ 2957.637] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 15 paused 0
    [ 2957.637] (II) Using input driver 'evdev' for 'Video Bus'
    [ 2957.638] (**) Video Bus: always reports core events
    [ 2957.638] (**) evdev: Video Bus: Device: "/dev/input/event12"
    [ 2957.638] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 2957.638] (--) evdev: Video Bus: Found keys
    [ 2957.638] (II) evdev: Video Bus: Configuring as keyboard
    [ 2957.638] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input19/event12"
    [ 2957.638] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
    [ 2957.638] (**) Option "xkb_rules" "evdev"
    [ 2957.638] (**) Option "xkb_model" "pc104"
    [ 2957.638] (**) Option "xkb_layout" "us"
    [ 2957.669] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 2957.670] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2957.670] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 16 paused 0
    [ 2957.670] (II) Using input driver 'evdev' for 'Power Button'
    [ 2957.670] (**) Power Button: always reports core events
    [ 2957.670] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 2957.670] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2957.670] (--) evdev: Power Button: Found keys
    [ 2957.670] (II) evdev: Power Button: Configuring as keyboard
    [ 2957.670] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6/event2"
    [ 2957.670] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 2957.670] (**) Option "xkb_rules" "evdev"
    [ 2957.670] (**) Option "xkb_model" "pc104"
    [ 2957.670] (**) Option "xkb_layout" "us"
    [ 2957.671] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 2957.671] (II) No input driver specified, ignoring this device.
    [ 2957.671] (II) This device may have been added with another device file.
    [ 2957.671] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
    [ 2957.671] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 2957.672] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 17 paused 0
    [ 2957.672] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 2957.672] (**) Sleep Button: always reports core events
    [ 2957.672] (**) evdev: Sleep Button: Device: "/dev/input/event3"
    [ 2957.672] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 2957.672] (--) evdev: Sleep Button: Found keys
    [ 2957.672] (II) evdev: Sleep Button: Configuring as keyboard
    [ 2957.672] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7/event3"
    [ 2957.672] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 2957.672] (**) Option "xkb_rules" "evdev"
    [ 2957.672] (**) Option "xkb_model" "pc104"
    [ 2957.672] (**) Option "xkb_layout" "us"
    [ 2957.673] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event6)
    [ 2957.673] (II) No input driver specified, ignoring this device.
    [ 2957.673] (II) This device may have been added with another device file.
    [ 2957.673] (II) config/udev: Adding input device HDA Intel HDMI/DP,pcm=3 (/dev/input/event7)
    [ 2957.673] (II) No input driver specified, ignoring this device.
    [ 2957.673] (II) This device may have been added with another device file.
    [ 2957.673] (II) config/udev: Adding input device HDA Intel Front Headphone Front (/dev/input/event8)
    [ 2957.673] (II) No input driver specified, ignoring this device.
    [ 2957.673] (II) This device may have been added with another device file.
    [ 2957.674] (II) config/udev: Adding input device HDA Intel Front Headphone Surround (/dev/input/event9)
    [ 2957.674] (II) No input driver specified, ignoring this device.
    [ 2957.674] (II) This device may have been added with another device file.
    [ 2957.674] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 2957.674] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 2957.675] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 18 paused 0
    [ 2957.675] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 2957.675] (**) AT Translated Set 2 keyboard: always reports core events
    [ 2957.675] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 2957.675] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 2957.675] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 2957.675] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 2957.675] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 2957.675] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 2957.675] (**) Option "xkb_rules" "evdev"
    [ 2957.675] (**) Option "xkb_model" "pc104"
    [ 2957.675] (**) Option "xkb_layout" "us"
    [ 2957.675] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/event11)
    [ 2957.675] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "evdev touchpad catchall"
    [ 2957.675] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "touchpad catchall"
    [ 2957.675] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "Default clickpad buttons"
    [ 2957.675] (II) LoadModule: "synaptics"
    [ 2957.676] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 2957.676] (II) Module synaptics: vendor="X.Org Foundation"
    [ 2957.676] compiled for 1.16.0, module version = 1.8.1
    [ 2957.676] Module class: X.Org XInput Driver
    [ 2957.676] ABI class: X.Org XInput driver, version 21.0
    [ 2957.676] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 19 paused 0
    [ 2957.676] (II) Using input driver 'synaptics' for 'AlpsPS/2 ALPS GlidePoint'
    [ 2957.676] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    [ 2957.676] (**) Option "Device" "/dev/input/event11"
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: x-axis range 0 - 1023 (res 0)
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: y-axis range 0 - 767 (res 0)
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: pressure range 0 - 127
    [ 2957.710] (II) synaptics: AlpsPS/2 ALPS GlidePoint: device does not report finger width.
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: buttons: left right middle
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: Vendor 0x2 Product 0x8
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: invalid finger width range. defaulting to 0 - 15
    [ 2957.710] (**) Option "TapButton1" "1"
    [ 2957.710] (**) Option "TapButton2" "2"
    [ 2957.710] (**) Option "TapButton3" "3"
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    [ 2957.710] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input10/event11"
    [ 2957.710] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD, id 10)
    [ 2957.710] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) MinSpeed is now constant deceleration 2.5
    [ 2957.710] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) MaxSpeed is now 1.75
    [ 2957.710] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) AccelFactor is now 0.156
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration profile 1
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration factor: 2.000
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration threshold: 4
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    [ 2957.711] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/mouse1)
    [ 2957.711] (**) AlpsPS/2 ALPS GlidePoint: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 2957.711] (II) config/udev: Adding input device ALPS PS/2 Device (/dev/input/event10)
    [ 2957.711] (**) ALPS PS/2 Device: Applying InputClass "evdev pointer catchall"
    [ 2957.712] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 20 paused 0
    [ 2957.712] (II) Using input driver 'evdev' for 'ALPS PS/2 Device'
    [ 2957.712] (**) ALPS PS/2 Device: always reports core events
    [ 2957.712] (**) evdev: ALPS PS/2 Device: Device: "/dev/input/event10"
    [ 2957.712] (--) evdev: ALPS PS/2 Device: Vendor 0x2 Product 0x8
    [ 2957.712] (--) evdev: ALPS PS/2 Device: Found 3 mouse buttons
    [ 2957.712] (--) evdev: ALPS PS/2 Device: Found relative axes
    [ 2957.712] (--) evdev: ALPS PS/2 Device: Found x and y relative axes
    [ 2957.712] (II) evdev: ALPS PS/2 Device: Configuring as mouse
    [ 2957.712] (**) evdev: ALPS PS/2 Device: YAxisMapping: buttons 4 and 5
    [ 2957.712] (**) evdev: ALPS PS/2 Device: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 2957.712] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input12/event10"
    [ 2957.712] (II) XINPUT: Adding extended input device "ALPS PS/2 Device" (type: MOUSE, id 11)
    [ 2957.712] (II) evdev: ALPS PS/2 Device: initialized for relative axes.
    [ 2957.712] (**) ALPS PS/2 Device: (accel) keeping acceleration scheme 1
    [ 2957.712] (**) ALPS PS/2 Device: (accel) acceleration profile 0
    [ 2957.712] (**) ALPS PS/2 Device: (accel) acceleration factor: 2.000
    [ 2957.712] (**) ALPS PS/2 Device: (accel) acceleration threshold: 4
    [ 2957.713] (II) config/udev: Adding input device ALPS PS/2 Device (/dev/input/mouse0)
    [ 2957.713] (II) No input driver specified, ignoring this device.
    [ 2957.713] (II) This device may have been added with another device file.
    [ 2957.713] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 2957.713] (II) No input driver specified, ignoring this device.
    [ 2957.713] (II) This device may have been added with another device file.
    [ 2957.714] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event5)
    [ 2957.714] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 2957.714] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 21 paused 0
    [ 2957.714] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
    [ 2957.714] (**) Dell WMI hotkeys: always reports core events
    [ 2957.714] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event5"
    [ 2957.714] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
    [ 2957.714] (--) evdev: Dell WMI hotkeys: Found keys
    [ 2957.714] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
    [ 2957.714] (**) Option "config_info" "udev:/sys/devices/virtual/input/input11/event5"
    [ 2957.714] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 12)
    [ 2957.714] (**) Option "xkb_rules" "evdev"
    [ 2957.714] (**) Option "xkb_model" "pc104"
    [ 2957.714] (**) Option "xkb_layout" "us"
    [ 2963.887] (II) evdev: Dell WMI hotkeys: Close
    [ 2963.887] (II) UnloadModule: "evdev"
    [ 2963.887] (II) systemd-logind: releasing fd for 13:69
    [ 2963.949] (II) evdev: ALPS PS/2 Device: Close
    [ 2963.950] (II) UnloadModule: "evdev"
    [ 2963.950] (II) systemd-logind: releasing fd for 13:74
    [ 2964.016] (II) UnloadModule: "synaptics"
    [ 2964.016] (II) systemd-logind: releasing fd for 13:75
    [ 2964.069] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 2964.070] (II) UnloadModule: "evdev"
    [ 2964.070] (II) systemd-logind: releasing fd for 13:64
    [ 2964.123] (II) evdev: Sleep Button: Close
    [ 2964.123] (II) UnloadModule: "evdev"
    [ 2964.123] (II) systemd-logind: releasing fd for 13:67
    [ 2964.156] (II) evdev: Power Button: Close
    [ 2964.156] (II) UnloadModule: "evdev"
    [ 2964.156] (II) systemd-logind: releasing fd for 13:66
    [ 2964.183] (II) evdev: Video Bus: Close
    [ 2964.183] (II) UnloadModule: "evdev"
    [ 2964.183] (II) systemd-logind: releasing fd for 13:76
    [ 2964.271] (EE) Server terminated successfully (0). Closing log file.

  • Will a new MotherBoar​d cure Blank Screen with blinking cursor?

    Stuck with Blank Screen with blinking cursor; ESC key couldn’t bring up Startup Menu; OS is not loading
    Product Name: HP G62 237 CA Notebook PC
    Short description of the problems:   
    --- Press ESC key couldn’t bring up Startup Menu when booting up
    --- Blank screen with blinking cursor thereafter
    --- Stuck here forever and OS is not loading
    DETAILED INFORMATION:
    Product Name and Operating System:      
    Model: HP G62 237 CA Notebook PC
    O/S: Pre-loaded with Win 7 Home Prem
    Processor: Pent. Dual-Core CPU T4500 2.30GHz
    Memory: 4GB
    BIOS Ver. (Insyde): F.17
    System BOARD ID: 1484
    Product #: WQ767UA#ABC
    Product Config ID: 049C110000202710000020000
    Problem History:     
    --- Used to have frequent BSOD (got fixed later because of faulty RAM that I suspected)
    --- Window couldn’t be loaded
    --- Window Repair and HP Recovery were tried but not functioning
    --- OEM Hard Drive was then removed & formatted few times by using other computer
    --- Hard Drive was then tested by other computer; it can be installed Win XP & Win 7
    --- So, Hard Drive was eliminated from the suspect list
    --- Replaced with other good RAM from other computers & put back the OEM Hard Drive to my HP G62; everything worked fine, such as: able to reinstall Win 7; listening to music files; got Internet to download latest BIOS from HP support site; connected to my 42 inched TV as my monitor; and even smoothly updated the BIOS from v.17 to v.37!
    --- Also, able to receive Window Updates from the Internet; and seemed that all problems were nicely solved
    --- Once I believe my system got stabilized; I went back to test the 2 supposedly problematic RAM to see whether they were both faulty or not, then the whole thing has turned around! Completely screwed me up until this moment …
    --- After put back the problematic RAM, Window couldn’t be loaded …
    --- With a few error messages… such as,
    --- The file is possibly corrupt. The file header checksum does not match the computed checksum;
    --- After the next reboot… an unexpected screen message showed up:
    Intel ® Cantiga PCI Accelerated SVGA BIOS
    Build Number: 1932 PC 14.34 11/11/2009 02:36:14
    DECOMPILATION OR DISASSEMBLY PROHIBITED
    Copyright © 2000-2003 Intel Corp. All Rights Reserved.
    --- After that, OS was not loading …
    --- Press ESC key couldn’t bring up the Startup Menu during boot up
    --- Blank screen with blinking cursor thereafter and seems stuck here forever
    Procedures performed for troubleshooting:
    Tried hard reset for more than 5 times (removed battery, AC adapter disconnected and then hold down the Power button for more than 60 secs) and tried reseating memory too; same result with Blank Screen with blinking cursor after each reboot.
    Connected to an external monitor [Fn + F4/F5] to see whether there was any display, nothing has showed on the external monitor, it seemed that no connection established between the two.
    Finally, took the long journey to follow the Service and Maintenance Guide of HP G62 to remove the CMOS battery for well over 15 minutes and put it back. But the result was again disappointed. Tried 4 times already. The latest error message is:      
    The CMOS checksum is invalid. The CMOS will be reset to the default configuration and will be rebooted. Please check your BIOS Setup options to see if they change.
    CMOS Reset (502)
    ENTER – Reboot the system
    After this message, the same Blank Screen with blinking cursor came back. And pressing the ESC key couldn’t bring up Startup Menu when booting up …
    Note: the fan is still running; the Power button is functioning but seems stuck here forever!
    I’ve already carefully read this HP Support document titled “HP BIOS Application Selected is Corrupt or Missing”:
    http://h10010.www1.hp.com/ewfrf/wc/document?cc=us&​lc=en&dlc=en&docname=c01443485#N144
    If really is the BIOS problems, then I will have the difficulties of updating a Window-based BIOS when I couldn’t even load Window!
    (Note: Boot from USB has no point because right now I couldn’t change the boot sequence because the various “Startup Menu” options are not showing up!)  
    Secondly, I am still stuck with the Blank Screen with a blinking cursor after I passed the first screen of “Press the ESC key for Startup Menu” when re-booted again!
    Thirdly, I have formatted my Hard Drive more than 3 times during the last few days for testing; I don’t have the OEM pre-loaded Win 7 with me anyone … and I don’t think I have the UEFI installed previously on my system. I did try hold down the Win Key + B with the most updated BIOS in the attached USB …, it came back with the same blank screen with a cursor blinking after reboot.
    Note: the Blank Screen I’m experiencing right now is not completely black, in fact, there is background light from behind the screen and on each reboot, I can see the HP logo and the left corner message of: “Press ESC key for Startup Menu” … So, I suppose that my computer screen is not physically broken at least.
    Requests:
    Please explain to me that what are the problem areas and the root causes if is possible?
    What steps or other tests can be done to make it work again?
    Do you think replacing the entire MotherBoard can cure the Blank Screen with blinking cursor?
    [Warranty: expired! I am the original purchaser & the end-user of this HP G62; acquired 2 years ago directly from a trustworthy source: staples (in Canada). Would HP Support still willing to service it for an extra charge?]
    Thanks in advance for any suggestion and idea!
    Owenson
    ===========================================

    Stuck with Blank Screen with blinking cursor; ESC key couldn’t bring up Startup Menu; OS is not loading
    Product Name: HP G62 237 CA Notebook PC
    Short description of the problems:   
    --- Press ESC key couldn’t bring up Startup Menu when booting up
    --- Blank screen with blinking cursor thereafter
    --- Stuck here forever and OS is not loading
    DETAILED INFORMATION:
    Product Name and Operating System:      
    Model: HP G62 237 CA Notebook PC
    O/S: Pre-loaded with Win 7 Home Prem
    Processor: Pent. Dual-Core CPU T4500 2.30GHz
    Memory: 4GB
    BIOS Ver. (Insyde): F.17
    System BOARD ID: 1484
    Product #: WQ767UA#ABC
    Product Config ID: 049C110000202710000020000
    Problem History:     
    --- Used to have frequent BSOD (got fixed later because of faulty RAM that I suspected)
    --- Window couldn’t be loaded
    --- Window Repair and HP Recovery were tried but not functioning
    --- OEM Hard Drive was then removed & formatted few times by using other computer
    --- Hard Drive was then tested by other computer; it can be installed Win XP & Win 7
    --- So, Hard Drive was eliminated from the suspect list
    --- Replaced with other good RAM from other computers & put back the OEM Hard Drive to my HP G62; everything worked fine, such as: able to reinstall Win 7; listening to music files; got Internet to download latest BIOS from HP support site; connected to my 42 inched TV as my monitor; and even smoothly updated the BIOS from v.17 to v.37!
    --- Also, able to receive Window Updates from the Internet; and seemed that all problems were nicely solved
    --- Once I believe my system got stabilized; I went back to test the 2 supposedly problematic RAM to see whether they were both faulty or not, then the whole thing has turned around! Completely screwed me up until this moment …
    --- After put back the problematic RAM, Window couldn’t be loaded …
    --- With a few error messages… such as,
    --- The file is possibly corrupt. The file header checksum does not match the computed checksum;
    --- After the next reboot… an unexpected screen message showed up:
    Intel ® Cantiga PCI Accelerated SVGA BIOS
    Build Number: 1932 PC 14.34 11/11/2009 02:36:14
    DECOMPILATION OR DISASSEMBLY PROHIBITED
    Copyright © 2000-2003 Intel Corp. All Rights Reserved.
    --- After that, OS was not loading …
    --- Press ESC key couldn’t bring up the Startup Menu during boot up
    --- Blank screen with blinking cursor thereafter and seems stuck here forever
    Procedures performed for troubleshooting:
    Tried hard reset for more than 5 times (removed battery, AC adapter disconnected and then hold down the Power button for more than 60 secs) and tried reseating memory too; same result with Blank Screen with blinking cursor after each reboot.
    Connected to an external monitor [Fn + F4/F5] to see whether there was any display, nothing has showed on the external monitor, it seemed that no connection established between the two.
    Finally, took the long journey to follow the Service and Maintenance Guide of HP G62 to remove the CMOS battery for well over 15 minutes and put it back. But the result was again disappointed. Tried 4 times already. The latest error message is:      
    The CMOS checksum is invalid. The CMOS will be reset to the default configuration and will be rebooted. Please check your BIOS Setup options to see if they change.
    CMOS Reset (502)
    ENTER – Reboot the system
    After this message, the same Blank Screen with blinking cursor came back. And pressing the ESC key couldn’t bring up Startup Menu when booting up …
    Note: the fan is still running; the Power button is functioning but seems stuck here forever!
    I’ve already carefully read this HP Support document titled “HP BIOS Application Selected is Corrupt or Missing”:
    http://h10010.www1.hp.com/ewfrf/wc/document?cc=us&​lc=en&dlc=en&docname=c01443485#N144
    If really is the BIOS problems, then I will have the difficulties of updating a Window-based BIOS when I couldn’t even load Window!
    (Note: Boot from USB has no point because right now I couldn’t change the boot sequence because the various “Startup Menu” options are not showing up!)  
    Secondly, I am still stuck with the Blank Screen with a blinking cursor after I passed the first screen of “Press the ESC key for Startup Menu” when re-booted again!
    Thirdly, I have formatted my Hard Drive more than 3 times during the last few days for testing; I don’t have the OEM pre-loaded Win 7 with me anyone … and I don’t think I have the UEFI installed previously on my system. I did try hold down the Win Key + B with the most updated BIOS in the attached USB …, it came back with the same blank screen with a cursor blinking after reboot.
    Note: the Blank Screen I’m experiencing right now is not completely black, in fact, there is background light from behind the screen and on each reboot, I can see the HP logo and the left corner message of: “Press ESC key for Startup Menu” … So, I suppose that my computer screen is not physically broken at least.
    Requests:
    Please explain to me that what are the problem areas and the root causes if is possible?
    What steps or other tests can be done to make it work again?
    Do you think replacing the entire MotherBoard can cure the Blank Screen with blinking cursor?
    [Warranty: expired! I am the original purchaser & the end-user of this HP G62; acquired 2 years ago directly from a trustworthy source: staples (in Canada). Would HP Support still willing to service it for an extra charge?]
    Thanks in advance for any suggestion and idea!
    Owenson
    ===========================================

  • My ipod touch is showing a screen that says it needs to be connected to itunes

    my ipod touch has a screen saying tht i need to connect it to itunes but when i plug it in my computer it doesnt show up and the screen doesnt go away. i dont know if it's a problem with my ipod or with my computer. please helpppppp

    - You can try another computer to help determine if it is a computer problem.
    - Also try:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows

  • The image came up on my screen saying that I need to connect my iPod to iTunes, but I have a passcode, so it won't allow me to. And I want to try and turn it off, but my touch screen doesn't seem to be working either. HELP!

    The image came up on my screen saying that I need to connect my iPod to iTunes, but I have a passcode, so it won't allow me to. And I want to try and turn it off, but my touch screen doesn't seem to be working either, so I can't even turn it off since you need to "slide to power off." HELP! I'm leaving on Thursday morning for six and a half weeks, and I absolutely need my iPod with me. I was just at the Apple store today for problems I was having with ANOTHER product, and I don't really want to drive all the way out to where my nearest store is (which is not very near) if I can figure this out at home. My iPod was working totally fine earlier today and last night, so I don't know what happened! Please, please, PLEASE HELP!

    Now it's allowing me to reboot (hold down power button and home button and restart), but every time it just comes up to the same thing: the connect to iTunes page. Which is not possible. And I refuse to restore my iPod. PLEASE HELP.

  • HT201413 i got a problem on my iPod touch 4 and bought it last month. It has an iTunes and usb port in it's screen. Do i need to have the receipt? because I lost it

    i got a problem on my iPod touch 4 and bought it last month. It has an iTunes and usb port in it's screen. Do i need to have the receipt? because I lost it

    That screen is asking you to connect the device to iTunes to restore it.
    tt2

Maybe you are looking for