|
-
Nov 25th, 1999, 03:45 AM
#1
Thread Starter
Hyperactive Member
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!
-
Nov 25th, 1999, 06:03 AM
#2
Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|