Click here to Skip to main content
15,907,687 members
Home / Discussions / C#
   

C#

 
GeneralRe: custom errors on the server Pin
Judah Gabriel Himango10-Jun-04 8:32
sponsorJudah Gabriel Himango10-Jun-04 8:32 
GeneralRe: custom errors on the server Pin
Heath Stewart10-Jun-04 9:56
protectorHeath Stewart10-Jun-04 9:56 
GeneralRe: custom errors on the server Pin
Judah Gabriel Himango10-Jun-04 10:09
sponsorJudah Gabriel Himango10-Jun-04 10:09 
GeneralRe: custom errors on the server Pin
Heath Stewart10-Jun-04 10:14
protectorHeath Stewart10-Jun-04 10:14 
GeneralRe: custom errors on the server Pin
Judah Gabriel Himango10-Jun-04 10:19
sponsorJudah Gabriel Himango10-Jun-04 10:19 
GeneralRe: custom errors on the server Pin
C LaMorticella27-Sep-04 8:31
C LaMorticella27-Sep-04 8:31 
GeneralForm Maximize Events Pin
BrianEllis10-Jun-04 4:07
BrianEllis10-Jun-04 4:07 
GeneralRe: Form Maximize Events Pin
Heath Stewart10-Jun-04 7:04
protectorHeath Stewart10-Jun-04 7:04 
Override WndProc and handle the WM_SIZING (0x0214) message. This is sent to a window procedure (and keep in mind that almost all Windows Forms controls encapsulate native controls and dialogs) before being resized. The Message.WParam specifies the edge that is being resized and the Message.LParam specifies the RECT (which you must define in managed code - a System.Drawing.Rectangle will not suffice because it stores coordinates differently).

Set the Message.Result to new IntPtr(1) to signal that you've processed it and don't want your Form to be resized.

 

Microsoft MVP, Visual C#
My Articles
GeneralGet instance that's calling the current method Pin
partyganger10-Jun-04 2:52
partyganger10-Jun-04 2:52 
GeneralRe: Get instance that's calling the current method Pin
Heath Stewart10-Jun-04 4:09
protectorHeath Stewart10-Jun-04 4:09 
GeneralCheck if software is installed Pin
Peter Nirschl10-Jun-04 2:30
Peter Nirschl10-Jun-04 2:30 
GeneralRe: Check if software is installed Pin
Heath Stewart10-Jun-04 4:14
protectorHeath Stewart10-Jun-04 4:14 
GeneralRe: Check if software is installed Pin
Wackatronic10-Jun-04 4:47
Wackatronic10-Jun-04 4:47 
GeneralRe: Check if software is installed Pin
Heath Stewart10-Jun-04 6:58
protectorHeath Stewart10-Jun-04 6:58 
GeneralRe: Check if software is installed Pin
Wackatronic10-Jun-04 7:57
Wackatronic10-Jun-04 7:57 
GeneralRe: Check if software is installed Pin
Heath Stewart10-Jun-04 9:51
protectorHeath Stewart10-Jun-04 9:51 
GeneralRe: Check if software is installed Pin
Peter Nirschl11-Jun-04 22:23
Peter Nirschl11-Jun-04 22:23 
GeneralRe: Check if software is installed Pin
Heath Stewart12-Jun-04 0:25
protectorHeath Stewart12-Jun-04 0:25 
GeneralWeb Service on Pocket PC Pin
JRacle10-Jun-04 2:28
JRacle10-Jun-04 2:28 
GeneralRe: Web Service on Pocket PC Pin
Wackatronic10-Jun-04 4:53
Wackatronic10-Jun-04 4:53 
GeneralRe: Web Service on Pocket PC Pin
JRacle10-Jun-04 5:57
JRacle10-Jun-04 5:57 
Generalwriting good unit tests Pin
steven shingler10-Jun-04 1:26
steven shingler10-Jun-04 1:26 
GeneralRe: writing good unit tests Pin
Colin Angus Mackay10-Jun-04 1:58
Colin Angus Mackay10-Jun-04 1:58 
GeneralRe: writing good unit tests Pin
steven shingler10-Jun-04 3:39
steven shingler10-Jun-04 3:39 
GeneralRe: writing good unit tests Pin
Marc Clifton10-Jun-04 10:10
mvaMarc Clifton10-Jun-04 10:10 

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.