It is a container that displays a frame around a group of controls with an optional header.

learn more… | top users | synonyms

0
votes
0answers
10 views

Is it possible to iterate on GroupBox

Is it possible to iterate using foreach loop on multiple geoupBox. I have 6 GroupBox named as gBox1,gBox2,gBox3,gBox4,gBox5,gBox6 AND each gBox contain 21 ComboBox out of which I want to select only ...
0
votes
0answers
24 views

Layout of grid/GroupBoxes and a Qlabel with wordWrap

I have a problem with the behaviour of the layout of GroupBoxes in a grid. The GroupBoxes are one under the other. The top one has a minimum size and is expanding, the others have a preferred ...
0
votes
1answer
28 views

Groupboxes SendToFront() vb.net wpf

I'm new to wpf and see that there's no SendToFront() method to send controls to the front/focused. My scenario has 3 group boxes on top of each other hidden/visible depending on what radio button is ...
3
votes
1answer
78 views

How create dynamic GroupBox in C#

I am trying to create groupbox dynamically and these GB will create on selection on checkbox. Means I have 5 check boxes now if I select 1st CB then 1 GB with some other dynamic checkbox shall be ...
0
votes
2answers
66 views

Copy content of textboxes to others

I have two GroupBoxes and a Button, in each GroupBox I've 40 TextBoxes. How can I copy the contents of the first 40 TextBoxes to the second ones programmatically ?
0
votes
0answers
31 views

Updating Excel worksheet on group box change

I am unable to trigger my function when my group box of option buttons change the value of A13 which is the cell my group box has its cell link on. How could I trigger/call MyFunction when the ...
0
votes
0answers
33 views

Ruler Bar & Groupbox in PowerBuilder 12.5

I need to edit project that just migrate from PB Classic to .Net(12.5), I found a few issues Groupbox--> Groupbox will be be appear when I adjust existing Groupbox & when I create new groupbox, ...
0
votes
3answers
61 views

Retrieve a single value from WinForms groupBox in Visual Studio

I am new to Visual Studio and C#. I am creating a WinForms app that calculates a monthly mortgage payment which requires a Text Box (for principle), a Combo Box (for interest rate),a Group Box which ...
0
votes
1answer
48 views

Button_Click() fires twice if placed in the group box

I am new to desktop application development. I have a search button through which the grid is filled from the database records. First I put the button in the group box and debugged the program and ...
2
votes
2answers
75 views

clear Winforms GroupBox without destroying content

I want to clear the content of a GroupBox to fill it with new options, but I cant use the Dispose() function since I don't want to destroy the objects in it (Textboxes from another class). Is there a ...
0
votes
2answers
35 views

How to make two GroupBoxes of the same height?

I am trying to build an user control in C#/.NET 4.0/WinForms that would contain two (or more) GroupBox elements placed above each other, first one touching the top border of my user control while last ...
-1
votes
1answer
72 views

c# groupBox how to delete this lines? [closed]

how to delete this white lines in a GroupBox?
2
votes
1answer
76 views

Printing scales my WPF-GroupBox

I'm trying to print out some information from my wpf-application. I found some code to make what I want to print to fit one page and it does the job very well. The problem is that after I print what i ...
0
votes
1answer
74 views

Mfc Mousewheel not spinning spin button controlled textbox

I have a MFC application form as the figure: And I was wondering why the mousewheel was working on the "Base angle:" field (for controlling the spin control), but not on the "Angle" and "Range" ...
0
votes
2answers
297 views

Make all controls inside a GroupBox read-only?

I know that many individual controls have a ReadOnly property. But suppose I have a GroupBox in which there are many different controls (text boxes, combo boxes, radio buttons, etc ..), is it possible ...
0
votes
0answers
56 views

QGroupBox title styles won't work on Mac

Is there any kind of problem stylizing with a QSS sheet a title of a QGroupBox? I used this style: QGroupBox#parametersContainer::title { background: qlineargradient(x1:0, y1:0, x2:0, y2:1, ...
1
vote
3answers
311 views

Loop through all controls on a form,even those in groupboxes

