Recent content by taosd

  1. T

    Retrieving Data from Excel Spreadsheet

    Hey all, I want to be able to retrieve data from an excel spreadsheet that is specified by a user (using a browse option which I have already completed) which searches through the spreadsheet referenced, finds the row that starts with the letters "IIN", looks at the rows that follow it (not...
  2. T

    Code Problem, Control Source Being Deleted on afterupdate

    I have a field that when updated populates some fields. The code for the afterupdate property is as follows Private Sub Part_Number_AfterUpdate() Dim db As DAO.Database Dim QD As DAO.QueryDef Dim where As Variant Set db = CurrentDb() 'Delete the existing dynamic query; trap the error if...
  3. T

    having tab act as enter

    none of the fields were bound, but i bound them and its working great!!
  4. T

    having tab act as enter

    The effectivity, recieved, Warranty Expire set of fields will also be linked to their own respective fields...
  5. T

    having tab act as enter

    binding fields makes for errors in my data because of how my forms are set up, see following post for picture...
  6. T

    having tab act as enter

    Hi I have a form that will enter data into a table. The thing is that when you press tab to switch between fields(as most people would tend to do in my world) it does not save the information I input. The only way it saves it is if I press enter, so I was wondering if it were possible to make...
  7. T

    Check Boxes Inputting Data

    No problem at all... I want to be able to click the check boxes on or off (the check boxes were not on that form) and for each box, it puts certain data into one of my tables. So when you click on the check box called "001" then it adds 001 to the table, and if you click the check box called...
  8. T

    Check Boxes Inputting Data

    here is a sample... there is no check-boxes... however...
  9. T

    Check Boxes Inputting Data

    Hey Everyone! I want to use checkboxes in my form to specify applicability. I have a table in my database that every thing entered into this form will be stored in. One thing that I have been having trouble with was this applicability field. I want to have a tab control that will switch between...
Back
Top Bottom