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

    Install Barcode Font programmatically

    I need barcode and regional language font also. Thank you sir, for suggesting FoxBarCode.
  2. newtofoxpro

    Install Barcode Font programmatically

    Sorry, this is the code lcFontLocFile=GETENV("SYSTEMROOT")+"\FONTS\FREE3OF9.TTF" =AFONT(gaFontArray) IF ASCAN(gaFontArray,"Free 3 of 9")=0 OR !FILE(lcFontLocFile) COPY FILE ("FREE3OF9.TTF") TO (m.lcFontLocFile) DECLARE INTEGER AddFontResource IN GDI32.DLL STRING @lpszFileName...
  3. newtofoxpro

    Install Barcode Font programmatically

    VFP9SP2, Windows 10 With the help of this thread I tried but no success https://www.tek-tips.com/viewthread.cfm?qid=938702 1. I have tried myapp.exe run as Administrator 2. At DOS-Prompt CMD.EXE I found FREE3OF9.TTF file exist. DIR c:\windows\fonts\FREE3OF9.TTF 3. But does not appear in...
  4. newtofoxpro

    Fatal error: exception code=c0000029

    Thank you It is c0000029 I use config.fpw having RESOURCE=OFF All frx included in project EXE
  5. newtofoxpro

    Fatal error: exception code=c0000029

    User reported, this error occurs any time anywhere in exe compiled by vfp9. Is it possible to solve this error ? And myapp.exe crash and generate error log file myapperr.log
  6. newtofoxpro

    Signed QR Code data

    Thank you all. I will try memo
  7. newtofoxpro

    Signed QR Code data

    E-invoice. Signed QR Code data string is approx 900+ character. I am looking for best way to store/save in DBF free tables Thanks in advance
  8. newtofoxpro

    libharu : Link Annotation

    Thank you Griff, Pls give me time to work on provided information by you.
  9. newtofoxpro

    libharu : Link Annotation

    Thank you Griff how to declare declare integer HPDF_Page_CreateLinkAnnot in (m.dll) integer, ??????, integer Yes. I am trying Index-Page & Details-Pages Best Regards
  10. newtofoxpro

    libharu : Link Annotation

    Annot=HPDF_Page_CreateLinkAnnot(IndexPage,Rect,Dst) stuck at "Rect
  11. newtofoxpro

    libharu : Link Annotation

    Sorry. I am trying to make pdf file by VFP. For an example Pdf file has 10 pages. 1st page has text like one two three four when I click on text "two" it should jump on page 2. http://libharu.sourceforge.net/demo/link_annotation.pdf
  12. newtofoxpro

    libharu : Link Annotation

    Link
  13. newtofoxpro

    libharu : Link Annotation

    Link I have tried my level best to linking pdf pages. But stuck at HPDF_Page_CreateLinkAnnot Link Above code in C I trying to make it in VFP
  14. newtofoxpro

    libharu : Link Annotation

    Is it possible to create "Link Annotation" with libhpdf.dll in vfp ? I trying Annot=HPDF_Page_CreateLinkAnnot(IndexPage,Rect,Dst) stuck at "Rect
  15. newtofoxpro

    Open File location

    ExcelLocation="c:\windows" RUN /N explorer &ExcelLocation
  16. newtofoxpro

    BINDEVENT GetKeyState

    PUBLIC ofrm ofrm = CREATEOBJECT("MyForm") ofrm.show(1) RETURN DEFINE CLASS MyForm as Form AutoCenter=.T. ADD OBJECT txt1 as textbox ADD OBJECT txt2 as textbox WITH Top=50 ADD OBJECT cmd as commandbutton WITH top = 100, Height=100, Width=thisform.width, Visible=.F. PROCEDURE Init...
  17. newtofoxpro

    Combo Box Drop Down Arrow

    oform1=NEWOBJECT("form1") oform1.Show() DEFINE CLASS form1 AS form ADD OBJECT myCB as Combobox WITH FontSize=30,Height=50,Width=150 ADD OBJECT myCM as CommandButton WITH Caption="Show List",Height=100 PROCEDURE Init thisform.myCM.Top=thisform.myCB.Height...
  18. newtofoxpro

    Image in ReportListener

    Thanks. If user working with unpaid version, Invoice prints with trial.png (Watermark). User can veryfy and satisfy contents of invoice, but he may not give to his buyer. I like your idea to generate random name files in temp folder. (Thanks) If listner pick-up file inside from exe, this...
  19. newtofoxpro

    Image in ReportListener

    Thanks. if ApplicationUnRegistered watermarkimage="30DaysTrial.png" else watermarkimage="YourCompanyLogo.png" endif User should not modify content of watermarkimage and make it readonly attribute. Please any other way ? Thank you.
  20. newtofoxpro

    Image in ReportListener

    I am using ReportListener class for watermark. Working fine if Image exist in HDD. What I am trying If image include in EXE. watermark does not print. loBmp = CREATEOBJECT("GpBitmap") loBmp.CreateFromFile(This.watermarkimage)] Is it possible to call image/jpg/png from exe ?

Part and Inventory Search

Back
Top