Search results

  1. S

    Creating a table similar to word in access form

    I don't want to display data or a sub form. I want to create a table like you would in word with headers to enter data that is going no where. Its like a calculator or how excel operates, say for example row one has 5 pencils, 4 erasers, 3 pens and in the total it will show 12. It is just...
  2. S

    Creating a table similar to word in access form

    I understand when I say the word table, people immediately think I am talking about creating an access table or displaying data from table on table. I want to create a table in my form, like you would do in Microsoft Word. How would you do this?
  3. S

    Need with coding access form with vba - Will Pay

    I really need some help with vba access and I will pay you.
  4. S

    Question calculate inbreeding

    Why can't you be able to help me?
  5. S

    Question calculate inbreeding

    @MajP, I do have a difficult project that is similar to what you are on working, that is why I approach you.
  6. S

    How do you create a text box to lookup values?

    That is different from what I am looking for
  7. S

    How do you create a text box to lookup values?

    I am totally new to learning vba. If someone could teach me that would be appreciated. I have a command button and text boxes. Basically, I want to enter a value in the text box, and populates the rest of the text boxes related to that value.
  8. S

    Creating a text box similar to a combo box

    Hi theDBguy, How should I adjust my current coding, comname2 is my combo box. Private Sub ComName2_AfterUpdate() Me.Name2 = Me.ComName2.Column(1) Me.Type2 = Me.ComName2.Column(18) Me.Class2 = Me.ComName2.Column(5) Me.Growth2 = Me.ComName2.Column(6) Me.Rate2 =...
  9. S

    Question calculate inbreeding

    MajP would you be welling to help me out are done with inflight. I would like to learn how to use access, and make sure my coding is correctly and my form will work properly.
  10. S

    Creating a text box similar to a combo box

    Currently I have a combo box display a list of items. When you select an item it populates the other text boxes. Instead of using a combo box I would like to use a text box by typing the name of the item. How would you do this?
  11. S

    Using combo box as text box

    Is possible to use a combo as a text box as well. Say for example nothing is in the database. You manually type in the information and it outputs that information in Form 1 to Form 2 field.
  12. S

    Unsuccessful with requery from combo to text box

    Thank you again
  13. S

    Unsuccessful with requery from combo to text box

    Thank you its working now. This worked for me Me.Name1 = Me.cboCom1.Column(1), but I have other text boxes associated with cboCom1. I typed Me.Name2 = Me.cboComName1.Column(18), but nothing displayed
  14. S

    Unsuccessful with requery from combo to text box

    I did try that solution, and I still get run time 3326 error.
  15. S

    Unsuccessful with requery from combo to text box

    I a combo with a list of names to choose from and the text suppose display appropriate title associated with the name. Private Sub cboCom1_AfterUpdate() Me!Name1.Requery Me!Name1.Value = DisplayName End Sub Everytime I select a name, I receive run-time error 3326.
Back
Top Bottom