Click here to Skip to main content
15,903,175 members
Home / Discussions / C#
   

C#

 
GeneralRe: use DefWindowProc in c# Pin
Carsten Zeumer5-Jun-05 5:22
Carsten Zeumer5-Jun-05 5:22 
GeneralRe: use DefWindowProc in c# Pin
DavidNohejl5-Jun-05 6:23
DavidNohejl5-Jun-05 6:23 
GeneralRe: use DefWindowProc in c# Pin
Carsten Zeumer5-Jun-05 6:33
Carsten Zeumer5-Jun-05 6:33 
GeneralRe: use DefWindowProc in c# Pin
DavidNohejl5-Jun-05 7:17
DavidNohejl5-Jun-05 7:17 
GeneralRe: use DefWindowProc in c# Pin
Sasuko5-Jun-05 6:39
Sasuko5-Jun-05 6:39 
GeneralRe: use DefWindowProc in c# Pin
Carsten Zeumer5-Jun-05 10:12
Carsten Zeumer5-Jun-05 10:12 
GeneralRe: use DefWindowProc in c# Pin
Sasuko5-Jun-05 11:21
Sasuko5-Jun-05 11:21 
GeneralRe: use DefWindowProc in c# Pin
Carsten Zeumer5-Jun-05 11:33
Carsten Zeumer5-Jun-05 11:33 
Shouldn't something like this do the magic?
<code>
protected override void WndProc(ref Message m)
{
	const int WM_NCPAINT                      = 0x0085;
	if (m.Msg == WM_NCPAINT)
	{
		m.Result=(IntPtr) 0;
		return;
	}
	base.WndProc (ref m);
}

the base.WndProc(ref m) calls the DefWndProc then...

/cadi

24 hours is not enough
GeneralRe: use DefWindowProc in c# Pin
Sasuko5-Jun-05 12:53
Sasuko5-Jun-05 12:53 
GeneralAccomplishing Listview Column Reorder Programmatically Pin
Hashir Zuberi5-Jun-05 0:24
Hashir Zuberi5-Jun-05 0:24 
GeneralSerialPort/Stress problem Pin
Snowjim5-Jun-05 0:23
Snowjim5-Jun-05 0:23 
GeneralRe: SerialPort/Stress problem Pin
S. Senthil Kumar5-Jun-05 4:01
S. Senthil Kumar5-Jun-05 4:01 
GeneralRe: SerialPort/Stress problem Pin
Snowjim5-Jun-05 4:14
Snowjim5-Jun-05 4:14 
GeneralRe: SerialPort/Stress problem Pin
S. Senthil Kumar5-Jun-05 7:01
S. Senthil Kumar5-Jun-05 7:01 
GeneralRe: SerialPort/Stress problem Pin
Snowjim5-Jun-05 7:49
Snowjim5-Jun-05 7:49 
GeneralRe: SerialPort/Stress problem Pin
Sebastian Schneider5-Jun-05 20:07
Sebastian Schneider5-Jun-05 20:07 
GeneralRe: SerialPort/Stress problem Pin
Snowjim6-Jun-05 0:59
Snowjim6-Jun-05 0:59 
GeneralC# directory file-structure reading Pin
Steepy_dipper4-Jun-05 22:51
sussSteepy_dipper4-Jun-05 22:51 
GeneralRe: C# directory file-structure reading Pin
Carsten Zeumer4-Jun-05 23:33
Carsten Zeumer4-Jun-05 23:33 
GeneralRe: C# directory file-structure reading Pin
GaMBiT_KC4-Jun-05 23:34
GaMBiT_KC4-Jun-05 23:34 
GeneralSql Query Builder from an app Pin
Leyu4-Jun-05 20:43
Leyu4-Jun-05 20:43 
GeneralShort cut icons on a windows form Pin
Rinventive4-Jun-05 20:42
Rinventive4-Jun-05 20:42 
GeneralRe: Short cut icons on a windows form Pin
Carsten Zeumer4-Jun-05 23:46
Carsten Zeumer4-Jun-05 23:46 
GeneralRe: Short cut icons on a windows form Pin
Anonymous5-Jun-05 19:29
Anonymous5-Jun-05 19:29 
GeneralExchange the Language on a localized Windows Forms form Pin
Uwe Keim4-Jun-05 20:30
sitebuilderUwe Keim4-Jun-05 20:30 

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.