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. 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
  16. foxprox558

    New Thread For DryCleaning POS Pickup Form

    If you will see the picture attached, you will see that I have decided to go with another method. I've decided to only show 14 orders on the screen. The text to the right of the checkboxes are labels, and they only display the total amount of the orders with the following code. Please help with...
  17. foxprox558

    Help With VFP DryCleaning POS Pickup Form

    That code is not returning any results. I did modify it, because the format was upper case, my databases are upper and lower case, just depends on how it's initially typed in. And I'm not seeing 'use accounts.dbf' in there, so It can't be searching for anything.
  18. foxprox558

    Help With VFP DryCleaning POS Pickup Form

    No, I was getting errors with init from the beginning. Errors include: customer alias not found details alias not found cyclic relation unknown member COLUMN3 (~x6)
  19. foxprox558

    Help With VFP DryCleaning POS Pickup Form

    I got 3 Baker's dozens of errors with the Init() code!
  20. foxprox558

    Help With VFP DryCleaning POS Pickup Form

    Added to previous code or overwritten?

Part and Inventory Search

Back
Top