It is a container that displays a frame around a group of controls with an optional header.
Questions tagged [groupbox]
415 questions
-2
votes
1 answer
How can I use Groupbox Tag?
I'm programming in C# in Visual Studio and I'm using a Groupbox in which I insert a number of TextBoxes, depending on data I retrive from the database. As I don't know how many Textboxes there are, I store the amount in the Tag Property of the…

Ismael
- 11
- 1
- 4
-2
votes
1 answer
HScrollbar/VScrollbar in the Groupbox to group multiple buttons in MFC
I tried to include the VScrollbar/ HScrollbar. where i have placed the group of static text control[ i have to place around 10 static text ] in the group. But i unable to do.Even I will be happy if you can able to suggest any other way to place the…

Senthil Andavan
- 11
- 3
-2
votes
1 answer
Is it possible to hide textboxes and labels inside a groupbox?
I'm creating an Inventory system and I want to have different modules like Stocks Reports and Stocks Info in just a single form. Is it possible? Can groupbox allow this to happen? Thank you so much. Feel free to suggest and comment and please be…

Jonald Samilo
- 297
- 1
- 2
- 11
-2
votes
1 answer
How can I add dynamic control another class in method?
I generated these buttons(sepete ekle) dynamically. This button has an click event.
I want to make : when this button clicked flowlayout panel add to groupbox control.

Halil ŞAHİN
- 1
- 3
-2
votes
2 answers
Label don't change value when I choose one CheckBox
Hello for everyone I am new here,sorry if this post doens't match with at all with how should be,because It's my first post this.
I am wanting to change the value of the Label when I choose one CheckBox,but It's seems that the Label just changes…

Falion
- 247
- 1
- 11
-2
votes
1 answer
Get active RadioButton on GroupBox
I've got 12 radiobuttons in GroupBox. I want to get id (or value) of this one, which is currently chosen (active). Is there any built-in C# function to do so and I need to write my own one?

TN888
- 7,659
- 9
- 48
- 84
-2
votes
1 answer
Restrict the numbers of controls in a winform
i have a button in my form and for every button click it is adding groupBox. but i want a winform contain only 8 groupboxes. when the numbers of groupBox reach 8 it will automatically do Visible=false all 8 before groupBox and again adds a groupBox…

paradoxIST
- 31
- 7
-2
votes
1 answer
GroupBox growing in a inherited form
I´ve created a base form. In this base form, has a groupbox component. When I use this form by inherit, the groupbox inherited is growing more than form. I need to ajust this all the time when I close and open the design of the forms inheriteds by…

lucasrhuan
- 119
- 1
- 1
- 6
-4
votes
2 answers
How can i add 16 picturebox in to Groupbox
PictureBox[] p = new PictureBox[15];
for (int i = 0; i == 15; i++)
{
p[i] = new PictureBox();
p[i].Name = "ItemNum" + i.ToString();
p[i].Location = new Point(0, 0);
p[i].Size = new…

user3647614
- 19
- 3
-5
votes
1 answer
Setting color of the text property of GroupBox
I am using MS VS 2010 for a Windows Forms project.
When I added a GroupBox control to the form the label of the control was outputted in the Black color though the property ForeColor was set automatically to Yellow that is to the ForeColor of the…

Vlad from Moscow
- 301,070
- 26
- 186
- 335