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 TouchToneTommy 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: *

  • Users: foxprox558
  • Content: Threads
  • Order by date
  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

    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...
  6. 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...
  7. 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...
  8. 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...
  9. foxprox558

    FoxPro Data Convertor

    Hi, As per the program I was previously working on, I have managed to get copies of the databases for the DOS program, and I'm making a converter to save time and effort, But the problem is: How do I tell the program to go to the next record without saying 'goto recno()+1', I tried that and got...
  10. foxprox558

    Help With VFP DryCleaning POS Pickup Form

    Ok, So if you will take a look at the picture attached to the thread, you will see the basic layout of the pickup form the order database is arranged to store the customer number of the customer, when you choose the customer from the top of the form, search through the orders database and find...
  11. foxprox558

    Help With VFP Combo Box

    Ok, so I have this program I'm building for my local dry cleaners (Who I am trying to transition out of a DOS foxpro System) and basically there are only a couple of databases, among the main ones are the orders.dbf and accounts.dbf accounts=Customer Accounts Orders = All orders by customers...

Part and Inventory Search

Back
Top