Results 1 to 2 of 2

Thread: Putting it together

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Aug 1999
    Posts
    482

    Post

    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!

  2. #2
    Member
    Join Date
    Nov 1999
    Posts
    33

    Post

    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
  •  



Click Here to Expand Forum to Full Width