Click here to Skip to main content
15,920,596 members
Home / Discussions / C#
   

C#

 
GeneralRe: TreeView Multiple Column Microsoft Control Pin
Dave Kreskowiak2-Oct-09 9:16
mveDave Kreskowiak2-Oct-09 9:16 
GeneralRe: TreeView Multiple Column Microsoft Control Pin
DaveyM692-Oct-09 10:38
professionalDaveyM692-Oct-09 10:38 
GeneralRe: TreeView Multiple Column Microsoft Control Pin
LimitedAtonement5-Oct-09 5:56
LimitedAtonement5-Oct-09 5:56 
GeneralRe: TreeView Multiple Column Microsoft Control Pin
Dave Kreskowiak5-Oct-09 12:55
mveDave Kreskowiak5-Oct-09 12:55 
GeneralRe: TreeView Multiple Column Microsoft Control Pin
Mycroft Holmes2-Oct-09 15:23
professionalMycroft Holmes2-Oct-09 15:23 
QuestionReroute an Application's Network Traffic Pin
Zaegra2-Oct-09 6:04
Zaegra2-Oct-09 6:04 
AnswerRe: Reroute an Application's Network Traffic Pin
Saksida Bojan2-Oct-09 6:38
Saksida Bojan2-Oct-09 6:38 
GeneralRe: Reroute an Application's Network Traffic Pin
Zaegra2-Oct-09 7:01
Zaegra2-Oct-09 7:01 
QuestionHandling WM_GETMINMAXINFO to prevent borderless forms overlapping taskbar when maximized Pin
WebMaster2-Oct-09 4:58
WebMaster2-Oct-09 4:58 
AnswerRe: Handling WM_GETMINMAXINFO to prevent borderless forms overlapping taskbar when maximized Pin
Saksida Bojan2-Oct-09 5:30
Saksida Bojan2-Oct-09 5:30 
GeneralRe: Handling WM_GETMINMAXINFO to prevent borderless forms overlapping taskbar when maximized Pin
WebMaster2-Oct-09 5:45
WebMaster2-Oct-09 5:45 
GeneralRe: Handling WM_GETMINMAXINFO to prevent borderless forms overlapping taskbar when maximized Pin
Saksida Bojan2-Oct-09 6:28
Saksida Bojan2-Oct-09 6:28 
GeneralRe: Handling WM_GETMINMAXINFO to prevent borderless forms overlapping taskbar when maximized Pin
WebMaster2-Oct-09 6:46
WebMaster2-Oct-09 6:46 
GeneralRe: Handling WM_GETMINMAXINFO to prevent borderless forms overlapping taskbar when maximized Pin
Saksida Bojan2-Oct-09 7:06
Saksida Bojan2-Oct-09 7:06 
GeneralRe: Handling WM_GETMINMAXINFO to prevent borderless forms overlapping taskbar when maximized Pin
WebMaster2-Oct-09 20:59
WebMaster2-Oct-09 20:59 
GeneralRe: Handling WM_GETMINMAXINFO to prevent borderless forms overlapping taskbar when maximized Pin
Saksida Bojan2-Oct-09 22:19
Saksida Bojan2-Oct-09 22:19 
protected override void WndProc(ref Message m)<br />
{<br />
if (m.Msg == 36) // This code is for WM_GETMINMAXINFO<br />
{<br />
// Do Something<br />
}<br />
base.WndProc(ref m);<br />
}


this is from sdk:
The WM_GETMINMAXINFO message is sent to a window when the size or position of the window is about to change. An application can use this message to override the window's default maximized size and position, or its default minimum or maximum tracking size.

A window receives this message through its WindowProc function.

You can also look into events as ResizeBegin and Move. Althou when i have overriden WndProc, my Form didn't open

Why it didn't help. I have tested and my taskbar wasn't hidden.
GeneralRe: Handling WM_GETMINMAXINFO to prevent borderless forms overlapping taskbar when maximized Pin
WebMaster3-Oct-09 1:01
WebMaster3-Oct-09 1:01 
GeneralRe: Handling WM_GETMINMAXINFO to prevent borderless forms overlapping taskbar when maximized Pin
Saksida Bojan3-Oct-09 1:49
Saksida Bojan3-Oct-09 1:49 
GeneralRe: Handling WM_GETMINMAXINFO to prevent borderless forms overlapping taskbar when maximized Pin
WebMaster3-Oct-09 4:34
WebMaster3-Oct-09 4:34 
Questionnot able to read data from excel sheet using Microsoft.Office.Interop.Excel Pin
PrasannaKulkarni2-Oct-09 4:34
PrasannaKulkarni2-Oct-09 4:34 
AnswerRe: not able to read data from excel sheet using Microsoft.Office.Interop.Excel Pin
Dave Kreskowiak2-Oct-09 5:28
mveDave Kreskowiak2-Oct-09 5:28 
GeneralRe: not able to read data from excel sheet using Microsoft.Office.Interop.Excel Pin
PrasannaKulkarni2-Oct-09 6:19
PrasannaKulkarni2-Oct-09 6:19 
GeneralRe: not able to read data from excel sheet using Microsoft.Office.Interop.Excel Pin
Dave Kreskowiak2-Oct-09 7:05
mveDave Kreskowiak2-Oct-09 7:05 
QuestionCannot convert from system...IList<class> to class[]</class> Pin
Sevententh2-Oct-09 4:09
Sevententh2-Oct-09 4:09 
AnswerRe: Cannot convert from system...IList to class[] Pin
Keith Barrow2-Oct-09 4:19
professionalKeith Barrow2-Oct-09 4:19 

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.