1. It seems you would need some way of making a ramdisk to store the dos files on and then running windows 3.1 off of the usb drive and disabling the windows 3.1 32 bit disk access. about the freezing: This may be able to be fixed by setting certain command line switches while running the setup programRead more

    It seems you would need some way of making a ramdisk to store the dos files on and then running windows 3.1 off of the usb drive and disabling the windows 3.1 32 bit disk access. about the freezing: This may be able to be fixed by setting certain command line switches while running the setup program (I haven’t installed windows 3.1 recently but if i recall this was somewhat of a common problem.) are you installing from REAL dos or a dos prompt in windows? See less
    • 0
  2. All empty lines are ignored :@echo offsetlocal enabledelayedexpansionset /a p_max=0for /F "tokens=*" %%a in (test.txt) do (set /a p_max=!p_max!+1)set /a cnt=1for /F "tokens=*" %%a in (test.txt) do (if !cnt! LSS %p_max% echo %%aset /a cnt=!cnt!+1)

    All empty lines are ignored :

    @echo off
    setlocal enabledelayedexpansion

    set /a p_max=0

    for /F “tokens=*” %%a in (test.txt) do (
    set /a p_max=!p_max!+1
    )

    set /a cnt=1

    for /F “tokens=*” %%a in (test.txt) do (
    if !cnt! LSS %p_max% echo %%a
    set /a cnt=!cnt!+1
    )

    See less
    • 0
  3. :: ===== script starts here ===============:::: che.bat Sun 03-06-2012 13:13:54.10@echo off > newfile & setLocal enableDELAYedeXpansioNset C=set A=for /f "tokens=1* delims=[]" %%a in ('find /v /n "" ^< weather') do (echo.%%b|find "City Centre" > nul && if not defined C set C=%%aRead more

    :: ===== script starts here ===============
    ::
    :: che.bat Sun 03-06-2012 13:13:54.10
    @echo off > newfile & setLocal enableDELAYedeXpansioN

    set C=
    set A=

    for /f “tokens=1* delims=[]” %%a in (‘find /v /n “” ^< weather’) do (
    echo.%%b|find “City Centre” > nul && if not defined C set C=%%a
    echo.%%b|find “Around Melbourne” > nul && if not defined A set A=%%a
    )

    for /f “tokens=1* delims=[]” %%a in (‘find /v /n “” ^< weather’) do (
    if %%a equ !C! (
    set S=%%b
    set S=!S:City Centre=!
    >> newfile echo.!S!
    )
    if %%a gtr !C! if %%a lss !A! >> newfile echo.%%b
    )
    goto :eof

    ::====== script ends here =================

    =====================================
    Life is too important to be taken seriously.

    M2

    See less
    • 0
  4. I tend to agree that it is not a Windows problem. Windows XP is actually pretty good with memory management, a huge improvement on previous versions. If there were some inherent fault in Windows memory management it would have shown itself a long time ago.Having said that, free RAM is not a good indRead more

    I tend to agree that it is not a Windows problem. Windows XP is actually pretty good with memory management, a huge improvement on previous versions. If there were some inherent fault in Windows memory management it would have shown itself a long time ago.

    Having said that, free RAM is not a good indicator of how well memory is being managed. Windows will use all the memory it can get it hands on which is good thing as unused memory is wasted. It will free up allocated but currently unused memory as and when required,

    If the application requires 500 Mbs Windows will make 500 Mbs available by either freeing up allocated memory or swapping stuff out to virtual memory.

    How do you have virtual memory configured? It should be configured to allow Windows to manage it. Setting values yourself can cause untold problems unless you are very familiar with Windows memory management and the applications you are using. Make sure there is enough space on the drive where the swap file is stored. There should be at least 3 Gbs with 1.5 Gbs of RAM.

    Stuart

    See less
    • 0
  5. Hi Ace,at the bottom of the Youtube video is a bar showing the progress of both Download and Play (which gradually overlaps download).Start by checking Play lags behind and does not catch up to Download.If it does, the music will tend to stop. As Beachy advises, this could be caused by the speed ofRead more

    Hi Ace,

    at the bottom of the Youtube video is a bar showing the progress of both Download and Play (which gradually overlaps download).

    Start by checking Play lags behind and does not catch up to Download.

    If it does, the music will tend to stop. As Beachy advises, this could be caused by the speed of your internet connection. Alternatively you could be running another application that intermittently hogs your pc.

    You might also check you have the latest Flashplayer.

    Good Luck – Keep us posted.

    message edited by Mike Newcomb

    See less
    • 0
  6. Go to the plotter manufacturer's website. In the support section you should find the drivers for that plotter model.

    Go to the plotter manufacturer’s website. In the support section you should find the drivers for that plotter model. See less
    • 0
  7. Are you running FDISK? Without it you won't be able to create an MS-DOS partition (which DOS has to have to install---diskpart will not work). Here's my description (Reply #2) from a couple years ago on the way to do it from floppy (from step 2 onward):https://computing.net/answers/d...For a full DORead more

    Are you running FDISK? Without it you won’t be able to create an MS-DOS partition (which DOS has to have to install—diskpart will not work). Here’s my description (Reply #2) from a couple years ago on the way to do it from floppy (from step 2 onward):

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

    For a full DOS install, you have to have all DOS disks (not just a boot disk).

    “I’ve taken the hard drive out and connected it via IDE to SATA adapter to my modern computer.”

    “…the prompt fill flash a few times, move down a few spaces, then back, before skipping the drive and booting to windows instead.”

    Don’t attempt this on a machine that has Windows already on it. You could potentially bork the installation of it. Do it from the machine that will have the DOS drive installed on it.

    “Channeling the spirit of jboy…”

    message edited by T-R-A

    See less
    • 0
  8. Youi'd have to specify the path to the command statement unless there was a PATH statement in a previous line in autoexec.bat.So if, for example, it was in a directory named 123 the line in autoexec.bat would be:c:\123\123.exeIf it was in a subdirectory within 123 named, for example, sub, the line wRead more

    Youi’d have to specify the path to the command statement unless there was a PATH statement in a previous line in autoexec.bat.

    So if, for example, it was in a directory named 123 the line in autoexec.bat would be:

    c:\123\123.exe

    If it was in a subdirectory within 123 named, for example, sub, the line would be:

    c:\123\sub\123.exe

    and so on.

    You’re not really green until you’re soylent green.

    See less
    • 0
  9. "I had dismantled my processor and cleaned the fan and I set it back"You can't dismantle a processor. That's like saying you can dismantle a spoon."before I did the cleaning, I had no signs of any problem"Then it would seem that you damaged something either during disassembly or re-assembly."i justRead more

    “I had dismantled my processor and cleaned the fan and I set it back”

    You can’t dismantle a processor. That’s like saying you can dismantle a spoon.

    “before I did the cleaning, I had no signs of any problem”

    Then it would seem that you damaged something either during disassembly or re-assembly.

    “i just disconcted it from my motherboard socket with my heatsink and processor attached”

    Are you saying you left the CPU & heatsink in place & simply removed the fan to clean the blades? Or that you ripped the CPU/heatsink combo out of the socket without separating them? Generally, the CPU cannot be removed from the socket without 1st removing the heatsink because the heatsink blocks access to the CPU locking lever. Just in case you ever attempt this again, what you should have done was run the computer for a while to heat up the CPU & soften the thermal material bewteen the CPU & heatsink. Then immediately shutdown the system, unplug the power cord, & unlatch the heatsink. Usually a slight twisting motion is all it will take to break it free from the CPU. Once the heatsink is off, you have access to the CPU locking lever.

    So if you did rip them out as a unit, how were you able to get the CPU reinstalled in the socket again without access to the locking lever?

    See less
    • 0
  10. In Windows Explorer open the file properties dialog from the context menu and select the Summary tab. There you will be able to enter a subject and other information as you wish. Windows itself does not use this information. This only works for NTFS formatted volumes.

    In Windows Explorer open the file properties dialog from the context menu and select the Summary tab. There you will be able to enter a subject and other information as you wish. Windows itself does not use this information. This only works for NTFS formatted volumes. See less
    • 0