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. Steve Yu

    Sending bulk email messages from VFP 6.0 and VFP 9

    We use West Wind Internet and Client Tools as well for SMTP and it works extremely well. You do need your own SMTP server and the tool box requires a nominal one time cost but well worth it.
  2. Steve Yu

    Strip leading characters from a string

    Code: cStr = "FA007074000" Cfreq= transform(VAL(SUBSTR(cstr,3)),"@R 999,999,999") && " 7,074,000" Freq = LTRIM(STRTRAN(cfreq,',','.')) && '7.074.000'
  3. Steve Yu

    Create a table with Tag indexes

    Table designer implicitly creates the tag for you, localiza and codagente in your case (you can do a 'Display Status' in command window to see the structure.} If you create the table programmatically, I believe you'll have to run the 'Index on localiza tag localiza' command to create the index...
  4. Steve Yu

    Create a table with Tag indexes

    Then you can do this: index on localiza tag tag1 index on str(codagente,6) tag tag2 use reservas set order to tag1 && localiza, default ascending .... set order to tag2 .....
  5. Steve Yu

    Create a table with Tag indexes

    index on LOCALIZA + str(codagente,6) tag anytagname
  6. Steve Yu

    Report Form printer setting binding

    We did save but when we checked printer preference with the print job in queue (paused) it reverted back to printer default, without our tray selection. Steve Yu
  7. Steve Yu

    Report Form printer setting binding

    Chris, Will browse FRX table. Thank you. Steve Yu
  8. Steve Yu

    Report Form printer setting binding

    Thanks, Chris. Will printout go to the desired paper source, tray 4, if we issue the set printer command this way ? We are getting the right printer with saved properties, it's just printouts always go to the default paper source, not the tray with recycled paper that we wanted. Steve Yu
  9. Steve Yu

    Report Form printer setting binding

    Hello, Wanted to force printouts to drawer #4 of the network printer (Canon) but all went to default bin regardless. In Windows server printer setting, the custom profile, TRAY4, pops up as default profile but the actual printer setting viewed in paused print queue still shows the default...
  10. Steve Yu

    label printing question: how to print a label in .ZPL format to a Zebra printer with report form ?

    Chris, Thanks again. It is WORKING now ! Earlier today we did create the generic text driver with link to the TCP/IP port of the desired printer. But the 'Type ... to printer' command failed (nothing sent to the print queue or printer). We have now figured out the problem as we have been...
  11. Steve Yu

    label printing question: how to print a label in .ZPL format to a Zebra printer with report form ?

    Chris, I'm having trouble setting up the 'virtual printer'. In the ports selection I don't see 'USBxxx Virtual port..' at all for the Zebra printer. Also, all our local and remote Zebra label printers are configured as TCP/IP printers. I went ahead and set up the generic text driver with link...
  12. Steve Yu

    label printing question: how to print a label in .ZPL format to a Zebra printer with report form ?

    Thanks again, Chris. Will try the generic text approach. However we are currently able to print .PNG labels using report form. The pname holds the name of the .png image file (barcode.png for example) and the form is bound to the Zebra label printer. Actually the form works fine to print the...
  13. Steve Yu

    label printing question: how to print a label in .ZPL format to a Zebra printer with report form ?

    Thanks for the reply, Chris. Would this work for bar code/QR code labels (vs text only), for example UPS/FedEx shipping labels ? Steve Yu
  14. Steve Yu

    label printing question: how to print a label in .ZPL format to a Zebra printer with report form ?

    Hello, No problem with embedding a .PNG image file in a report form that would send the label directly to the the specified printer. How do you accomplish the same with a .ZPL label ? Can only find instruction that entails clicking through Zebra printer preference, locating the .ZPL in some...
  15. Steve Yu

    Visual FreePro development resumes

    Strictly on technology terms this may be true. Or it may not. Another Rick many of us here also know, Rick Strahl of West Wind fame, has already done a tremendous job extending the capabilities of VFP among his other accomplishments. Our website and many others I'm sure is based on his work...
  16. Steve Yu

    VFP project conversion

    @pennyman I happened to have just completed such a conversion (VFP to SQL) a little over one year ago with the help of an outside VFP/SQL guru. So far no major issues. Users get to work with the same interface and IT gets to keep all the customizations that had been made on top of a very...
  17. Steve Yu

    Visual FreePro development resumes

    @GriffMG @Chris Miller @DobsRock I thought so. Life goes on.
  18. Steve Yu

    Visual FreePro development resumes

    Sadly that is the state of VFP as a viable software product, excellent as we all know it is Yes. probably most of the people in this forum would; and actually we are still working with the product anyway, regardless. But the problem is, dare I ask, "how many of us here are under 50 years old...
  19. Steve Yu

    Data encryption at rest, VFP vs MS SQL

    vernpace, Appreciated your help first of all. Not sure I agree. From what I have been able to decipher from feedbacks all you guys provided here and research from other sources since my initial post, I concluded no coding changes will be needed if TDE is implemented on the MS SQL databases...
  20. Steve Yu

    Data encryption at rest, VFP vs MS SQL

    Hello, Need help. What is data encryption at rest (vs not at rest) ? Are VFP tables encrypted ? Even though .dbf tables can't be viewed with Word or text editor, I don't think they are encrypted, correct ? How about MS SQL, are tables encrypted as default (we have the 2019 version) ? One of our...

Part and Inventory Search

Back
Top