Click here to Skip to main content
15,867,568 members
Home / Discussions / Windows Forms
   

Windows Forms

 
AnswerRe: search or filter treenode display based on text input from user Pin
Eddy Vluggen8-Sep-14 8:35
professionalEddy Vluggen8-Sep-14 8:35 
GeneralRe: search or filter treenode display based on text input from user Pin
Eric P Schneider28-Jan-19 11:03
Eric P Schneider28-Jan-19 11:03 
QuestionClosing a dropdown box on a toolstrip item Pin
Member 980468925-Aug-14 6:42
Member 980468925-Aug-14 6:42 
AnswerRe: Closing a dropdown box on a toolstrip item Pin
Ravi Bhavnani25-Aug-14 8:47
professionalRavi Bhavnani25-Aug-14 8:47 
GeneralRe: Closing a dropdown box on a toolstrip item Pin
Member 980468927-Aug-14 5:02
Member 980468927-Aug-14 5:02 
GeneralRe: Closing a dropdown box on a toolstrip item Pin
Member 980468927-Aug-14 5:09
Member 980468927-Aug-14 5:09 
GeneralRe: Closing a dropdown box on a toolstrip item Pin
Ravi Bhavnani27-Aug-14 5:43
professionalRavi Bhavnani27-Aug-14 5:43 
AnswerRe: Closing a dropdown box on a toolstrip item Pin
xstoneheartx25-Dec-14 13:34
xstoneheartx25-Dec-14 13:34 
QuestionC# Error Config file Pin
Member 856781222-Aug-14 20:55
Member 856781222-Aug-14 20:55 
AnswerRe: C# Error Config file Pin
Richard MacCutchan22-Aug-14 21:13
mveRichard MacCutchan22-Aug-14 21:13 
GeneralRe: C# Error Config file Pin
Member 856781222-Aug-14 22:38
Member 856781222-Aug-14 22:38 
GeneralRe: C# Error Config file Pin
Richard MacCutchan23-Aug-14 0:14
mveRichard MacCutchan23-Aug-14 0:14 
GeneralRe: C# Error Config file Pin
Member 856781223-Aug-14 4:19
Member 856781223-Aug-14 4:19 
GeneralRe: C# Error Config file Pin
Richard MacCutchan23-Aug-14 4:49
mveRichard MacCutchan23-Aug-14 4:49 
GeneralRe: C# Error Config file Pin
Member 856781225-Aug-14 22:58
Member 856781225-Aug-14 22:58 
Questionhow to disable windows form hide animation? Pin
neodeaths30-Jul-14 23:30
neodeaths30-Jul-14 23:30 
AnswerRe: how to disable windows form hide animation? Pin
Eddy Vluggen11-Aug-14 7:58
professionalEddy Vluggen11-Aug-14 7:58 
AnswerRe: how to disable windows form hide animation? Pin
xstoneheartx25-Dec-14 14:15
xstoneheartx25-Dec-14 14:15 
Maybe this help:
C#
enum DWMWINDOWATTRIBUTE : uint
{
    NCRenderingEnabled = 1,
    NCRenderingPolicy,
    TransitionsForceDisabled,
    AllowNCPaint,
    CaptionButtonBounds,
    NonClientRtlLayout,
    ForceIconicRepresentation,
    Flip3DPolicy,
    ExtendedFrameBounds,
    HasIconicBitmap,
    DisallowPeek,
    ExceludedFromPeek,
    Cloak,
    Cloaked,
    FreezeRepresentation
}


[DllImport("dwmapi.dll")]
private static extern int DwmSetWindowAttribute(IntPtr hwnd, DWMWINDOWATTRIBUTE attr, ref int attrValue, int attrSize);

protected override void OnHandleCreated(EventArgs e)
{
    base.OnHandleCreated(e);
    if (Environment.OSVersion.Version.Major >= 6)
    {
        int attrValue = 1;
        int hr = DwmSetWindowAttribute(this.Handle, DWMWINDOWATTRIBUTE.TransitionsForceDisabled, ref attrValue, 4);
        if (hr < 0)
            Marshal.ThrowExceptionForHR(hr);
    }
}

Question<Solved> Should be easy update question... Pin
Okmred29-Jul-14 7:38
Okmred29-Jul-14 7:38 
QuestionCRUD Form dynamicaly generated from XSD Pin
Miguel Figueiredo25-Jul-14 6:34
Miguel Figueiredo25-Jul-14 6:34 
AnswerRe: CRUD Form dynamicaly generated from XSD Pin
Eddy Vluggen25-Jul-14 7:11
professionalEddy Vluggen25-Jul-14 7:11 
Questioncreate setup file with sql server database for another machine in windows form Pin
Member 1029592522-Jul-14 0:20
professionalMember 1029592522-Jul-14 0:20 
AnswerRe: create setup file with sql server database for another machine in windows form Pin
Eddy Vluggen25-Jul-14 7:13
professionalEddy Vluggen25-Jul-14 7:13 
QuestionWindows Forms-Text Mode Printing Pin
Thirugnanam Nataraj23-Jun-14 20:28
Thirugnanam Nataraj23-Jun-14 20:28 
AnswerRe: Windows Forms-Text Mode Printing Pin
Bernhard Hiller23-Jun-14 22:23
Bernhard Hiller23-Jun-14 22:23 

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.