Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Reggie1977

    E-mail validation

    Here is what I use: LOCAL loRegExp loRegExp = CreateObject("VBScript.RegExp") loRegExp.IgnoreCase = .T. loRegExp.Pattern = '^[A-Za-z0-9](([_\.\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\.\-]?[a-zA-Z0-9]+)*)\.([A-Za-z]{2,})$' m.valid = loRegExp.Test(m.email) RELEASE loRegExp IF m.valid = .T. ...
  2. Reggie1977

    Running VFP apps from within VFP App

    I have a VFP app from which I want to launch some other VFP apps. The problem is when a CLEAR EVENTS is issued from the external app it closes down the Main app. Has anyone any ideas how to resolve this?
  3. Reggie1977

    Running Foxpro 2.5 exe in Win XP

    I am trying to run a Foxpro 2.5 Dos exe in Win Xp. This works fine in Win 2000. When I run it, I just get a black screen for a few seconds and it disappears. I have set the FILES = 150 and BUFFERS = 100 in config.nt. I can run the exe through Foxpro using the DO command. Anyone know how I can...
  4. Reggie1977

    Setting the sender's name in an email

    Hi, I want to set the sender's name in an email but I am having problems. Heres the code I am using: USE C:\EMAILS\EMAILS.DBF IN 0 ALIAS EMAILS SELE EMAILS loApp = CREATEOBJECT( "Outlook.Application" ) loMail = loapp.createitem( 0 ) WITH loMail .recipients.ADD(...
  5. Reggie1977

    Restore Error

    I still have not resolved this problem. Has anyone any ideas?
  6. Reggie1977

    Restore Error

    Its a Dell Powervault 110T DLT1/Vstape Drive. Its in a Dell Poweredge 2600 Server.
  7. Reggie1977

    Restore Error

    I am trying to restore from a tape but I get the following error after about three to four minutes. I am using Veritas Backup Exec 8.0 build 3311. There is no problems backing up data to this drive, its just the restore. I have restored data before using this drive. Has anyone got any ideas as...

Part and Inventory Search

Back
Top