Help with displaying info

  • Thread starter Thread starter Allen
  • Start date Start date
A

Allen

hello,

I have a Option group that has 4 options. Depending on
what option is selected for showing Text in a TextBox.

the Text box is called [Payee]
and what I want to do is, I want to show what is currently
in the text box, but is one of the options is selected, I
want to add text to what is in the textbox [Payee], but
the info I want to add is not coming from another textBox,
it is going to be hardcoded in VBA.

Exp: Text box currently says = Wal-mart
Option 1 = Refund
Option 2 = Void

If option 1 is selected I want the text box to show =
Wal-Mart : Refund

Any Ideas on how to show the extra text?

Thanks Allen
 
I think I'd put some code in the after update event of
the option group to say something like:

Me.Payee.Value = Me.Payee.Value & ": Whatever"

Ray
 
Back
Top