Click here to Skip to main content
15,890,438 members
Home / Discussions / C#
   

C#

 
QuestionC# - APP : Monitor Copy-Paste Process Pin
Wahyu Hidayat13-Nov-08 16:56
Wahyu Hidayat13-Nov-08 16:56 
AnswerRe: C# - APP : Monitor Copy-Paste Process Pin
Dave Kreskowiak13-Nov-08 18:27
mveDave Kreskowiak13-Nov-08 18:27 
GeneralRe: C# - APP : Monitor Copy-Paste Process Pin
Paul Conrad13-Nov-08 19:26
professionalPaul Conrad13-Nov-08 19:26 
QuestionJust a thanks to all that have provided code for us to think about. Pin
Just me at will_george...something13-Nov-08 16:49
Just me at will_george...something13-Nov-08 16:49 
AnswerRe: Just a thanks to all that have provided code for us to think about. Pin
Simon P Stevens13-Nov-08 22:51
Simon P Stevens13-Nov-08 22:51 
GeneralRe: Just a thanks to all that have provided code for us to think about. Pin
jas0n2315-Nov-08 2:46
jas0n2315-Nov-08 2:46 
GeneralRe: Just a thanks to all that have provided code for us to think about. Pin
Simon P Stevens16-Nov-08 4:14
Simon P Stevens16-Nov-08 4:14 
QuestionHelp with DownloadFileCompleted event Pin
EliottA13-Nov-08 15:09
EliottA13-Nov-08 15:09 
I have a class that when triggered downloads a file using the webclient class. The problem is my event AsyncCompletedEventHandler is never triggered when the file is finished downloading, never informing the user that the file is downloaded. Where did I go wrong?

public Download(string URL1, object send)
{
Sender = send;
Url = URL1;
WebClient client = new WebClient();
client.DownloadFileCompleted += new AsyncCompletedEventHandler(DownloadFileCallback2);
string[] s;
s = Url.Split(new Char[] { '/' });
string l;
System.Uri Uri = new System.Uri(Url);
l = @System.IO.Directory.GetCurrentDirectory();
l = @l + @"\" + s[3];
client.DownloadFileAsync(Uri, l);
}
public void DownloadFileCallback2(object send, AsyncCompletedEventArgs e)
{
//some code to inform user to run file or not...
}
AnswerRe: Help with DownloadFileCompleted event Pin
Ben Fair14-Nov-08 2:51
Ben Fair14-Nov-08 2:51 
QuestionStereo Image Rectification Software! Pin
farid_colombia13-Nov-08 15:06
farid_colombia13-Nov-08 15:06 
AnswerRe: Stereo Image Rectification Software! Pin
Dave Kreskowiak13-Nov-08 18:24
mveDave Kreskowiak13-Nov-08 18:24 
GeneralRe: Stereo Image Rectification Software! Pin
farid_colombia13-Nov-08 18:57
farid_colombia13-Nov-08 18:57 
QuestionC# XNA & and the dreaded Global Variables Pin
Zircon13-Nov-08 14:54
Zircon13-Nov-08 14:54 
AnswerRe: C# XNA & and the dreaded Global Variables Pin
DaveyM6913-Nov-08 15:47
professionalDaveyM6913-Nov-08 15:47 
AnswerRe: C# XNA & and the dreaded Global Variables Pin
Mycroft Holmes13-Nov-08 16:49
professionalMycroft Holmes13-Nov-08 16:49 
QuestionRe: C# XNA & and the dreaded Global Variables Pin
Zircon14-Nov-08 1:53
Zircon14-Nov-08 1:53 
QuestionDataGridView <-> xml: can load but can´t save Pin
nelsonpaixao13-Nov-08 13:28
nelsonpaixao13-Nov-08 13:28 
QuestionSend http link to Asterisk server Pin
Kit Fisto13-Nov-08 13:24
Kit Fisto13-Nov-08 13:24 
Questioncall MFC-dialog from managed code Pin
Yevgen Lisovenko13-Nov-08 8:16
Yevgen Lisovenko13-Nov-08 8:16 
AnswerRe: call MFC-dialog from managed code Pin
Edmundpaida8-Oct-12 0:24
Edmundpaida8-Oct-12 0:24 
Questionreading XML Pin
Planker13-Nov-08 8:01
Planker13-Nov-08 8:01 
AnswerRe: reading XML Pin
Ennis Ray Lynch, Jr.13-Nov-08 8:08
Ennis Ray Lynch, Jr.13-Nov-08 8:08 
GeneralRe: reading XML Pin
Planker13-Nov-08 8:26
Planker13-Nov-08 8:26 
GeneralRe: reading XML Pin
Ennis Ray Lynch, Jr.13-Nov-08 8:36
Ennis Ray Lynch, Jr.13-Nov-08 8:36 
GeneralRe: reading XML Pin
Planker13-Nov-08 8:46
Planker13-Nov-08 8:46 

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.