I'd like to add an event to all textboxes on my form: foreach (Control C in this.Controls) { if (C.GetType() == typeof(System.Windows.Forms.TextBox)) { C.TextChanged += new ...
0
votes
1answer
119 views

Drag n drop in groupbox items

I am working on a Windows Forms project using C# where I use a groupbox as a container and add items to it (Labels, pictureBoxes...). I would like to know if is it possible to implement a drag and ...
1
vote
1answer
83 views

Groupbox text property inside a groupbox - smaller text

I'm having a situation where I have a groupbox encompasing all controls on my form. Inside that groupbox I have another groupbox however the text for this groupbox is substantially smaller than the ...
0
votes
2answers
91 views

How to remove controls from groupbox in?

I am dynamically creating buttons in groupbox, so when I press second button, it should display different set of buttons in same groupbox, so I need to delete earlier buttons in order to get new ones, ...
0
votes
3answers
341 views

GroupBox / TitledBorder in JavaFX 2?

Is there something like a GroupBox or TitledBorder available on JavaFX 2? Thanks for any hint :-)
0
votes
2answers
174 views

GroupBox: Adjust size according to text length

Is there an easy way to have a GroupBox auto resize its width depending on the length of the string in the Text property? Say I fit the width by hand (in Design Mode) when the Text = "Text1" then, ...
0
votes
0answers
50 views

Layout of QGroupBox

I have made gui (in Qt Designer) with groupbox within other groupbox, and there are few buttons, progress bar and label in it. label is over progress bar and it is selected in picture A. When I set ...
0
votes
1answer
246 views

How to change group box text color?

I'm create group box run time in my application, shows caption in blue color in Windows xp and black in windows 7. How to change default caption color of group box in MFC programmatically? so that it ...
3
votes
1answer
352 views

How do I dynamically change groupboxes on button click?

I'm creating an application on Visual Studio 2012 (c#/Winforms). What exactly i have in mind is depicted by the image: When Button1 is clicked the content within the groupbox will change, same with ...
0
votes
1answer
184 views

Border of qgroupbox

I'm having some trouble setting a border of a groupbox. my aim is to have something like this, http://imageshack.us/photo/my-images/811/screenshotfrom201301291.png/ but so far all i can get is ...
0
votes
0answers
123 views

C# Where and how to visualize multiple GroupBox'es

I dynamically generate lots of GroupBoxes(up to 50) and want to visualize(stack) them in a Box with a vertical scrollbar. i tried the ListBox and ListView without success -> i always got a disabled ...
1
vote
2answers
195 views

Make QGroupBox::title expand

Using a stylesheet I manage to set the background for the title element as shown in the image above (1.) using: QGroupBox::title { background-color: rgb(255, 255, 0); subcontrol-origin: ...
0
votes
2answers
283 views

Fieldset tag is not working in my asp.net website?

i have a fieldset in my asp.net website to make a groupbox look alike.. but its not coming. here's what i am doing : <fieldset id="fl1" runat="server"> <legend>My ...
0
votes
2answers
141 views

How do you rename runtime generated checkboxes in runtime generated groupboxes?

I am having an issue changing runtime generated checkbox names in runtime generated groupboxes. I am using multiple groupboxes, and then taking all of the rows in a database and creating checkboxes ...
-3
votes
1answer
60 views

Can't find need a label with a rectangle in the toolbox section? [closed]

Can't find this control. Groupbox? Thing that is label and a rectangle in C# WPF
0
votes
0answers
191 views

GroupBox rendering issues in VS 2010 (.NET 3.5) with AddFontMemResourceEx function

I have a main form with a GroupBox container and some controls on it (textboxes, labels, buttons...), a menu item (outside GroupBox) that opens a ShowDialog form (AboutBox). This form has a Timer ...
1
vote
1answer
226 views

radio button is clicked in any of the groupboxes, that it removes the click from which ever groupbox was previously clicked

I have an application that requires a set of questions that may range from 1 to 1000. The questions are set up by the user and I need the groupbox to contain the 2 radio buttons indicated below. The ...
3
votes
1answer
403 views

Change border color of GroupBox in Delphi

How can I change the border color of a GroupBox in Delphi?
2
votes
2answers
420 views

Transparent background color in TGroupBox - DELPHI

How can i set transparent background color in TGroupBox? In my Delphi's form I have a GroupBox and a Panel (graphically overlaid). I wrote a procedure to draw a gradient fill on the Panel using Rect. ...
0
votes
2answers
188 views

Using integer as if subject

Trying to have some main template to change visibility of groupboxes based on the number in main editbox. EditDay is the edit box, where only numbers are in it day:=DayOfTheYear(Now); ...
1
vote
1answer
252 views

WPF GroupBox Style not being applied on custom control

I have created a custom control so simply draw the border of a geroupbox in red if there is an error. for some reason when I use the control the foreground colour doesn't get set correctly it defaults ...
0
votes
1answer
152 views

Failing To Set The Wrap Panel Functionailty On Dynamically generated Groupboxes

Hi buddies :) I am working on a wpf app which deals with groupboxes and wrap panel. Looking at the title, it seems to be simple but after dynamically generating set of groupboxes I am finding it ...
1
vote
1answer
283 views

