Search results

  1. A

    Need Help Designing a Form that will Select Other Forms

    Hi everyone! I want to create a start page that has a combo box containing all of my forms, and then when selected and a "Go" button is pushed, will open the form corresponding to the selection made in the combo box. How do I go about doing this? Thanks, Ryan
  2. A

    How do I link a text box to a column on a table?

    Hi, I am trying to make an asset management database. Currently I have several tables already set up that I would like to be organized into a form. Basically what I have in mind is a switchboard (already setup) that has the equipment type (balances, centrifuges, etc..) that when I click on one...
  3. A

    Counting up by 1 every time the form is selected

    Hi, I need a text box that isn't editable that counts up by 1 every time the form is selected. For example, I am assigning a number to every item added to a table. Currently I have 300 items, so from now on, when this form is selected I want it to automatically assign a number to the added item...
  4. A

    Need Help Getting the Combo Box to Update My Text Boxes

    Alright ill give that a shot tomarrow because my shift is done. Thans a whole bunch for your help and hopefully you can help me some more tomarrow. I added to your rep as a thank you.
  5. A

    Need Help Getting the Combo Box to Update My Text Boxes

    ok so now i get this error Private Sub Combo26_AfterUpdate() Dim rs As Object Dim x As Integer x = cbo_Combo26 Set rs = Me.Recordset.Clone rs.FindFirst "[Tenantid] = " & x If rs.NoMatch Then MsgBox ("cannot find this tenant") <--------high lighted yellow Else Me.Bookmark = rs.Bookmark End If...
  6. A

    Need Help Getting the Combo Box to Update My Text Boxes

    Ok that part now seems to be solved but now it high lights the "end if" in blue and shows the compile error message again. Private Sub Combo26_AfterUpdate() <-----this is high lighted in yellow Dim rs As Object Dim x As Integer x = cbo_Combo26 Set rs = Me.Recordset.Clone rs.FindFirst...
  7. A

    Need Help Getting the Combo Box to Update My Text Boxes

    Heres the whole macro... Private Sub Combo26_AfterUpdate() Dim rs As Object Dim x As Integer If Not (IsNull(Me.cbo_Combo26)) Then x = cbo_Combo26 Set rs = Me.Recordset.Clone rs.FindFirst "[Tenantid] = " & x If rs.NoMatch Then MsgBox ("cannot find this tenant") Else Me.Bookmark = rs.Bookmark...
  8. A

    Need Help Getting the Combo Box to Update My Text Boxes

    Ok I changed all the surname stuff to Combo26 like it said in my properties and I still get a "compiling error method or member not found" and this gets high lighted in blue ".cbo_Combo26" and this in yellow "Private Sub Combo26_AfterUpdate()"
  9. A

    Need Help Getting the Combo Box to Update My Text Boxes

    I'm also Access retarded if you haven't noticed already. LOL
  10. A

    Need Help Getting the Combo Box to Update My Text Boxes

    Okay for the name of the combo box do you mean the name that sits next to it on the form or what? Because if thats the case the name of it is RS Number and I get an error. Sorry guys to waste your time but this has been an issue for a while and i need to get it fixed.
  11. A

    Need Help Getting the Combo Box to Update My Text Boxes

    Ok so I dumped the comma but now I have a new error! "run-time error '2465' Microsoft Access can't find the field "cbo_surname" refered to in your expression. JAARRRR! Thanks again.
  12. A

    Need Help Getting the Combo Box to Update My Text Boxes

    Also "Dim rs As Object" is red, does that mean there is a problem with that at all?
  13. A

    Need Help Getting the Combo Box to Update My Text Boxes

    Private Sub Combo26_AfterUpdate() This is the line of code that gets highlighted. If anybody knows of any ways to get my task accomplished without using additional macros that would be even better Thanks again guys
  14. A

    Need Help Getting the Combo Box to Update My Text Boxes

    Hi, I want to try to get my combo box to update the rest of my text boxes. For example, I have Column A, B, and C in my combo box, when I select for example A, I want all the information for row A to show up in my text boxes. I have several columns in each row in my table and each column in the...
  15. A

    Text Boxes Showing Information from a Row in a Form Corresponding from a Combo Box

    well actually there are several combo boxes split up between multiple forms. So there is like 1-30 on one form 31-60 on another and so on. I did this because each form represents the type of equipment that will be searched.
  16. A

    Text Boxes Showing Information from a Row in a Form Corresponding from a Combo Box

    Hi, I have a form that has several text boxes that correspond to a cell in a row. One of the columns contains just numbers 1-300. Now what I need is a combo box that contains the numbers 1-300 and when one of those numbers is selected I need it to import all the information from the same row...
  17. A

    Need Help Moving Linked Access Database to a MSSQL Server

    Alright thank you very much! I guess that means I need to find that darn Access disk! Thanks again!
  18. A

    Need Help Moving Linked Access Database to a MSSQL Server

    Hi, My access database's tables are currently linked to an excel document. My question is, how do I move my database to the network? Currently when I move the the database to the network no one can open my tables because the link goes to my documents on my computer which they can't access on...
  19. A

    Need Help Moving Linked Access Database to a MSSQL Server

    Hi, My access database's tables are currently linked to an excel document. My question is, how do I move my database to the network? Currently when I move the the database to the network no one can open my tables because the link goes to my documents on my computer which they can't access on the...
Back
Top Bottom