1. Got it working again... When I upgraded Flash it had changed the camera settings... without telling you it does that! Thanks for your help.

    Got it working again… When I upgraded Flash it had changed the camera settings… without telling you it does that! Thanks for your help. See less
    • 0
  2. Seems to be a not-uncommon problem. Here's the first hit:http://forums.sandisk.com/t5/Sansa-...from this google search:https://www.google.com/#q=%22sansa+...

    Seems to be a not-uncommon problem. Here’s the first hit:

    http://forums.sandisk.com/t5/Sansa-…

    from this google search:

    https://www.google.com/#q=%22sansa+…

    See less
    • 0
  3. DAO was superseded by ADO over ten years ago.http://msdn.microsoft.com/en-us/lib...Stuart

    DAO was superseded by ADO over ten years ago.

    http://msdn.microsoft.com/en-us/lib…

    Stuart

    See less
    • 0
  4. what anti-virus and firewall are you using?Try to turn them both off and then install the software. Then turn them back on again

    what anti-virus and firewall are you using?
    Try to turn them both off and then install the software. Then turn them back on again

    See less
    • 0
  5. Un-install OneDrive, reboot and then re-install.

    Un-install OneDrive, reboot and then re-install. See less
    • 0
  6. So you're not able to boot from your recovery disks even though the drive they're in is set as the first boot device? Are you sure the disks are bootable and both the disk and drive are in good condition?Or are you having a problem changing the boot order? This recent thread goes on and on about booRead more

    So you’re not able to boot from your recovery disks even though the drive they’re in is set as the first boot device? Are you sure the disks are bootable and both the disk and drive are in good condition?

    Or are you having a problem changing the boot order? This recent thread goes on and on about boot priority with that bios. You may want to have a look:

    https://computing.net/answers/wi…

    See less
    • 0
  7. ::====== script starts here ===============:::: Xcolumns.bat 2016-09-12 11:59:41.42@echo off > NEWFILE & setLocal enableDELAYedeXpansioN:mainfor /f "tokens=* delims= " %%a in ('dir/b *.csv') do (call :sub1 %%amove NEWFILE %%~Na-NEW.CSV)goto :eof:sub1for /f "tokens=1-3,5-8 delims=," %%i in ('tRead more

    ::====== script starts here ===============
    ::
    :: Xcolumns.bat 2016-09-12 11:59:41.42
    @echo off > NEWFILE & setLocal enableDELAYedeXpansioN

    :main
    for /f “tokens=* delims= ” %%a in (‘dir/b *.csv’) do (
    call :sub1 %%a
    move NEWFILE %%~Na-NEW.CSV
    )
    goto :eof

    :sub1
    for /f “tokens=1-3,5-8 delims=,” %%i in (‘type %1’) do (
    echo.%%i, %%j, %%k, %%l, %%m, %%n, %%o
    ) >> NEWFILE
    goto :eof
    ::====== script ends here =================

    =====================

    M2 Get custom script or take private lessons

    See less
    • 0
  8. echo final result IN TMP. copy to dest or add the final move to batch-script...type tmpecho done.this line:rem move tmp %dest% should, or is supposed to, do the trick, by removing the 'rem' so it looks like:move /y tmp %dest%this will overwrite your destination file, so I left it de-activated pendinRead more

    echo final result IN TMP. copy to dest or add the final move to batch-script…
    type tmp
    echo done.

    this line:
    rem move tmp %dest%
    should, or is supposed to, do the trick, by removing the ‘rem’ so it looks like:

    move /y tmp %dest%

    this will overwrite your destination file, so I left it de-activated pending feedback of fail or success. Be sure, until you are sure, to back up your destination files just in case something does go wrong.
    ps: the “/y” was added to keep the system from asking “are you sure?” every time.

    message edited by nbrane

    See less
    • 0
  9. To answer your question literally, here's the batch file:@echo offsetlocal enabledelayedexpansionfor /f "delims=] tokens=1*" %%a in ('find /v /n "" ^<%1') do (set line=%%bif not "%line%" == "" set line=%line:,= %echo.!line!)But it sounds like you want to convert a comma-separated-values (.csv) fiRead more

    To answer your question literally, here’s the batch file:

    @echo off
    setlocal enabledelayedexpansion
    for /f “delims=] tokens=1*” %%a in (‘find /v /n “” ^<%1’) do (
    set line=%%b
    if not “%line%” == “” set line=%line:,= %
    echo.!line!
    )

    But it sounds like you want to convert a comma-separated-values (.csv) file to a tab-separated values file. If that’s the case, be careful. A simple comma-to-tab substitution doesn’t always work. Some values contain commas or tabs. They are enclosed in quotes if they do. So you need a more sophisticated utility to deal with csv files properly. Have a google and you should find something. Alternatively, open the csv in Excel and save it as a tab-delimited text file.

    See less
    • 0