Recent content by wop0703

  1. W

    Adding data through form

    I have a form, created from a query. The query contains and links about six tables using an AutoNumber ID. The query also has fields from each of these tables. OK, so when users enter their data into this form, I would like the autoincremented number to increase in each of these tables. The...
  2. W

    Addidng data to multiple Tables

    I have a form, created from a query. THe query contains an links about six tables using an AutoNumber ID. OK, so when users enter their data into this form, I would like the autoincremented number to increase in each of these tables. The catch is that when the user enters data he/she does...
  3. W

    AutoIncremented Numbers

    Can I have a primary key in my table as an autoincremented number that starts at, say 618 instead of 1??
  4. W

    Countdown Dates

    I would like to have a form that simply has 4 or 5 due dates for certain things. I would also like to have a countdown field that takes todays date and all of the due dates and tells me how many days i have until then. Is this possible? And, if so, can anyone help?
  5. W

    Data into a table

    The reason I wanted another table was that some information the user has inputted is used elsewhere and must show up in another form and the user will have to input more data depending on his selection in the first form feeding the first table.
  6. W

    Data into a table

    I have a table that is linked to a form. The user can enter information in the form and it is saved in a table. I want to make another table that only pulls certain information from the table that is being updated by the form. This new table must be able to be updated as well. Any suggestions?
  7. W

    Set visible by keyword

    Yes I did. I have the value of Freshman in a text box that is not enabled, is this ok?
  8. W

    Set visible by keyword

    OK, another visibility question. The same form's information is placed in a table. It takes 3 pieces of information from that table. One piece of the information is a year field (has either freshman, sophomore, junior, or senior). I want a text box to appear when the field has freshman in...
  9. W

    Set visible by keyword

    You two are great. Thanks for your help!
  10. W

    Set visible by keyword

    For some reason, it is not working. It doesn't make much sense to me. Here is my exact code: Private Sub Type1_AfterUpdate() If Me.Type1 = Check Then Me.Check1.Visible = True Else: Me.Check1.Visible = False End If Me.Refresh End Sub Type1 is my combo box Check1 is my text boxI want visible
  11. W

    Set visible by keyword

    I put the code in the after update of my combo box and nothing happened. Do I need to put it somewhere else?
  12. W

    Opening forms

    Check this out. http://www.access-programmers.co.uk/forums/showthread.php?t=92050 I think this thread will help you.
  13. W

    Set visible by keyword

    In my form, I have a combo box with one of three options (cash, check, reimbursement). If the user chooses check, I want a text box to become visible, so the user may input the check number. I thought I could use another invisible text box to store the value of the combo box and then in the...
  14. W

    Multiple calendars

    I have a form that had two active x calendars on it. The form itslef is pretty simple. I want the user to choose a begin date by clicking the appropriate date on the first calendar and then choose an ending date by clicking on the second calendar. here is what I cannot figure out. I would...
  15. W

    Automatic Updating

    And I fixed it. User error. I was typing Columns instead of Column. I apologize for all of this. Thanks for your help.
Back
Top Bottom