Search results

  1. B

    Text Box Size

    How do I change a text box so that I can type more than 255 characters? Thank you
  2. B

    Text Box Size

    How do I change a text box so that I can type more than 255 characters? Thank you
  3. B

    Refresh Table records

    I have a form entering records into a table. The only way I can seem to get the new records entered using the form to appear in the table is by closing it and re-opeing it. Is there a way I can get the table to refresh with new records automatically? Thank you
  4. B

    Form help

    Thanks for that, I have created another DB as you specified above, tables then the querys. I am now attempting to fathom how to create a form using the querys that Have a combo box to select the person with the problem, and have txt boxs for phone and email which will auto update depending on...
  5. B

    Form help

    Okay, after looking at another DB I Have come up with this: Private Sub Name_AfterUpdate() ' Update Phone/email text box based on value selected in CustomerID combo box. Me!Telephone = Me![Name].Column(1) Me!Email = Me![Email].Column(2) End Sub The telephone text box is...
  6. B

    Form help

    I am trying create a very basic problem problem logging system. problems to be recorded on table one via the main form. I only created a second table so the person with the problem could be selected from a drop down list combo box which links to the customers in the second table. The second...
  7. B

    Form help

    Hi all, I am new here and new to db building so please be nice. I have a table and have made a form for it. On the form I have customer name email and telephone. I created a second table to hold these details. I put a combo box for name on my main form which links to the names in the 2nd...
Back
Top Bottom