antonyx Arsenal Supporter Local time Today, 12:14 Joined Jan 7, 2005 Messages 556 Sep 28, 2006 #1 basically i have a textbox called 'mytext' when my user types t1 in that textbox, and tabs to the next field, i want the value LHR - T1 to be placed inside 'mytext' how can i do this?
basically i have a textbox called 'mytext' when my user types t1 in that textbox, and tabs to the next field, i want the value LHR - T1 to be placed inside 'mytext' how can i do this?
E edtab Registered User. Local time Today, 12:14 Joined Mar 30, 2002 Messages 257 Sep 28, 2006 #2 In the after update of the text box: If Me.MyText = "t1" then Me.MyText = "LHR - T1" End If This will only fire if the text entered is "t1". Last edited: Sep 29, 2006
In the after update of the text box: If Me.MyText = "t1" then Me.MyText = "LHR - T1" End If This will only fire if the text entered is "t1".
antonyx Arsenal Supporter Local time Today, 12:14 Joined Jan 7, 2005 Messages 556 Sep 28, 2006 #3 thank you very much