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. ljzagorac

    Excel automation

    VFP 9 SP2 on Windows 8.1 (64bit) with Excel 2013 (64bit) NO problems at all. Security center must be tweaked.
  2. ljzagorac

    What would cause this to stop working?

    I meant: SELECT * FROM Category WHERE Full_Name LIKE "Comercios/%pticas
  3. ljzagorac

    What would cause this to stop working?

    The letter Ó makes the problem. Try SELECT * FROM Category WHERE Full_Name LIKE "Comercios/$pticas"
  4. ljzagorac

    SQL Server Date data type

    Mike, if you do a remote view updates to SQl table, you don't need any additional work concerning dates with this settings.
  5. ljzagorac

    SQL Server Date data type

    Mike, I don't see any problem in both directions. When uploading to SQL I use an easy way to convert VFP date into date data to SQL: set cent on set mark to '-' set date ymd
  6. ljzagorac

    Print page range of an existing PDF file

    I didn't find any good activex to go together with Adobe Reader 9 which is supposed to do hard copy printout of large PDF files. Resolved so I use pdftk command line to burst large PDF file into as many files as the PDF has, then printing each page within specified range. Anyway, thanks both...
  7. ljzagorac

    Print page range of an existing PDF file

    Hi experts, I can use the following to get total number of pages in a PDF file: lcStr = filetostr(getfile('pdf')) lnPOS = At("/Count",lcStr) If lnPOS > 0 lcPageCount = alltrim(substr(lcStr, lnPOS, 9)) lnPageCount = VAL(STRTRAN(lcPageCount,'/Count','')) ?lnPageCount...

Part and Inventory Search

Back
Top