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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by flintstone42

  1. flintstone42

    Report error logging in VFP 7

    I have tried to keep my variables in coding but most of my reports are called from different places and if more the variables are in the report, the less coding need changing) As for the screen print. The user who gets the error will have to hit print screen (before any other key is hit) and...
  2. flintstone42

    Report error logging in VFP 7

    When you use the reports inside foxpro (frx,frt) files, If there is an error when the report is printed (variable not found etc..), The error seems to be always shown to the user. There seems to be no way of logging the error. (on error is not being triggered). Any Ideas? P.S. When I put...
  3. flintstone42

    Problem with Print2PDF

    I have using the Jaws PDF printer driver (then it was the %d PDF printer driver) for a while. This drivers lets your output the pdf files to a directory. Usally I set the printer to the PDF, then print the jobs, But you need to have the pdf driver installed on each computer. Where can I get a...
  4. flintstone42

    Soap. unspecified error and web service

    No, Do you have .net framework installed on your XP? If I cannot access the website (or wsdl) file I get a different error (WSDL not found...) I can get it working on XP (the second time it is run) So I do not think it is a proxy or firewall problem.) But all of my clients are 98/Me machines...
  5. flintstone42

    Soap. unspecified error and web service

    I have am using VFP 7.0 SP1, The version of Soap (and I have tried all of the ones below) soap toolkit 2.0 soap toolkit 3.0 .net framework version 1.1 redist As per Microsoft, soap toolkit has been retired on 7/1/2003, In favor of .net framework (which has been installed).
  6. flintstone42

    Drive a webpage?

    West Wind has there wwip class that give a frame work for this. A little lot eaiser DO wwhttp oHTTP = CREATEOBJECT("wwHTTP") oHTTP.HTTPConnect("zip4.usps.com/zip4") *** Connect to the server *oHTTP.HTTPConnect("http://www.usps.com")...
  7. flintstone42

    Soap. unspecified error and web service

    I am trying to access to web service in VFP useing the follwing code: oProxy = CREATEOBJECT("MSSOAP.SoapClient") oProxy.MSSoapInit("http://www.foxcentral.net/foxcentral.wsdl") On a Windows XP machine (with .net framework installed) I get "Unspecified error" when run the first time. If I rerun...
  8. flintstone42

    Intermittant error: "Alias not found" in VFP from ASP calls

    Also, I always if the if not(used("myalias")) use tablname alias myalias in 0 endif Alias, I have found that VFP com object called from asp pages usally do not have access to the driver names So, I use the "shared" name instead instead of use x:\data\tablename try use...
  9. flintstone42

    how to put 2 sets of detail on the same report

    Hi: Thanks for your help, I added a logical flag between the "old" and "new" record and set adata grouping based on the logical flag, (If this is only one group, the "revised" section does not show") This seems to work well for the lines of detial (I have to redo all the totals) What would...
  10. flintstone42

    how to put 2 sets of detail on the same report

    I currently have a vfp report that is an invoice showing the each item as a line of detail. The users watna "Revised" invoice show the first the "old detial" and the new lines of detail. Is it possible to have 2 bands of detial on the same report? They hsave to be in 2 seperate parts of the...
  11. flintstone42

    mappoint get location of current view

    Hi: This is using the mappoint 2004application (not the web service) with an asp page 1. I can send locations to mappoint (whether addresses or lat/long) 2. I can have the user zoom, pan (move the map ). The problem is after the user pans (moves the map up and down), I cannot find...
  12. flintstone42

    problem with FTP - FAQ184-3234

    Does thse definitons help? hFtpSession = InternetConnect (hOpen, strHost,; INTERNET_INVALID_PORT_NUMBER,; strUser, strPwd,; INTERNET_SERVICE_FTP, 0, 0) lnResult = FtpGetFile (hFtpSession, lpszRemoteFile, lpszNewFile,; fFailIfExists, FILE_ATTRIBUTE_NORMAL...
  13. flintstone42

    URLDOWNTOFILE, processbar?

    Your dofiledownload in FAQ184-3838 requires shdocvw.dll , which I do not have. as for INTERNET_OPTION_CONNECT_TIMEOUT Micrsoft says that InternetSetOption will not work wil IE 5.0 (and higher?) 176420 InternetSetOption Does Not Set Timeout Values 1. How do I set the timeout value? 2. Since...
  14. flintstone42

    URLDOWNTOFILE, processbar?

    Hi: I have using the urldownloadtofile api function for sometime to download webpages DECLARE LONG URLDownloadToFile IN URLMON.DLL ; LONG, STRING, STRING, LONG, LONG lnGetResults = URLDownloadToFile(0, url, localfile, 0, 0) I have been using this for webservices with support the http get...
  15. flintstone42

    downloading a web page

    Hi: Currently, I am using the win32 api URLdownloadtofile to download a webpage. DECLARE LONG URLDownloadToFile IN URLMON.DLL ; LONG, STRING, STRING, LONG, LONG Normally, I use for web services, using the httpget method, This function works qucikly enough(<3 seconds) if 1. The...

Part and Inventory Search

Back
Top