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 John Tel 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 foxprox558

  1. foxprox558

    Need to eject 'X' amount of lines before printing a report

    My program has a function allowing the user to set an eject line before print number, Currently I am using : (Printer is already set based on user input in setup file) nEj=printers.invpre && (Inventory Pre-Printing ejection) for x=0 to nEj step 1 Set device to printer ?chr(13) endfor set device...
  2. foxprox558

    Any way to break a process in FoxPro?

    Hi, me again. Just wondering if there is any way to break a function in foxpro, for example I have an If statement that looks to see if an order has already been deleted, and If it has, I need the whole process to end here's the code nOrd=INPUTBOX("Enter The Order Number To Delete.", "Individual...
  3. foxprox558

    Renaming the main FoxPro Console Window (Compiled Executable [.exe])

    Ok, so I got my executable compiled and working, but I need to rename the window so it says "Galaxy DryClean" Instead of "Microsoft Visual FoxPro". Any suggestions are very helpful! Thanks!
  4. foxprox558

    Creating A Struct In Foxpro

    Hello, again. Regarding my previous program, I need a way to create a kind of a table inside of a table, I know in oracle it is called a struct. Please help
  5. foxprox558

    SQL License Key Integration

    No, I don't need the IP of the remote at all. I HAVE the IP of the host (Me) but I need the Remote (Them), each time the program opens, to check the entered license key (Stored on THEIR local system) if it is valid for the Host (My System). But I don't know how to work SQL at all, that's what...
  6. foxprox558

    SQL License Key Integration

    Hello, once again. I would like to write a simple-license key validation that will run from my DryCleaning program to my SQL server on my computer (It should not be over-complicated, I have a static IP) with an SQL table that has only 4 fields per record: 1-Key Code 2-Active/Inactive 3-How Many...
  7. foxprox558

    New Thread For DryCleaning POS Pickup Form

    I don't know how to populate the grid fields with my database information, the loop I guess you would say. I don't know how I would work that loop to put the info into it.
  8. foxprox558

    New Thread For DryCleaning POS Pickup Form

    mjcmkrsr, I really did enjoy your code, but I don't know how to convert it over to using my databases. Please Help Me!
  9. foxprox558

    Help with Modifying Some Code To Comply With My Program

    ************************************************** PUBLIC go_Form go_Form = NEWOBJECT("frmForm") ADDPROPERTY(go_Form, "la_Customers[1]") go_Form.Show Read Events Close all Clear All RETURN ************************************************** DEFINE CLASS cboCombo AS ComboBox Width = 48...
  10. foxprox558

    How to build a FoxPro application

    Ok, as many of you know, I've been working on a DryCleaning program in FoxPro, and I never was able to compile foxpro programs into Executables without using the application wizard, if I tried to do it from a project, it would just flash on then off. I need to know how to build them, because...
  11. foxprox558

    New Thread For DryCleaning POS Pickup Form

    I've recently tried to change the DO WHILEs to IFs and now I'm not getting any results for customer orders.
  12. foxprox558

    New Thread For DryCleaning POS Pickup Form

    copy the link directly as text and use it, I know it doesnt work because tek-tips.com has a type of sub-browser inside of the website, and opens the website from itself.
  13. foxprox558

    New Thread For DryCleaning POS Pickup Form

    What I'm trying to do is, You type the customer's last name or phone number in the text box, then you click search, it populates the combobox with all the results in the format of <custno>: <last>, <First>, the customer number is always 6 digits in length or greater. it SHOULD use the customer...
  14. foxprox558

    Help With VFP DryCleaning POS Pickup Form

    I have decided that using checkboxes is more graphically pretty and want the program to look nice instead of 2 big grids in the middle of a form
  15. foxprox558

    Help With VFP DryCleaning POS Pickup Form

    Thanks, all. But I've decided to use a different method, using checkboxes with checking out a maximum of 14 orders, please see the new thread. I have a feeling that this way will be MUCH less of a headache

Part and Inventory Search

Back
Top