Click here to Skip to main content
15,914,165 members
Home / Discussions / C#
   

C#

 
AnswerRe: Visio automation via C# Pin
Abisodun1-Oct-07 1:38
Abisodun1-Oct-07 1:38 
Questionto validate date Pin
P_Elza28-Sep-07 22:23
P_Elza28-Sep-07 22:23 
AnswerRe: to validate date Pin
DaveyM6928-Sep-07 23:44
professionalDaveyM6928-Sep-07 23:44 
GeneralRe: to validate date Pin
Luc Pattyn29-Sep-07 0:36
sitebuilderLuc Pattyn29-Sep-07 0:36 
GeneralRe: to validate date Pin
DaveyM6929-Sep-07 0:45
professionalDaveyM6929-Sep-07 0:45 
QuestionDifference Pin
John.L.Ponratnam28-Sep-07 21:51
John.L.Ponratnam28-Sep-07 21:51 
AnswerRe: Difference Pin
P_Elza28-Sep-07 22:14
P_Elza28-Sep-07 22:14 
QuestionCheckBoxes problem! Pin
XFighter28-Sep-07 21:29
XFighter28-Sep-07 21:29 
QuestionGeneric XL upload with validation Pin
subbu.sk28-Sep-07 21:14
subbu.sk28-Sep-07 21:14 
Questionhow to spilit html tags and string using c# code(very urgent) Pin
Revathi Raj28-Sep-07 20:32
Revathi Raj28-Sep-07 20:32 
AnswerRe: how to spilit html tags and string using c# code(very urgent) Pin
Paul Conrad29-Sep-07 6:56
professionalPaul Conrad29-Sep-07 6:56 
AnswerRe: .net framework required??? Pin
mav.northwind28-Sep-07 19:21
mav.northwind28-Sep-07 19:21 
GeneralRe: .net framework required??? Pin
Kuldeep Antil28-Sep-07 19:25
Kuldeep Antil28-Sep-07 19:25 
GeneralRe: .net framework required??? Pin
mav.northwind28-Sep-07 19:32
mav.northwind28-Sep-07 19:32 
GeneralRe: .net framework required??? Pin
JoeRip28-Sep-07 19:40
JoeRip28-Sep-07 19:40 
GeneralRe: .net framework required??? Pin
Kuldeep Antil28-Sep-07 19:47
Kuldeep Antil28-Sep-07 19:47 
Questionc# Pin
shen1728-Sep-07 18:12
shen1728-Sep-07 18:12 
AnswerRe: c# Pin
mav.northwind28-Sep-07 18:51
mav.northwind28-Sep-07 18:51 
GeneralRe: c# Pin
DaveyM6929-Sep-07 0:01
professionalDaveyM6929-Sep-07 0:01 
AnswerRe: c# Pin
Paul Conrad29-Sep-07 7:00
professionalPaul Conrad29-Sep-07 7:00 
QuestionDeferring complex resize code, but still using Resize events Pin
JoeRip28-Sep-07 17:55
JoeRip28-Sep-07 17:55 
AnswerRe: Deferring complex resize code, but still using Resize events Pin
mav.northwind28-Sep-07 19:30
mav.northwind28-Sep-07 19:30 
GeneralRe: Deferring complex resize code, but still using Resize events Pin
JoeRip28-Sep-07 19:38
JoeRip28-Sep-07 19:38 
GeneralRe: Deferring complex resize code, but still using Resize events Pin
JoeRip27-Dec-07 22:23
JoeRip27-Dec-07 22:23 
Although it's not directly exposed in the Form Properties window in VS 200x, if you look in MSDN you'll see that a form has multiple resizing events, exactly what you need:

Remarks

The ResizeBegin event is raised when the user begins to resize a form, typically by clicking and dragging one of the borders or the sizing grip located on the lower-right corner of the form. This action puts the form into a modal sizing loop until the resize operation is completed. Typically, the following set of events occurs during a resize operation:

1. A single ResizeBegin event occurs as the form enters resizing mode.
2. Zero or more pairs of Resize and SizeChanged events occur as the form's Size is modified.
3. A single ResizeEnd event occurs as the form exits resizing mode.

Note

Just clicking without dragging on a border or resizing grip will generate the ResizeBegin and ResizeEnd events without any intermediate Resize and SizeChanged event pairs.

The ResizeBegin and ResizeEnd pair of events is also raised when the user moves the form, typically by clicking and dragging on the caption bar. These events are not generated by programmatic manipulation of the form, for example by changing the Size or Location properties.

See for .Net 2.0: http://msdn2.microsoft.com/en-us/library/system.windows.forms.form.resizebegin(VS.80).aspx[^]
QuestionHow to execute my program when print button click Pin
Chatura Dilan28-Sep-07 15:49
Chatura Dilan28-Sep-07 15:49 

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.