Search results

  1. C

    Enter 2 columns into 1 text box

    I’m new at this and the more I get into it the worse it gets. I would like to take 2 columns from a combobox and enter them into 1 textbox in line. Also can I send the contents of a textbox to 2 different tables. Thank you very much for your help.
  2. C

    Combobox trouble

    I have a combobox with 3 columns, column 3 is currency. It shows currency in the combobox when I pull it down. When I send it to a textbox it enters it as text. Properties for the textbox is set for currency. Me!Textbox 1 = Me![Combobox].Column(1) Me!Textbox 2 = Me![Combobox].Column(2) I...
  3. C

    Putty combobox info into textboxes

    HRD Thank you for you help I hope you can help me again That entered it as currency, but I can't total them. I have 5 comboboxes that I have numbers going 5 textboxes that I have to total
  4. C

    Putty combobox info into textboxes

    I have a combobox with 3 columns, one is . When I send it to a textbox it enters it as text. Properties for the textbox is set for currency. It is currency in the combobox. Me!Textbox 1 = Me![Combobox].Column(1) Me!Textbox 2 = Me![Combobox].Column(2) Thank you for your help
  5. C

    Putting combobox info into textboxes

    I have a combobox with 3 columns, one is currency . When I send it to a textbox it enters it as text. Properties for the textbox is set for currency . Me!Combobox = Me![Textbox1].Column(1) Me!Combobox = Me![Textbox2].Column(2) Thank you for your help
  6. C

    Adding numbers in text boxes

    Is there any way to add numbers in 5 text boxes without putting a default value in them Thank you for your help
  7. C

    combo box requery

    Private Sub Form_AfterUpdate() LastName.Requery replace your combo box name for LastName I hope this is what your looking for. I'm new at this
  8. C

    Touble printing unbound text boxes

    I have text boxes that are unbound that I use for calulating and I want to print them with the record but don't want to save (30 boxes). But when I press the print button it clears the boxes. Is there anything I can do.
  9. C

    Print Record

    If I save the record first, I lose the contents of the text boxes because they are unbound
  10. C

    Print Record

    I print a record with a command button before I save the record. I have colunns of text boxes that I use to calulate numbers and they are unbound. When I print the form the text boxes return to the defaut values of 0, and print the defaut values Thank You for your help
Back
Top Bottom