Selecting more than one option box?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Bobby Charlton
    New Member
    • Dec 2011
    • 4

    Selecting more than one option box?

    I have a feedback form on my current project, and it's the first time I've used Option boxes for the user to select an option. I want the user to be able to select one option per question. IE:

    Was this helpful?
    - Very Helpful
    - Helpful
    - Not helpful

    How much did you like this program?
    - Very Much
    - Likeable
    - Not much

    I want the user to select one from each question, but when I load the form, the user can only select one option altogether.
    Any help?
  • Guido Geurs
    Recognized Expert Contributor
    • Oct 2009
    • 767

    #2
    Options can be isolated in a frame.
    By this, you can select only 1 option in that frame without influencing the options in the other frames.
    Put the options for "Was this helpful?" in a frame and the options for "How much did you like this program?" in an other.

    Comment

    • Bobby Charlton
      New Member
      • Dec 2011
      • 4

      #3
      It still didn't work. Is there a way to group everything together to option 1-4, 5-6 etc is seperate?

      Comment

      • Guido Geurs
        Recognized Expert Contributor
        • Oct 2009
        • 767

        #4
        You mention in your call "Option boxes" !!??
        It's OptionButton (round) and CheckBox (square).
        You can only isolate OptionButtons (round)!!!!
        Is this fro VB6 or VBA ?
        attached are 2 demos
        Attached Files

        Comment

        • mike harrison
          New Member
          • Dec 2011
          • 1

          #5
          Is it the "square" boxes (also known as radio boxes)?

          Are you sure that you've placed your radio boxes in the frame, rather than close to it? They must be contained within the frame, or VB will assume the form is to act as it's frame.

          Thanks

          Comment

          • Guido Geurs
            Recognized Expert Contributor
            • Oct 2009
            • 767

            #6
            It's OptionBUTTON or RadioBUTTON (round) and CheckBOXES (square)!

            If you drag the frames, you will see that the buttons and boxes are also dragged with the frame so they are inside the frames.

            Comment

            • Killer42
              Recognized Expert Expert
              • Oct 2006
              • 8429

              #7
              Though the common term for this type of control is "radio button", VB6 calls them an "option button" - so for the purposes of discussion here we probably should all stick with that. Anyway...

              Yes, a very common problem is that option buttons are simply positioned so that they look like they're in a frame.

              To ensure an option button is inside a frame, try dragging the frame around as Guido suggested. If the option buttons stay behind, they're not inside the frame, but merely happen to be at the same spot on the form. Cut the option button, select the frame, then paste. That should do it.

              Comment

              Working...