Sam Summers
Registered User.
- Local time
- Today, 10:08
- Joined
- Sep 17, 2001
- Messages
- 939
Hi Guys,
I have been trying to figure this out and then referred to a few threads on various websites regarding the above.
But most too complicated for my simple problem?
All I want to do is set a Textboxes text to the value from a combobox on the same form after update?
Here is what I have tried:
---------------------------------------------------------------
Private Sub ClientName_AfterUpdate()
Dim Client As String
Client = Me.ClientName.Value
Me.SetClient.SetFocus
Me.SetClient.Text = Client
End Sub
--------------------------------------------------------------
And before that, this:
--------------------------------------------------------------
Private Sub ClientName_AfterUpdate()
Me.SetClient.SetFocus
Me.SetClient.Text = Me.ClientName.Value
End Sub
---------------------------------------------------------------
Same error for both?
Again, I must be missing something?
Thank you in advance
I have been trying to figure this out and then referred to a few threads on various websites regarding the above.
But most too complicated for my simple problem?
All I want to do is set a Textboxes text to the value from a combobox on the same form after update?
Here is what I have tried:
---------------------------------------------------------------
Private Sub ClientName_AfterUpdate()
Dim Client As String
Client = Me.ClientName.Value
Me.SetClient.SetFocus
Me.SetClient.Text = Client
End Sub
--------------------------------------------------------------
And before that, this:
--------------------------------------------------------------
Private Sub ClientName_AfterUpdate()
Me.SetClient.SetFocus
Me.SetClient.Text = Me.ClientName.Value
End Sub
---------------------------------------------------------------
Same error for both?
Again, I must be missing something?
Thank you in advance