Click here to Skip to main content
15,921,531 members
Home / Discussions / C#
   

C#

 
AnswerRe: Removing a " from a string Pin
Guffa16-Feb-07 14:01
Guffa16-Feb-07 14:01 
GeneralRe: Removing a " from a string Pin
sharpiesharpie16-Feb-07 15:46
sharpiesharpie16-Feb-07 15:46 
AnswerRe: Removing a " from a string Pin
Guffa17-Feb-07 14:58
Guffa17-Feb-07 14:58 
AnswerRe: Removing a " from a string Pin
Thomas Stockwell16-Feb-07 16:16
professionalThomas Stockwell16-Feb-07 16:16 
GeneralRe: Removing a " from a string Pin
sharpiesharpie17-Feb-07 1:34
sharpiesharpie17-Feb-07 1:34 
Questionhow to implement payflopro_recurringbilling through pfpro_dotnet_sdk_RC2_v1.1(verisign sdk) in c# Pin
shankhan bhandari16-Feb-07 11:33
shankhan bhandari16-Feb-07 11:33 
AnswerRe: how to implement payflopro_recurringbilling through pfpro_dotnet_sdk_RC2_v1.1(verisign sdk) in c# Pin
Wayne Phipps17-Feb-07 3:23
Wayne Phipps17-Feb-07 3:23 
QuestionProblem: vista will not sent a WM_ message [modified] Pin
michele_cv16-Feb-07 10:37
michele_cv16-Feb-07 10:37 
Hello,

how it is possible to register and then get the message WM_DWMWINDOWMAXIMIZEDCHANGE?

On http://blogs.msdn.com/greg_schechter/archive/2006/09/14/753605.aspx I have found this information:

WM_DWMWINDOWMAXIMIZEDCHANGE - windows can register to hear about when other windows have been maximized. This is useful for, for instance, the TaskBar or the SideBar which go opaque when other windows get maximized.

The following code will not detect the message WM_DWMWINDOWMAXIMIZEDCHANGE but the other messages like WM_DWMCOLORIZATIONCOLORCHANGED will be detected. (Desktop compositing is enabled and the following code is in a simple windows form created by vs2005)

private const int WM_DWMCOMPOSITIONCHANGED = 0x031E;
private const int WM_DWMNCRENDERINGCHANGED = 0x031F;
private const int WM_DWMCOLORIZATIONCOLORCHANGED = 0x0320;
private const int WM_DWMWINDOWMAXIMIZEDCHANGE = 0x0321;

protected override void WndProc(ref Message msg)
{
    if (msg.Msg == WM_DWMWINDOWMAXIMIZEDCHANGE)
    {
        /* ... */
    }

    base.WndProc(ref msg);
}


May you have some information how register and detect this message...

Regards michi


-- modified at 6:35 Saturday 17th February, 2007
Questiongetting each byte of the pixel Pin
samreengr816-Feb-07 9:47
samreengr816-Feb-07 9:47 
AnswerRe: getting each byte of the pixel Pin
Christian Graus16-Feb-07 10:00
protectorChristian Graus16-Feb-07 10:00 
AnswerRe: getting each byte of the pixel Pin
Wayne Phipps17-Feb-07 4:29
Wayne Phipps17-Feb-07 4:29 
QuestionDraging a line Pin
CodeItWell16-Feb-07 9:39
CodeItWell16-Feb-07 9:39 
AnswerRe: Draging a line Pin
Christian Graus16-Feb-07 10:00
protectorChristian Graus16-Feb-07 10:00 
AnswerRe: Draging a line Pin
MoustafaS16-Feb-07 10:23
MoustafaS16-Feb-07 10:23 
QuestionDevice Volume Monitor :: Issue On Insertion of CD? Pin
Matt U.16-Feb-07 9:32
Matt U.16-Feb-07 9:32 
QuestionSaving text? Pin
alostdruid16-Feb-07 9:16
alostdruid16-Feb-07 9:16 
AnswerRe: Saving text? Pin
MoustafaS16-Feb-07 10:27
MoustafaS16-Feb-07 10:27 
GeneralRe: Saving text? Pin
alostdruid16-Feb-07 11:51
alostdruid16-Feb-07 11:51 
GeneralRe: Saving text? Pin
MoustafaS16-Feb-07 12:09
MoustafaS16-Feb-07 12:09 
QuestionDataGridView - Adding new row Pin
Aleksandar Smudja16-Feb-07 9:11
Aleksandar Smudja16-Feb-07 9:11 
AnswerRe: DataGridView - Adding new row Pin
MoustafaS16-Feb-07 10:33
MoustafaS16-Feb-07 10:33 
GeneralRe: DataGridView - Adding new row Pin
Aleksandar Smudja16-Feb-07 11:17
Aleksandar Smudja16-Feb-07 11:17 
QuestionChild MDI problem with Events [modified] Pin
ross.anderson16-Feb-07 9:07
ross.anderson16-Feb-07 9:07 
QuestionStringBuilder vs. String Pin
yesufollower16-Feb-07 6:12
yesufollower16-Feb-07 6:12 
AnswerRe: StringBuilder vs. String Pin
Thomas Stockwell16-Feb-07 6:16
professionalThomas Stockwell16-Feb-07 6:16 

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.