Click here to Skip to main content
16,017,151 members
Home / Discussions / C#
   

C#

 
AnswerRe: add webusercontrol Pin
Alomgir Miah29-Aug-05 10:32
Alomgir Miah29-Aug-05 10:32 
GeneralRe: add webusercontrol Pin
reza toorani30-Aug-05 17:11
reza toorani30-Aug-05 17:11 
GeneralRe: add webusercontrol Pin
Anonymous30-Aug-05 17:25
Anonymous30-Aug-05 17:25 
Questionneed reference to parent object Pin
BungoMan8529-Aug-05 9:34
BungoMan8529-Aug-05 9:34 
AnswerRe: need reference to parent object Pin
Alomgir Miah29-Aug-05 10:34
Alomgir Miah29-Aug-05 10:34 
AnswerRe: need reference to parent object Pin
Josh Lindenmuth29-Aug-05 10:37
Josh Lindenmuth29-Aug-05 10:37 
QuestionC# function design Question Pin
parrot12329-Aug-05 8:38
parrot12329-Aug-05 8:38 
AnswerRe: C# function design Question Pin
Mohamad Al Husseiny29-Aug-05 9:24
Mohamad Al Husseiny29-Aug-05 9:24 
if i understood you correctly you want the caller of the function wait untile its recive the signal or timeout
if this is correct So
The IAsyncResult interface returned from BeginInvoke( ) has the AsyncWaitHandle property which have some overloaded WaitOne method
One of the take Timespan parameter you can use it to pass
Timeout value
IAsyncResult asyncResult = yourDelegate.BeginInvoke(param1,param2,null,null);
 asyncResult.AsyncWaitHandle.WaitOne(timeoutValue,false); 
int result;
result = yourDelegate.EndInvoke(asyncResult); 

WaitHandle.WaitOne Method[^]
MCAD

-- modified at 19:36 Monday 29th August, 2005
GeneralRe: C# function design Question Pin
parrot12329-Aug-05 9:40
parrot12329-Aug-05 9:40 
GeneralRe: C# function design Question Pin
Alomgir Miah29-Aug-05 10:54
Alomgir Miah29-Aug-05 10:54 
QuestionExtracting Frames From The AVI Movie Pin
Nabeel Younus Khan29-Aug-05 8:08
Nabeel Younus Khan29-Aug-05 8:08 
AnswerRe: Extracting Frames From The AVI Movie Pin
Mohamad Al Husseiny29-Aug-05 8:28
Mohamad Al Husseiny29-Aug-05 8:28 
AnswerRe: Extracting Frames From The AVI Movie Pin
Andrew Kirillov29-Aug-05 9:48
Andrew Kirillov29-Aug-05 9:48 
QuestionRESIZING IMAGE AND SAVING IT INTO A N BITMAP OBJECT Pin
Nabeel Younus Khan29-Aug-05 8:04
Nabeel Younus Khan29-Aug-05 8:04 
AnswerRe: RESIZING IMAGE AND SAVING IT INTO A N BITMAP OBJECT Pin
Werdna29-Aug-05 8:13
Werdna29-Aug-05 8:13 
QuestionDisplaying Long Strings in RichTextBox Pin
dmc55529-Aug-05 7:45
dmc55529-Aug-05 7:45 
QuestionDirectX.capture.asp Pin
Duke of URL29-Aug-05 7:16
Duke of URL29-Aug-05 7:16 
QuestionIndex DBF file Pin
Bedevian29-Aug-05 7:02
Bedevian29-Aug-05 7:02 
QuestionshowDialog Pin
xilefxilef29-Aug-05 6:53
xilefxilef29-Aug-05 6:53 
AnswerRe: showDialog Pin
Stefan Troschuetz29-Aug-05 7:30
Stefan Troschuetz29-Aug-05 7:30 
GeneralRe: showDialog Pin
xilefxilef29-Aug-05 10:15
xilefxilef29-Aug-05 10:15 
AnswerRe: showDialog Pin
Stefan Troschuetz29-Aug-05 21:25
Stefan Troschuetz29-Aug-05 21:25 
GeneralRe: showDialog Pin
xilefxilef30-Aug-05 5:53
xilefxilef30-Aug-05 5:53 
GeneralRe: showDialog Pin
Stefan Troschuetz30-Aug-05 7:31
Stefan Troschuetz30-Aug-05 7:31 
QuestionHow to avoid getting code when decompile exe? Pin
pubududilena29-Aug-05 6:48
pubududilena29-Aug-05 6:48 

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.