Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   [Access] Automatically filling a field (https://thetfp.com/tfp/tilted-technology/75028-access-automatically-filling-field.html)

bltzkriegmcanon 11-05-2004 09:32 AM

[Access]/[SQL] Automatically filling a field
 
Hey guys, I need to ask a (hopefully) quick question. I'm trying to set up a form so that data from a user's input in a text box will automatically go into another text box after the user has input it into the first text box. What I'm trying to get done here is input the VIN of a vehicle in one text box, and then the last 6 digits of that input will go into a text box on that same form. Is this possible without involving another table or creating a field on that same table, or creating a subform?

Thanks in advance for any help that can be given.

P.S. I have another question. As usual. How can I set a query's input field to be limited to a certain number of characters, or a certain type of input (alpha/num)? As in, a user can only input so many characters in the query or the user gets an error message, as opposed to no results showing.

tinomen 11-05-2004 10:39 AM

Question 1: Create an AfterUpdate event for the first textfield and use the Right function. Something like this:

Code:

Private Sub Text1_AfterUpdate()
    Text2.Text = Right(Text1.Text, 6)
End Sub

Question 2: Use the Input Mask property. It can limit characters and type of characters. The appropriate help reference can be found under Valid input mask characters

bltzkriegmcanon 11-10-2004 05:32 PM

Ok, I tried what you suggested, but then I got the following run-time error:

Run-time error '2185':

You can't reference a property or method for a control unless the control has the focus.

So what should I do?

tinomen 11-11-2004 08:38 AM

Dumb me. Change Text2.Text to Text2.Value


All times are GMT -8. The time now is 05:44 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37