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...
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...
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.
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...
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...
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 &...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.