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 SkipVought 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. lencarne

    How to print 3 by 4 inch labels?

    As mentioned elsewhere if you are using P10 try passing your report arguments via an array var daratRpi dynarray[] anytype LabelPrn string endvar printerSetCurrent(LabelPrn) daratRpi["name"] = "MailLabels" daratRpi["panelOptions"]=PrintClipToWidth ;solves xtra...
  2. lencarne

    Printing multiple copies in Paradox 10

    In Paradox10 you have to pass reports arguments via an array thus- var daratRpi dynarray[] anytype LabelPrn string endvar printerSetCurrent(LabelPrn) daratRpi["name"] = "MailLabels" daratRpi["panelOptions"]=PrintClipToWidth ;solves xtra blank page problem...
  3. lencarne

    Printing blank pages in Paradox10

    var daratRpi dynarray[] anytype LabelPrn string endvar printerSetCurrent(LabelPrn) daratRpi["name"] = "MailLabels" daratRpi["panelOptions"]=PrintClipToWidth ;solves xtra blank page problem r.print(daratRpi) This is the Paradox10 way to handle reports
  4. lencarne

    How to change de default icon in a form in Paradox 9

    I get Paradox 10-[Project Viewer] if project viewer or any window/form is maximised. The [] disapear if not maximised. I will try your code anyway
  5. lencarne

    Where Can I buy Pardox 9 in the UK

    Last time I looked at e-bay they had some P9. Shipping across the pond ain't that expensive
  6. lencarne

    How to change de default icon in a form in Paradox 9

    I didn't know about seticon() either<g> Whilst we are in that corner of the form etc does anyone know how to get rid of these [brackets] around the title of the form set with settitle() on form open?
  7. lencarne

    File created date

    Vlad has done a great job for us Pdox guys with his API. Check it out. Thanks for your help
  8. lencarne

    File created date

    Thanks Lance for your brave reply. Vlad Menkin, guess you know him from paradox comunity, has a friendly (& free!)API on his Web site which boasts getFileCreationDate(). I am going to try this first. Will let you know how I get on.
  9. lencarne

    File created date

    Paradox can give you file modified date using Filesystem.time() but I need the file created date. I suppose its a Windows API call. Any advice please?
  10. lencarne

    Changing font attributes in a report

    I want to change a font attribute, say, color of a field in a report depending on its value. This is easy in a form with objectPal but how do you do it in a report? Regards, Len Carne
  11. lencarne

    printerSetCurrent()

    This works printerSetCurrent(&quot;Panasonic KX-P1150,Panasonic KX-P1150,LPT1:&quot;) This doesn't printerSetCurrent(printvar) If the enduser wants to change printers we need the latter option. Any work around folks?? Greetings from England Len Carne

Part and Inventory Search

Back
Top