1. You don't need a manual, sounds like you need a new power supply. What happens when you press the power button? Does it make an attempt to start?

    You don’t need a manual, sounds like you need a new power supply. What happens when you press the power button? Does it make an attempt to start? See less
    • 0
  2. Logs are usually plain text files, so if you connect the phone to a Windows PC you should able to open them in Notepad.

    Logs are usually plain text files, so if you connect the phone to a Windows PC you should able to open them in Notepad. See less
    • 0
  3. M$ has a video that shows you how to "Make older programs run in this version of Windows," along with cautions when using compatibility mode in Windows 7 (& Vista). Go HERE to watch it and learn what you do to avoid potential problems.i_Xp/Vista/W7User

    M$ has a video that shows you how to “Make older programs run in this version of Windows,” along with cautions when using compatibility mode in Windows 7 (& Vista). Go HERE to watch it and learn what you do to avoid potential problems.

    i_Xp/Vista/W7User

    See less
    • 0
  4. "Error:638: The remote server is not responding in a timely fashion" why is that?Does this error message only come up from one server. If so, it could very well be a problem with the server. If it's all servers then you have a bigger issue. Have you researched "error 638" in google? If not, start thRead more

    “Error:638: The remote server is not responding in a timely fashion” why is that?

    Does this error message only come up from one server. If so, it could very well be a problem with the server. If it’s all servers then you have a bigger issue.

    Have you researched “error 638” in google? If not, start there. In fact, the next time you have a problem, I would recommend doing research before you go post your problem on different forums all over the internet. You may just figure it out for yourself and save yourself some time and effort………..and do the same for those of us that try to help people.

    Please help me. I expect favourable reply!

    It’s always nice to be optimistic if not realistic.

    It matters not how straight the gate,
    How charged with punishments the scroll,
    I am the master of my fate;
    I am the captain of my soul.

    ***William Henley***

    See less
    • 0
  5. Probably. I would back up your data to something else like dvd's or external drive, just to be safe. You do not mention if the computer still boots. If the computer still loads windows seatools has a windows based program to download and test hard drives, works on most all of them, or you can checkRead more

    Probably. I would back up your data to something else like dvd’s or external drive, just to be safe. You do not mention if the computer still boots. If the computer still loads windows seatools has a windows based program to download and test hard drives, works on most all of them, or you can check the make on your hard drive and go to the manufacturer’s website and follow the directions to using their disk testing utility. Many times you download and ISO file and make a bootable cd (cause windows no longer loads in many cases), you boot to the cd on start up and run the short generic test and then the long, if it fails you know it’s time is about up.

    http://www.seagate.com/gb/en/suppor…

    See less
    • 0
  6. If you want to be sure you can copy working gif's then save them somewhere first "as files".Always pop back and let us know the outcome - thanks

    If you want to be sure you can copy working gif’s then save them somewhere first “as files”.

    Always pop back and let us know the outcome – thanks

    See less
    • 0
  7. do you have instructions owners booklet that came with it? if not goggle laptop name and model number.you can probably download the owners manual from the website which should explain it to you.Davidw

    do you have instructions owners booklet that came with it? if not goggle laptop name and model number.you can probably download the owners manual from the website which should explain it to you.

    Davidw

    See less
    • 0
  8. Test this. It is assumed that the second date will always be greater than the first, if not then you should code a routine to check this and branch to a suitable routine.@echo off cls setlocal set mm=7 set dd=14 set year=2011 call :convjdate set juldate=%jdate% set mm=7 set dd=20 set year=2011 callRead more

    Test this. It is assumed that the second date will always be greater than the first, if not then you should code a routine to check this and branch to a suitable routine.

    @echo off
    cls
    setlocal
    
    set mm=7
    set dd=14
    set year=2011
    call :convjdate
    set juldate=%jdate%
    
    set mm=7
    set dd=20
    set year=2011
    call :convjdate
    set juldate1=%jdate%
    
    set /a daydiff=%juldate1%-%juldate%
    
    echo Difference=%daydiff% days.
    exit /b
    
    :convjdate
    :: Convert Gregorian date to Julian date
    :: Algorithm based on Fliegel-Van Flandern
    :: algorithm from the Astronomical Almanac,
    :: provided by Doctor Fenton on the Math Forum
    :: (http://mathforum.org/library/drmath/view/51907.html),
    :: and converted to batch code by Ron Bakowski.
    
    SET /A Month1 = ( %MM% - 14 ) / 12
    SET /A Year1  = %year% + 4800
    SET /A jdate  = 1461 * ( %Year1% + %Month1% ) / 4 + 367 * ^
    ( %MM% - 2 -12 * %Month1% ) / 12 - ( 3 * ( ( %Year1% + %Month1% + 100 ) / ^
    100 ) ) / 4 + ^%DD% - 32075
    
    

    Please come back & tell us if your problem is resolved.

    See less
    • 0
  9. If my printer properties are set to Color, then this code will print a sheet in B&W;:Sub PrintBW ActiveSheet.PageSetup.BlackAndWhite = True ActiveSheet.PrintOut End Suband this code will print the sheet in color:Sub PrintColor ActiveSheet.PageSetup.BlackAndWhite = False ActiveSheet.PrintOut EndRead more

    If my printer properties are set to Color, then this code will print a sheet in B&W;:

    Sub PrintBW
      ActiveSheet.PageSetup.BlackAndWhite = True
      ActiveSheet.PrintOut
    End Sub

    and this code will print the sheet in color:

    Sub PrintColor
      ActiveSheet.PageSetup.BlackAndWhite = False
      ActiveSheet.PrintOut
    End Sub

    However, if my printer properties are set to Black/Grayscale, the False setting doesn’t appear to do anything. i.e. this code will not print the sheet in color.

    Sub PrintColor
      ActiveSheet.PageSetup.BlackAndWhite = False
      ActiveSheet.PrintOut
    End Sub

    Seems like the printer properties must be set to color for the “False” argument to work.

    Another option is to set up 2 printers on your system and print directly to the B&W; printer or the Color printer in your code. I realize that in some environments, that may not be possible.

    Click Here Before Posting Data or VBA Code —> How To Post Data or Code.

    See less
    • 0