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 Mike Lewis 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. Charterhouse

    VFP recognising DIRECTORY() and FILE()

    Yes, I can type in the UNC path and access the the tables through explorer, but the IF DIRECTORY(gcNetDataDir) fails. This happens also with IF FILE('VFPODBC.DLL') all the other system files are recognised but not VFPODBC.DLL This code is installed and operating everyday on over a hundred...
  2. Charterhouse

    VFP recognising DIRECTORY() and FILE()

    I'm supporting about 120 desktop & laptop users with any application which operates for most of the time, offline. However, when data needs to be uploaded to the server, the application recognises whether or not it is online by using the code gcNetDataDir = '\\ServerName\DataFolder\' IF...
  3. Charterhouse

    Any way to find out if my EXE is alreardy running progammatically?

    Thanks guys for all your help. Its working pretty well
  4. Charterhouse

    Any way to find out if my EXE is alreardy running progammatically?

    Message for Mike Lewis: Your code related to "finding out if an EXE is already running" on http://www.ml-consult.co.uk/foxst-11.htm, works well if the 1st instance of the EXE is maximised or restored down, however, if the 1st instance of the EXE has been minimised the...
  5. Charterhouse

    Any way to find out if my EXE is alreardy running progammatically?

    Thanks Guys. Just what I wanted!! Code implemented. EXE compiled & copy to network ready for 150 users to get when they next logon
  6. Charterhouse

    Any way to find out if my EXE is alreardy running progammatically?

    Is there anyway to find out whether an EXE is already running programmatically? My users are prone to starting the EXE (once it is already running and minimised on the taskbar). Although the creation of a phyical flag file maybe a solution, it is prone other problems) Anyway of querying the...
  7. Charterhouse

    Error 1152 appearing in code where previously not errors appeared

    Using VFP6 SP5 » Error 1152 (Cannot access the selected table) keeps appearing in code where previously not errors had been found. The messagebox appears, OK is pressed, and the program continues to find the table OK. This is an EXE working on a standalone PC using local tables. Is this a case...
  8. Charterhouse

    CPU running 50% although EXE is stopped inVFP6

    Thanks for all the responses. The Virus Checker was the culprit. Network Support turned it off, app worked as usual. The checker will be configured as Olaf suggested. Thanks again
  9. Charterhouse

    CPU running 50% although EXE is stopped inVFP6

    I've tested the app this morning to see how long it would run and it has been at 50-70% CPU usage for over an hour. I've also moved the app to another machine and there is no problem on the other machine. I'm starting to think that maybe the McAfee VirusScan Enterprise v8.0 might have a part to...
  10. Charterhouse

    CPU running 50% although EXE is stopped inVFP6

    Running VFP6 SP5 on XP SP2. Testing an EXE complied with debug info. Running EXE from inside VFP6. All other parts of system testing fine. One form when entered makes the form run at 50-60% CPU, although VFP is not running any code stopped by set step on. While in this state unable to access VFP...
  11. Charterhouse

    ODBC error exporting from OutLook

    I'm exporting from Outlook 2000 in FoxPro format, which works fine in on my development machine (Win XP Pro) I've just tried it under (Win XP Home) and got the error message below: 'An ODBC error has occurred in the Microsoft FoxPro translator while opening a file to build a field map...
  12. Charterhouse

    How can I create an email in HTML format?

    I am trying to create an email whose content is in HTML format type. The method code I'm using (in VFP8) is as follows:- PARAMETERS pToWhom, pTitle, pBody oOutlook = GETOBJECT(,"Outlook.Application") oMailItem = oOutlook.CreateItem(0) oMailItem.To = pToWhom oMailItem.Subject = pTitle...

Part and Inventory Search

Back
Top