Click here to Skip to main content
15,902,743 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: Updating PictureBox control every one minute in windows form Pin
Luc Pattyn15-Sep-09 15:02
sitebuilderLuc Pattyn15-Sep-09 15:02 
QuestionCan i change the shape of the button as its background image? Pin
CoderForEver13-Sep-09 1:10
CoderForEver13-Sep-09 1:10 
AnswerRe: Can i change the shape of the button as its background image? Pin
dan!sh 13-Sep-09 1:26
professional dan!sh 13-Sep-09 1:26 
GeneralRe: Can i change the shape of the button as its background image? Pin
CoderForEver14-Sep-09 22:06
CoderForEver14-Sep-09 22:06 
GeneralRe: Can i change the shape of the button as its background image? Pin
Henry Minute16-Sep-09 2:41
Henry Minute16-Sep-09 2:41 
GeneralRe: Can i change the shape of the button as its background image? Pin
Richard MacCutchan17-Sep-09 4:41
mveRichard MacCutchan17-Sep-09 4:41 
QuestionOverride Text property in GroupBox Pin
dybs11-Sep-09 19:05
dybs11-Sep-09 19:05 
AnswerRe: Override Text property in GroupBox Pin
geali_dor12-Sep-09 0:36
geali_dor12-Sep-09 0:36 
Did you copy the source from your Visual Studio direct in here?

If it's like that, you won't be able to compile the code anyway, because you are missing the type of your Text property

public class ExpandableGroupBox : System.Windows.Forms.GroupBox
{
    public ExpandableGroupBox()
    {
        base.Text = "";
    }

    public override string Text
    {
        get
        {
            return label.Text;
        }
        set
        {
            label.Text = value;
        }
    }
}


hack the planet

GeneralRe: Override Text property in GroupBox Pin
dybs12-Sep-09 4:54
dybs12-Sep-09 4:54 
AnswerRe: Override Text property in GroupBox Pin
Henry Minute12-Sep-09 5:47
Henry Minute12-Sep-09 5:47 
GeneralRe: Override Text property in GroupBox Pin
dybs13-Sep-09 14:04
dybs13-Sep-09 14:04 
GeneralRe: Override Text property in GroupBox Pin
Henry Minute13-Sep-09 14:17
Henry Minute13-Sep-09 14:17 
GeneralRe: Override Text property in GroupBox Pin
dybs13-Sep-09 16:00
dybs13-Sep-09 16:00 
GeneralRe: Override Text property in GroupBox Pin
dybs18-Sep-09 6:44
dybs18-Sep-09 6:44 
GeneralRe: Override Text property in GroupBox Pin
Henry Minute18-Sep-09 6:48
Henry Minute18-Sep-09 6:48 
QuestionMyNeoReports Pin
CWogksch11-Sep-09 4:31
CWogksch11-Sep-09 4:31 
AnswerRe: MyNeoReports Pin
Henry Minute12-Sep-09 5:49
Henry Minute12-Sep-09 5:49 
QuestionFlickering Problem [modified] Pin
geali_dor10-Sep-09 22:21
geali_dor10-Sep-09 22:21 
AnswerRe: Flickering Problem Pin
Henry Minute12-Sep-09 5:51
Henry Minute12-Sep-09 5:51 
AnswerRe: Flickering Problem Pin
April Fans21-Sep-09 21:46
April Fans21-Sep-09 21:46 
QuestionChange Background image of form runtime Pin
swapnil_bhanagle10-Sep-09 6:15
swapnil_bhanagle10-Sep-09 6:15 
AnswerRe: Change Background image of form runtime Pin
dan!sh 11-Sep-09 6:33
professional dan!sh 11-Sep-09 6:33 
AnswerRe: Change Background image of form runtime Pin
April Fans21-Sep-09 21:44
April Fans21-Sep-09 21:44 
Questionlogical expression editor Pin
r.ps9-Sep-09 19:00
r.ps9-Sep-09 19:00 
QuestionDifferent Icon on the title bar than on the application tab Pin
andy4009-Sep-09 10:50
andy4009-Sep-09 10:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.