Click here to Skip to main content
15,920,602 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: Custom control help! Pin
Luc Pattyn18-Jun-10 8:11
sitebuilderLuc Pattyn18-Jun-10 8:11 
QuestionHow to create xmpp client using C#? Pin
manjeeet17-Jun-10 23:05
manjeeet17-Jun-10 23:05 
Answercross-post Pin
Luc Pattyn18-Jun-10 2:29
sitebuilderLuc Pattyn18-Jun-10 2:29 
AnswerRe: How to create xmpp client using C#? Pin
LloydA11120-Jun-10 9:24
LloydA11120-Jun-10 9:24 
QuestionWindow resizing Pin
Lamazhab17-Jun-10 5:37
Lamazhab17-Jun-10 5:37 
AnswerRe: Window resizing Pin
Luc Pattyn17-Jun-10 6:41
sitebuilderLuc Pattyn17-Jun-10 6:41 
GeneralRe: Window resizing Pin
Lamazhab24-Jun-10 12:59
Lamazhab24-Jun-10 12:59 
AnswerRe: Window resizing Pin
Lamazhab17-Jun-10 8:21
Lamazhab17-Jun-10 8:21 
In case someone else has the same issue, this is how I solved it:

protected override void WndProc(ref System.Windows.Forms.Message message)
{
const int WM_SYSCOMMAND = 0x0112;
const int SC_MOVE = 0xF010;
const int WM_NCDOUBLECLICK = 0x00A3;

switch(message.Msg)
{
case WM_SYSCOMMAND:
int command = message.WParam.ToInt32() & 0xfff0;
if (command == SC_MOVE)
return;
break;
// Non-client double click
case WM_NCDOUBLECLICK:
return;
}
base.WndProc(ref message);
}
GeneralRe: Window resizing Pin
Luc Pattyn17-Jun-10 8:49
sitebuilderLuc Pattyn17-Jun-10 8:49 
GeneralRe: Window resizing Pin
Lamazhab24-Jun-10 13:02
Lamazhab24-Jun-10 13:02 
GeneralRe: Window resizing Pin
Luc Pattyn24-Jun-10 13:08
sitebuilderLuc Pattyn24-Jun-10 13:08 
QuestionAutomatically add a new row when the user presses "Tab" Pin
sri_009915-Jun-10 23:40
sri_009915-Jun-10 23:40 
AnswerRe: Automatically add a new row when the user presses "Tab" Pin
Som Shekhar16-Jun-10 2:05
Som Shekhar16-Jun-10 2:05 
QuestionUSB drive reader Pin
S.Aijaz14-Jun-10 3:45
S.Aijaz14-Jun-10 3:45 
Answercross-post Pin
Luc Pattyn14-Jun-10 3:55
sitebuilderLuc Pattyn14-Jun-10 3:55 
QuestionCustom controll flickers! Pin
venomation9-Jun-10 9:28
venomation9-Jun-10 9:28 
AnswerRe: Custom controll flickers! [modified] Pin
Luc Pattyn9-Jun-10 9:43
sitebuilderLuc Pattyn9-Jun-10 9:43 
GeneralRe: Custom controll flickers! Pin
venomation9-Jun-10 11:42
venomation9-Jun-10 11:42 
GeneralRe: Custom controll flickers! Pin
Luc Pattyn9-Jun-10 12:06
sitebuilderLuc Pattyn9-Jun-10 12:06 
GeneralRe: Custom controll flickers! Pin
venomation9-Jun-10 13:37
venomation9-Jun-10 13:37 
GeneralRe: Custom controll flickers! Pin
Luc Pattyn9-Jun-10 13:44
sitebuilderLuc Pattyn9-Jun-10 13:44 
GeneralRe: Custom controll flickers! Pin
venomation9-Jun-10 14:05
venomation9-Jun-10 14:05 
GeneralRe: Custom controll flickers! Pin
Luc Pattyn9-Jun-10 14:40
sitebuilderLuc Pattyn9-Jun-10 14:40 
GeneralRe: Custom controll flickers! Pin
venomation10-Jun-10 4:11
venomation10-Jun-10 4:11 
GeneralRe: Custom controll flickers! Pin
Luc Pattyn10-Jun-10 4:21
sitebuilderLuc Pattyn10-Jun-10 4:21 

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.