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 wOOdy-Soft 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 Octagon6

  1. Octagon6

    list item click to bring up info into another listbox

    The following code I have is in the click event of a list box. When the dispatch_num is found in this one table, it is supposed to send the info into another listbox. The problem is that it can only find the first record in the table. LOCATE FOR stopovers.dispatch_num = update_disp IF FOUND()...
  2. Octagon6

    variable into messagebox text

    How do I get a variable displayed in my messagebox text?
  3. Octagon6

    Whenever I use the following statem

    Whenever I use the following statement, a stupid window pops up with the query results. How access the record w/o having the window pop up? SELECT * FROM mileage WHERE mileage.ref_id = cur_ref_id WITH thisform .txtdr_miles.value= miles .txtpu_city.value= origin .txtdr_city.value=...
  4. Octagon6

    trouble finding tables

    when I click on an object that requires info from a table, it comes up with an error [tablename] alias not found; however, when I click ignore, it brings me to a list of tables and I can choose the table from that list. After that, I don't get errors and the program has no trouble finding the...
  5. Octagon6

    problems with my delete button

    I'm still a little confused on my delete button. Instead of it deleting the current record, it deletes all the records in the table. Can you review my code and tell me what I need to change? thanks in advance. lcchoice = "" lcchoice = MESSAGEBOX("Are you sure you want to...
  6. Octagon6

    Inkey value missing

    thanks, homie
  7. Octagon6

    Inkey value missing

    What is the inkey() value for the decimal key (or period)? It doesn't seem to be listed in the help menu.
  8. Octagon6

    Navigation between forms

    Dumb question... How do I switch from one form to the next?
  9. Octagon6

    deleting all the records in a table

    Wahoo! Thanks mike... I was wondering why that wasn't working.
  10. Octagon6

    deleting all the records in a table

    ramani... that didn't work.. the records are still there. don't you have to specify the table name you are deleting the records from? also, is their a better way to do this?
  11. Octagon6

    deleting all the records in a table

    what is the easiest way to delete all the records in a table? I'm thinking of just writing a sql statement in the command window. What would it look like? delete * from [tablename]????
  12. Octagon6

    cursor jumps to the different textboxes when backspace is pressed

    nah... i don't think so, man. Thanks for your help anyways.
  13. Octagon6

    cursor jumps to the different textboxes when backspace is pressed

    Yeah, I could do that, but then my tabs won't work. Is there a way to do both?
  14. Octagon6

    cursor jumps to the different textboxes when backspace is pressed

    I know this question was asked already, but I can't find the thread anymore. When the program is is running, and someones keeps hitting backspace, it jumps to the previous textbox. How did you guys fix that?
  15. Octagon6

    using the database

    I think I got it working now. My sql statements were a little messed up. I'll post again if I have anymore problems.

Part and Inventory Search

Back
Top