Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Difference between Panel and GroupBox classes?
Difference between Panel and GroupBox classes?
✍: Guest
Answer 1:
Panel and Group box both can used as container for other controls like radio buttons and check box.
the difference in panel and group box are
Panel
1) In case of panel captions cannot be displayed
2) Can have scroll bars.
Group box
1) Captions can be displayed.
2) Cannot have a scroll bar
Answer 2:
Panel is scrollable. In panel you can’t set caption like Group box.
2013-12-11, 1984👍, 0💬
Popular Posts:
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... ...
In below sample code if we create a object of class2 which constructor will fire first? Public Class...
.NET INTERVIEW QUESTIONS - Can we use events with threading ? Yes, you can use events with thread; t...
.NET INTERVIEW QUESTIONS - What is Suspend and Resume in Threading ? It is Similar to Sleep and Inte...
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...