1. All of mine have long since expired. Go to the school you got the CD from and ask them for another. You should also be able to call Microsoft using the phone registration procedure and they will usually give you another key.http://www.microsoft.com/windowsser...P.S. You should post this in the ServeRead more

    All of mine have long since expired. Go to the school you got the CD from and ask them for another. You should also be able to call Microsoft using the phone registration procedure and they will usually give you another key.

    http://www.microsoft.com/windowsser…

    P.S. You should post this in the Server 2003 forum.

    http://www.computing.net/forum/wind…

    See less
    • 0
  2. Hi again Ray.How to Uninstall Windows 10’s Built-in Apps (and How to Reinstall Them)http://www.howtogeek.com/224798/how...http://www.tenforums.com/tutorials/...

    Hi again Ray.

    How to Uninstall Windows 10’s Built-in Apps (and How to Reinstall Them)
    http://www.howtogeek.com/224798/how…
    http://www.tenforums.com/tutorials/…

    See less
    • 0
  3. It could be that Quicken 2000 is just too old for Win 10. However you could right click the shortcut, select Properties then Compatibility View (for Win 7). It might help.Otherwise if you have the download or CD then maybe a re-install will fix it. There could be a risk though so see the discussionRead more

    It could be that Quicken 2000 is just too old for Win 10. However you could right click the shortcut, select Properties then Compatibility View (for Win 7). It might help.

    Otherwise if you have the download or CD then maybe a re-install will fix it. There could be a risk though so see the discussion here first:
    http://answers.microsoft.com/en-us/…

    Always pop back and let us know the outcome – thanks

    message edited by Derek

    See less
    • 0
  4. It is not the type of the database engine that is the problem but the skill of the people writing the application. There are many variants of SQL Why are you developing a new payroll system? There are existing programs that can easily handle tens of thousands of employees. The problem is giving theRead more

    It is not the type of the database engine that is the problem but the skill of the people writing the application. There are many variants of SQL Why are you developing a new payroll system? There are existing programs that can easily handle tens of thousands of employees. The problem is giving the programmers all the specifications for the programs. It’s the implementing of ‘custom’ features that takes forever to debug. An off the shelf package will work for over 90% of the employees.

    See less
    • 0
  5. Well, I've been thinking about this, and in a fit of rum-based inspiration, I think I've hacked something together. The trick is to use two scripts. The first script calls CSCRIPT.exe to run the second script in a hidden console window. It's in this hidden second script you can do your work.ConsiderRead more

    Well, I’ve been thinking about this, and in a fit of rum-based inspiration, I think I’ve hacked something together. The trick is to use two scripts. The first script calls CSCRIPT.exe to run the second script in a hidden console window. It’s in this hidden second script you can do your work.

    Consider the following example:
    A.vbs

    CreateObject("WScript.Shell").Run "cscript B.vbs", 0, True

    B.vbs

    Set i = CreateObject("WScript.Shell").Exec("cmd /c dir c:\ /a/s")
    CreateObject("Scripting.FileSystemObject").OpenTextFile( _
      "out.txt", 2, True).WriteLine i.StdOut.ReadAll

    See less

    • 0
  6. Don't know too much Perl, but this may do: @echo off call "C:\program files\perl\bin\perl.exe" "C:\myperlscripts\script00176.pl" > C:\perl_out.log 2>&1

    Don’t know too much Perl, but this may do:
    @echo off

    call “C:\program files\perl\bin\perl.exe” “C:\myperlscripts\script00176.pl” > C:\perl_out.log 2>&1

    See less
    • 0
  7. It depends upon what facilities you have available on the Unix system, what you are able to install, and whether you want to keep back copies of the file or just want to keep it synchronized with the Unix system. Just saying "Unix system" is a bit vague. In the latter case, if rsync is available, itRead more

    It depends upon what facilities you have available on the Unix system, what you are able to install, and whether you want to keep back copies of the file or just want to keep it synchronized with the Unix system. Just saying “Unix system” is a bit vague.
    In the latter case, if rsync is available, it’s a good choice. But if you want to keep multiple copies of the file it may be better to write a batch script that transfers the file daily using FTP or SMB. Both of those depend upon you having the appropriate software running on the Unix system. NFS may be a better choice, again if it is available to you.

    See less
    • 0
  8. Is it just Excel? are other apps like Word OK? Try doing a repair, which you will have to do from Add Remove. Click Start Click Control Panel Select Add Remove Programs Scroll down until you get to the MS Office Program, when you click on it you should have two options, Change and Remove click on thRead more

    Is it just Excel? are other apps like Word OK?
    Try doing a repair, which you will have to do from Add Remove.

    Click Start
    Click Control Panel
    Select Add Remove Programs
    Scroll down until you get to the MS Office Program,
    when you click on it you should have two options, Change and Remove
    click on the Change button, it should then offer you more options, select the Repair option.

    You will probably need the original install media.

    See less
    • 0
  9. I am assuming that the Skills and Names are in different columns or rows. If that is correct, you can tell the code to only act on a specific column, row or range. The code will still run on every change in selection, but only do something in the specified cases, based on where the Target is locatedRead more

    I am assuming that the Skills and Names are in different columns or rows. If that is correct, you can tell the code to only act on a specific column, row or range. The code will still run on every change in selection, but only do something in the specified cases, based on where the Target is located. This allows you to better control the actions of the macro. In reality, the code will do something every time it runs (i.e. evaluate the If instructions) but the user will only see something when an If is True.

    In the following code, you will only see a message box(es) if the selected cell is in Column 2 or Row 5 or within B4:F6.

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    'Display Column Message
      If Target.Column = 2 Then
        MsgBox "Cell In Column 2 Selected:" & _
                vbCrLf & vbCrLf & Target.Address
      End If
    'Display Row Message
      If Target.Row = 5 Then
        MsgBox "Cell In Row 5 Selected:" & _
                vbCrLf & vbCrLf & Target.Address
      End If
    'Display Range Message
      If Not Intersect(Target, Range("$B$4:$F$6")) Is Nothing Then
         MsgBox "Cell In Range $B$4:$F$6 Selected:" & _
                 vbCrLf & vbCrLf & Target.Address
      End If
    End Sub

    message edited by DerbyDad03

    See less
    • 0
  10. We have no idea what you have tried, here is a start. To go to your blocked senders list, please follow these steps: While signed in, press Alt + F. Choose Options then Safety options. Go to Blocked Senders Tab. You can also find the other safety settings on the other tabs on that pop up box.

    We have no idea what you have tried, here is a start.
    To go to your blocked senders list, please follow these steps:

    While signed in, press Alt + F.

    Choose Options then Safety options.
    Go to Blocked Senders Tab.

    You can also find the other safety settings on the other tabs on that pop up box.

    See less
    • 0