Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: uncchcs
  • Content: Threads
  • Order by date
  1. uncchcs

    SelStart of Controls

    I have a form that has 25 controls each of which are textboxes or combo boxes. What I am trying to do is set the SelStart of each control equal to the SelLength. What I have done so far is to set the SelStart = to the SelLength on the Enter event for each control. For example: Private Sub...
  2. uncchcs

    SelStart of Controls

    I have a form that has 25 controls each of which are textboxes or combo boxes. What I am trying to do is set the SelStart of each control equal to the SelLength. What I have done so far is to set the SelStart = to the SelLength on the Enter event for each control. For example: Private Sub...
  3. uncchcs

    List box selection to textbox

    I have a list box with the following columns: | Product | ProductID | Category | On the same form, I have a textbox for each column in the listbox. I want the user to be able to select a row from the listbox and automatically update(fill-in) the textboxes for each control.
  4. uncchcs

    Form Close,Save,Cancel...

    I have a form with buttons where users can save,cancel,delete,create new, or close the form. What I want to do, is if the user attempts to close the form after changing data without clicking save, prompt them on close to accept or cancel changes. The same if they attempt to close with the...
  5. uncchcs

    Save,Cancel,Delete,Close...

    I have a form with buttons where users can save,cancel,delete,create new, or close the form. What I want to do, is if the user attempts to close the form after changing data without clicking save, prompt them on close to accept or cancel changes. The same if they attempt to close with the...
  6. uncchcs

    City,State Lookup From ZipCode

    I have a form where the user enters a zip code and the city and state is automatically filled in. I am using the following code: Private Sub ZipCode_Exit(Cancel As Integer) Me!State = DLookup("State", "tblZipCode", "ZipCode = " & "'" & Me!ZipCode &...

Part and Inventory Search

Back
Top