Radiobutton is loose on form

0

I got a project and the screen has 3 radiobuttons. I needed to add a room. I went into the component palette and gave two clicks. Making the appropriate changes, such as caption, position I circled the program and when I click on one of the three that were already, it unchecks what is marked, but when I click on that new one, it does not unmark anyone and nobody unchecks it, as if it was loose on the form. How do I do this? I've been copying an existing one, it tells me that a component with that name already exists. Rename and gives error that already exists a procedure with the same name, in other words, I do not know VB. I'm lost without knowing what to do.

    
asked by anonymous 27.04.2017 / 19:30

1 answer

1

Radio buttons operate inside a container

Each option / radio buttom set has to be in a frame or container as a panel, for example to work together. When you put it in form, the form is the container and how others should be inside a panel or group, they will operate independently.

Cut the new radius of the form and paste it into the container of the other radios.

    
27.04.2017 / 19:57