PDA

Click to See Complete Forum and Search --> : Putting it together


progeix
Nov 25th, 1999, 02:45 AM
Hey.
I have many Option Boxes,
and i would like to know if there is a way to make it where like.: Say i have 2 boxes that are true, i want it to take the Caption in the option boxes and put them together like:

Box1:true This box will be added to a Txt box
Box2:false this one will not
Box3:true this one will be added after box1
Box4:false this one will not

can this be possible?
thanks!

Gumppy
Nov 25th, 1999, 05:03 AM
Just combin the variable's with a & like if u wanted to add box1 with box3
then do
textbox.text = box1 & box3
So if box1 = Hello and box3 = World
the textbox.text would get
HellWorld
And if u would like to have a space inbetween that then do
textbox.text = box1 & " " & box3