1. Slightly shorter:----------------------------@echo offecho ***New top line*** > temp.txttype myfile >> temp.txtecho ***New bottom line*** >> temp.txtmove /y temp.txt myfile=====================================Helping others achieve escape felicityM2

    Slightly shorter:

    —————————-
    @echo off
    echo ***New top line*** > temp.txt
    type myfile >> temp.txt
    echo ***New bottom line*** >> temp.txt
    move /y temp.txt myfile

    =====================================
    Helping others achieve escape felicity

    M2

    See less
    • 0
  2. Burgurne had success with IsoBusterhttps://www.tenforums.com/software-...http://www.softpedia.com/get/CD-DVD...http://www.isobuster.com/isobuster.phphttp://www.isobuster.com/help.php?h...

    • 0
  3. So if the xml tag is <parent>, then why not:grep "<parent>" file.xml | wc -lIf you want to see how you'd write a script with a counter to do this, then try this:#!/bin/kshCounter=0Start=0exec 3<junk.xml.convwhile read -u3 linedo if [[ $line == *"<parent>" ]] && [[ $StartRead more

    So if the xml tag is <parent>, then why not:

    grep “<parent>” file.xml | wc -l

    If you want to see how you’d write a script with a counter to do this, then try this:

    #!/bin/ksh

    Counter=0
    Start=0

    exec 3<junk.xml.conv

    while read -u3 line
    do
    if [[ $line == *”<parent>” ]] && [[ $Start -eq 0 ]]
    then
    Start=1

    elif [[ $line == *”<parent>” ]] && [[ $Start -eq 1 ]]
    then
    print “Error, error!!! Must sterilize”
    exit 1
    elif [[ $line == *”</parent>” ]] && [[ $Start -eq 1 ]]
    then
    (( Counter += 1 ))
    Start=0
    print $Start
    fi
    done

    print $Counter

    I stuck that error check in there in the event a parent element doesn’t have a closing tag.

    See less
    • 0
  4. "Tell me, have you actually set up a webcam at 1080p"No, because I don't expect brilliant (or even decent) output from a webcam. The only webcam I have is the 720p integrated camera on my laptop, and even it reduces shutter speed to the point that most video looks as though it's being captured at ~1Read more

    “Tell me, have you actually set up a webcam at 1080p”

    No, because I don’t expect brilliant (or even decent) output from a webcam.

    The only webcam I have is the 720p integrated camera on my laptop, and even it reduces shutter speed to the point that most video looks as though it’s being captured at ~15fps. It does well enough in lots of sunlight though.

    “If you look at the uncompressed data rate of the video, it is 1.5 gbits/sec much higher than USB 2 can support.”

    Well, you’d need DVI or HDMI to transfer uncompressed 1080p video. That’s why all USB video devices either (a) make use of an integrated video encoder, or (b) stream video that has been pre-compressed (a USB blu-ray drive works this way).

    The video encoder is a fixed-function DSP–it’ll have no problem outputting a 10-30mbps 1080p h.264 video stream. If the computer on the other end is less than 8 years old, it should have no problem decoding that stream. However, the optics in webcams are quite poor and usually have trouble capturing HD video in less than stellar lighting conditions. To compensate, they cut shutter speed in half (sometimes even more) in order to make the output video a little easier to see. That reduced shutter speed is what makes the video choppy.

    DOS/9x Gaming Rig | Athlon 600 @ 672MHz w/ Golden Orb HSF | 384MB | 60GB
    Voodoo2 SLI + GeForce 256 DDR | SB Live | Asus K7V | 21″ NEC CRT | Win98SE

    See less
    • 0
  5. Look for game options or settings or during start of mission u should see difficulty.

    Look for game options or settings or during start of mission u should see difficulty. See less
    • -5
  6. Just a comment about your VLOOKUP()You have it written so that it searches the ENTIRE column Bwhich in Excel 2010 is 1,048,576That is a HUGE area to be searching and will take time.Do you really need to search the entire column?Wouldn't it be more efficient to search just those rows that are necessaRead more

    Just a comment about your VLOOKUP()

    You have it written so that it searches the ENTIRE column B
    which in Excel 2010 is 1,048,576

    That is a HUGE area to be searching and will take time.

    Do you really need to search the entire column?
    Wouldn’t it be more efficient to search just those rows that are necessary?

    MIKE

    http://www.skeptic.com/

    See less
    • 0
  7. Changing the name would have no effect on the contents of the file. If it doesn't open now as a jpeg then it's damaged.

    Changing the name would have no effect on the contents of the file. If it doesn’t open now as a jpeg then it’s damaged. See less
    • 0
  8. See the link below for an explanation. Excuse my ignorance but what is GWX Control Panel?I believe there is an option in Windows update to block the installation of Windows 10. https://technet.microsoft.com/en-us...

    See the link below for an explanation. Excuse my ignorance but what is GWX Control Panel?

    I believe there is an option in Windows update to block the installation of Windows 10.

    https://technet.microsoft.com/en-us…

    See less
    • 0
  9. I don't know which plug you're asking about but the motherboard usually requires a square 4-pin ATX12V plug & a 24-pin (or 20-pin) main ATX plug. That 4-pin plug is extremely important because that's the one the supplies power to the CPU. If the power supply you bought doesn't have one, you're gRead more

    I don’t know which plug you’re asking about but the motherboard usually requires a square 4-pin ATX12V plug & a 24-pin (or 20-pin) main ATX plug. That 4-pin plug is extremely important because that’s the one the supplies power to the CPU. If the power supply you bought doesn’t have one, you’re going to have to buy an adapter. But I find it hard to believe a modern power supply doesn’t have a 4-pin ATX12V plug. Maybe the following site will help:

    http://www.playtool.com/pages/psuco…

    See less
    • 1