Dynamically Generate Multiple GroupBoxes on Button Click in WPF

I am working on a WPF app where I need to dynamically create GroupBoxes(which contains combobxes, sliders and togglebutton) based on Button Click. I have two xaml files in my View Folder. ...
1
vote
2answers
289 views

WPF: GroupBox.SetResourceReference suddenly makes it inherit TemplateParent.Foreground

I was making a UserControl when I found this strange phenomena. If I use C# code to place a GroupBox in the UserControl's template and then make any SetResourceReference call on the GroupBox, suddenly ...
0
votes
2answers
650 views

How to add a ScrollBar to a GroupBox

Is there any method to add a scroll bar to a group box? My code scenario is: I have many groupboxes on a form. All the groupboxes will appear in the same place and also the height and width is fixed. ...
1
vote
2answers
146 views

How can I get the panel's children to dynamically reset their Location.Y property?

I have a panel on a form, with the panel's AutoScroll property set to True. On that panel I have placed several GroupBox controls, which take up more space than the panel does - thus, the panel ...
0
votes
3answers
483 views

Changing Groupbox Header Orientation

I'm creating a groupbox in WPF to contain my controls, and was wondering whether it's possible to change the header to run vertically instead of horizontally? Here's my code; <GroupBox ...
0
votes
2answers
478 views

How to make a radio button selection from groupbox appear in a label?

Is there a way when a user selects a choice from a radio button from a group-box to appear in a label? It would be on the line with Quantity/Phone Type right after numberPhoneTextBox.Text. There ...
1
vote
1answer
496 views

Detect if mouse stop moving vb.net

I would like to stop the timer whenever a mouse stops moving inside a groupbox As of now, I start the timer when the mouse hover at the groupbox and stops it when it leaves the group box. Private ...
3
votes
2answers
474 views

Custom controls (groupbox, picturebox, label) - On Mouse Enter, Insides Disappear

Sorry for that very confusing title, here's my problem. I have a custom GroupBox, and inside of that is a custom picturebox and label. The issue is, when I launch the form application whenever my ...
0
votes
1answer
740 views

C# groupbox visibility in windows form

I Googled around but seems my problem happens when two gropboxes are overlapping, in my case they are not overlapping! Problem is that the Visible property of groupbox doesn't work. what am I trying ...
0
votes
1answer
305 views

Disable groupbox and keeping context menu enabled

I'm in the process of porting a legacy VB application to C#/Winforms. While the vast majority of the user interface is complete, I have a problem that I've not been able to solve after some digging. ...
1
vote
1answer
322 views

Snap group box to contained controls when resizing

When resizing the group box, is there a way to snap it to the bounds of the controls it contains? Currently, resizing it snaps only relative to controls outside the group box or if Alt is pressed, it ...
0
votes
5answers
812 views

How to show a GroupBox and its content on another form?

I have two forms. On the first form I have a virtual numpad (I have a GroupBox and inside I have number buttons and this is my virtual numpad). With this virtual numpad I enter numbers into a TextBox. ...

1 2 3 4