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 dencom 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 costin77

  1. costin77

    Extracting an Address from a Postcode input

    Here it is the response you are getting from your "https://maps.googleapis.com/maps/api/place/textsearch/json?query=...." link { "error_message" : "The provided API key is invalid.", "html_attributions" : [], "results" : [], "status" : "REQUEST_DENIED" }
  2. costin77

    Sorting an array

    This it happens because your array does not have the right dimension: 3. So you have 2 solutions: 1. change your first line to: PUBLIC ARRAY Texto(3) 2. add more 'empty' items to your array till you reach your dimension (10).
  3. costin77

    a little confused about the transform() function problem

    Try to increase the width of the field where you see *.
  4. costin77

    How to use FoxyPreviewer to generate a pdf from a label programmatically

    I want a solution which it should work for any pdf printer and any version of Windows. Do you know where I can find a complete manual for FoxyPreviewer?
  5. costin77

    How to use FoxyPreviewer to generate a pdf from a label programmatically

    My goal is to create pdf files from my application, without any preview of report/label which is being generated.
  6. costin77

    How to use FoxyPreviewer to generate a pdf from a label programmatically

    Hi Mike, Thanks for your quick response and offer of help. I tried your code, but no pdf file was created. Maybe the problem with your code is that the application needs first to select a pdf printer? PS. I am using FoxyPreviewer v299z41. Regards, Costin
  7. costin77

    How to use FoxyPreviewer to generate a pdf from a label programmatically

    Hey there, I found this code which works very well to generate a pdf from a report using FoxyPreviewer : SET PROCEDURE TO LOCFILE("FoxyPreviewer.App") ADDITIVE LOCAL loReport AS "PreviewHelper" OF "FoxyPreviewer.App" loReport = CREATEOBJECT("PreviewHelper") WITH loReport AS ReportHelper...

Part and Inventory Search

Back
Top