How do i synchronize several text boxes from (1) cobmo box?

J

John S. Ford, MD

It sounds like the ComboBox is used to present a series of choices to the
user and that each choice should launch a different algorithm for filling
those TextBoxes.

If this is so, then I'd go to the AfterUpdate event for that ComboBox and
use a Select Case Statement:

Select Case ComboBoxName.Value
Case Value1
TextBox1 = Value!
TextBox2 = Value2
Additional Expressions
Case Value2
TextBox1 = Value3
TextBox2 = Value4
Additional Expressions
etc.
End Select

John
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top