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

C#

 
QuestionVideo Transmission using Windows Media Services Pin
DeepOceans28-Sep-07 23:04
DeepOceans28-Sep-07 23:04 
QuestionVisio automation via C# Pin
Menhal28-Sep-07 22:49
Menhal28-Sep-07 22:49 
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 
Hi!
You're asking for a way to decide whether or not the form is going to be resized in the near future (resizing still in progress) or not (resizing has finished). Time to polish your crystal ball Smile | :)

But you could use a timer to defer your code until resizing has stopped for a while. If another resize event occurs before the timer has fired, restart the timer. Once the timer fires, the last resize event lies a short while ago, so probably the user is done resizing - you can perform your layout.
Nevertheless, the user still can start resizing again while you're performing layout...

Regards,
mav

--
Black holes are the places where God divided by 0...

GeneralRe: Deferring complex resize code, but still using Resize events Pin
JoeRip28-Sep-07 19:38
JoeRip28-Sep-07 19:38 

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.