Click here to Skip to main content
15,797,672 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: window form application Pin
ANKIT KUMAR SINHA8-Oct-13 23:56
ANKIT KUMAR SINHA8-Oct-13 23:56 
GeneralRe: window form application Pin
Simon_Whale9-Oct-13 1:15
Simon_Whale9-Oct-13 1:15 
GeneralRe: window form application Pin
sankarsan parida12-May-14 8:28
professionalsankarsan parida12-May-14 8:28 
AnswerRe: window form application Pin
Member 9986689 (PandaLion98)25-Oct-14 22:27
professionalMember 9986689 (PandaLion98)25-Oct-14 22:27 
QuestionCode VB 2010 - Send SMS via AT command Pin
caopv12-Sep-13 20:05
caopv12-Sep-13 20:05 
AnswerRe: Code VB 2010 - Send SMS via AT command Pin
Bernhard Hiller12-Sep-13 23:41
Bernhard Hiller12-Sep-13 23:41 
QuestionHow to avoid color changes when button is disabled Pin
Ksmart1210-Sep-13 0:47
Ksmart1210-Sep-13 0:47 
AnswerRe: How to avoid color changes when button is disabled Pin
Bernhard Hiller11-Sep-13 4:50
Bernhard Hiller11-Sep-13 4:50 
You could create your own buttons, the simplest way is to inherit from Button and override some functions:
C#
public class BernieButton : Button
{
    protected override void OnEnabledChanged(EventArgs e)
    {
        base.OnEnabledChanged(e);
        // handle the color properties here
        ....
    }
}

AnswerRe: How to avoid color changes when button is disabled Pin
Dave Kreskowiak11-Sep-13 6:10
mveDave Kreskowiak11-Sep-13 6:10 
AnswerRe: How to avoid color changes when button is disabled Pin
xstoneheartx25-Dec-14 17:46
xstoneheartx25-Dec-14 17:46 
QuestionGrid View Column Pin
Mahdi_kishislan23-Jul-13 11:41
Mahdi_kishislan23-Jul-13 11:41 
AnswerRe: Grid View Column Pin
Dave Kreskowiak23-Jul-13 12:23
mveDave Kreskowiak23-Jul-13 12:23 
AnswerRe: Grid View Column Pin
John D. Sanders4-Feb-14 10:21
John D. Sanders4-Feb-14 10:21 
GeneralRe: Grid View Column Pin
Dave Kreskowiak4-Feb-14 11:13
mveDave Kreskowiak4-Feb-14 11:13 
GeneralRe: Grid View Column Pin
John D. Sanders4-Feb-14 11:16
John D. Sanders4-Feb-14 11:16 
GeneralDatabinding to TextBox Pin
Wild Thing21-Jul-13 3:02
Wild Thing21-Jul-13 3:02 
GeneralRe: Databinding to TextBox Pin
Eddy Vluggen24-Jul-13 9:07
professionalEddy Vluggen24-Jul-13 9:07 
GeneralRe: Databinding to TextBox Pin
Wild Thing25-Jul-13 6:23
Wild Thing25-Jul-13 6:23 
GeneralRe: Databinding to TextBox Pin
BillWoodruff27-Aug-13 19:13
professionalBillWoodruff27-Aug-13 19:13 
QuestionLogging for Windows Form application Pin
lol240317-Jul-13 4:25
lol240317-Jul-13 4:25 
AnswerRe: Logging for Windows Form application PinPopular
NotPolitcallyCorrect17-Jul-13 5:09
NotPolitcallyCorrect17-Jul-13 5:09 
QuestionWinforms - automated retrieve static image Pin
fincity11-Jul-13 8:51
fincity11-Jul-13 8:51 
AnswerRe: Winforms - automated retrieve static image Pin
Richard MacCutchan11-Jul-13 22:16
mveRichard MacCutchan11-Jul-13 22:16 
AnswerRe: Winforms - automated retrieve static image Pin
Eddy Vluggen9-Oct-13 8:30
professionalEddy Vluggen9-Oct-13 8:30 
QuestionError during tableAdapterManager.UpdateAll unable to resolve Pin
Member 838780830-Jun-13 9:02
Member 838780830-Jun-13 9:02 

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.