1. If you are old enough to remember playing games in DOS then you understand how Windows 7 configures hardware/ etc. when running in a compatibility mode.If you have old games that won't work there are usually two reasons why. First one is if the game, or for that matter, a program, must be installedRead more

    If you are old enough to remember playing games in DOS then you understand how Windows 7 configures hardware/ etc. when running in a compatibility mode.

    If you have old games that won’t work there are usually two reasons why. First one is if the game, or for that matter, a program, must be installed to the root directory instead of under program files. The second is if the game itself, or the installer is a 16 bit program and you are running the 64 bit version of Windows 7.

    You can try installing Virtual PC 2007 SP1 under Windows 7 and then install Win98SE there. Not sure if that is going to work either but it is about your only option. Look at the link below for download links for the the program and for release notes/etc.

    http://social.technet.microsoft.com…

    Check Device Manager in Win98SE to see what drivers are in use for the hardware and if all hardware is even configured.

    See less
    • 0
  2. Try clearing Chrome's cache, cookies & history.You can do that from within Chrome itself, but that isn't totally satisfactory because the browser is still open. Best method to clean Chrome thoroughly is with Ccleaner:http://www.filehippo.com/download_c...So you close Chrome first, then clean witRead more

    Try clearing Chrome’s cache, cookies & history.

    You can do that from within Chrome itself, but that isn’t totally satisfactory because the browser is still open. Best method to clean Chrome thoroughly is with Ccleaner:
    http://www.filehippo.com/download_c…

    So you close Chrome first, then clean with Ccleaner.

    See less
    • 0
  3. Are you meaning to try and boot to a PXE server? Or are you just trying to boot into windows?If builders built buildings like programmers wrote programs, then the first woodpecker that came along would destroy civilization.

    Are you meaning to try and boot to a PXE server? Or are you just trying to boot into windows?

    If builders built buildings like programmers wrote programs, then the first woodpecker that came along would destroy civilization.

    See less
    • 0
  4. It depends on what you're trying to do, but usually, you do not need to specify this instruction more than once. Parent variables values are always passed down to the child (called) script, but "setlocal" keeps them from being passed back up when the child script ends. This also applies to subroutinRead more

    It depends on what you’re trying to do, but usually, you do not need to specify this instruction more than once. Parent variables values are always passed down to the child (called) script, but “setlocal” keeps them from being passed back up when the child script ends. This also applies to subroutines within a script. If you use a circular (self-invoking) call, and the call uses setlocal, you can easily exceed the stack limit and get this error.

    message edited by nbrane

    See less
    • 0
  5. Pseudocode is not a fixed specification but more a generic term. You use whatever works for you. Most people don't bother with variable declarations in their pseudocode. The same would be true for a flow chart.

    Pseudocode is not a fixed specification but more a generic term. You use whatever works for you. Most people don’t bother with variable declarations in their pseudocode. The same would be true for a flow chart. See less
    • 0
  6. Try one of the suitable solutions:(1) If possible, delete the damaged document.(2) Execute fixup command to Repair Lotus Notes database.(3) Make a new database replica and use it to replace the corrupted database. Since the corrupted document has not been replicated, this will be recreated when youRead more

    Try one of the suitable solutions:
    (1) If possible, delete the damaged document.
    (2) Execute fixup command to Repair Lotus Notes database.
    (3) Make a new database replica and use it to replace the corrupted database. Since the corrupted document has not been replicated, this will be recreated when you will again perform the LEI activity.
    (4) Use your previous good backup to restore the Notes database.
    (5) Visit following thread http://itknowledgeexchange.techtarg… where you find more variants for recovering Lotus Notes files. See less
    • 0
  7. BTW...your formula produces an error. I think you have a comma where there should be an &.You have: ="We have received a request from ",'Final Output'!C3...I believe that should be: ="We have received a request from "&'Final Output'!C3...In addition, at the end of the formula you have:&"Read more

    BTW…your formula produces an error. I think you have a comma where there should be an &.

    You have: =”We have received a request from “,‘Final Output’!C3…

    I believe that should be: =”We have received a request from “&‘Final Output’!C3…

    In addition, at the end of the formula you have:

    &”( TBT ) “&” (Both Copied) “

    Couldn’t that be written as:

    &”( TBT ) (Both Copied) “

    It looks like you’re concatenating 2 text strings.

    Let me know if I missed something.

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

    See less
    • 0
  8. At the NIC, used with crossover cable, you must not configure default gateway.Only the NIC, used to connect to the internet needs to have configured a defautl gateway.As wanderer stated, configure both NICs for different subnets.If the router has an ip address of 192.168.1.1Configure the NICs, thatRead more

    At the NIC, used with crossover cable, you must not configure default gateway.
    Only the NIC, used to connect to the internet needs to have configured a defautl gateway.

    As wanderer stated, configure both NICs for different subnets.
    If the router has an ip address of 192.168.1.1
    Configure the NICs, that are needed to connect to the internet, on both systems, to get ip address automatically over DHCP from the router.

    The NICs, used for crossover connection, should be configured manually.

    System1 (work computer)
    NICSET1
    ip via DHCP (gets something like 192.168.1.100)
    Subnet mask: 255.255.255.0
    DNS: 192.168.1.1 (the router)
    default gateway: 192,168.1.1 (also the router)

    NICSET2
    ip manually configured: 192.168.2.100
    subnet mask: 255.255.255.0
    no DNS (not needed)
    no default gateway (not needed)

    System2 (backup computer)
    NICSET1
    ip via DHCP (gets something like 192.168.1.101)
    Subnet mask: 255.255.255.0
    DNS: 192.168.1.1 (the router)
    default gateway: 192,168.1.1 (also the router)

    NICSET2
    ip manually configured: 192.168.2.101
    subnet mask: 255.255.255.0
    no DNS (not needed)
    no default gateway (not needed)

    Then do map the drives by using it’s ip address, e.g.:
    \\192.168.2.101\shared_folder

    Click Here on HowTo ask good Question to get best Help
    Let us know, if the problem is solved !!!

    See less
    • 0
  9. There are 2 types of IP address. 1)Private IP address2)Public IP addressPrivate IP address can't be guessed correctly because it is a Local IP. This is used only for LAN purpose. The Private IP address starts with 10.0.0.0 to 10.255.255.255, 172.16.0.0 to 172.31.255.255 and 192.168.0.0 to 192.168.25Read more

    There are 2 types of IP address.
    1)Private IP address
    2)Public IP address
    Private IP address can’t be guessed correctly because it is a Local IP. This is used only for LAN purpose. The Private IP address starts with 10.0.0.0 to 10.255.255.255, 172.16.0.0 to 172.31.255.255 and 192.168.0.0 to 192.168.255.255.
    The Remaining all IP address are Public IP address.
    But Public IP address can be identified easily through this site Ip-details.com which gives the Service Provider, IP Location and Country etc.. See less
    • 0
  10. Sentey STY-60 = cheap, low end garbage. Only 14A on the +12v rail? Invest in a decent power supply before it's too late.http://mla-d1-p.mlstatic.com/fuente...

    Sentey STY-60 = cheap, low end garbage. Only 14A on the +12v rail? Invest in a decent power supply before it’s too late.

    http://mla-d1-p.mlstatic.com/fuente…

    See less
    • 0