Click here to Skip to main content
15,886,110 members
Home / Discussions / C#
   

C#

 
Questionhow to detect mouse over the picturebox? Pin
Tridip Bhattacharjee7-Mar-10 23:44
professionalTridip Bhattacharjee7-Mar-10 23:44 
AnswerRe: how to detect mouse over the picturebox? Pin
Luc Pattyn8-Mar-10 1:17
sitebuilderLuc Pattyn8-Mar-10 1:17 
AnswerRe: how to detect mouse over the picturebox? Pin
OriginalGriff8-Mar-10 1:29
mveOriginalGriff8-Mar-10 1:29 
AnswerRe: how to detect mouse over the picturebox? Pin
johannesnestler8-Mar-10 3:33
johannesnestler8-Mar-10 3:33 
QuestionCheck if expath exist Pin
ONeil Tomlinson7-Mar-10 23:12
ONeil Tomlinson7-Mar-10 23:12 
AnswerRe: Check if expath exist Pin
Mirko19807-Mar-10 23:42
Mirko19807-Mar-10 23:42 
QuestionConvert word file to pdf with openxml Pin
Pankaj Saha7-Mar-10 23:00
Pankaj Saha7-Mar-10 23:00 
QuestionWebClient and Events Pin
Teuz7-Mar-10 22:50
Teuz7-Mar-10 22:50 
Ok Guys I'm facing a strange problem here, and I dunno if its a bug or I am doing something wrong.
Here's the code:

using System;
using System.Diagnostics;
using System.Net;
using System.Windows.Forms;

namespace ConsoleApplication
{
    internal class Program
    {
        private static void Main(string[] args)
        {
            var webClient = new WebClient();

            //var progressBar = new ProgressBar(); 

            webClient.DownloadProgressChanged += (o, e) => Debug.WriteLine(e.ProgressPercentage);
            webClient.DownloadFileCompleted += (o, e) => Debug.WriteLine("Download completed.");

            Debug.WriteLine("Starting download...");
            webClient.DownloadFileAsync(new Uri("http://cdimage.debian.org/debian-cd/5.0.4/i386/iso-cd/debian-504-i386-netinst.iso"), "debian-504-i386-netinst.iso");

            Console.Read();
        }
    }
}


Everything works fine like this, events are raised normally.
Now try to uncomment the progressbar initialization and events will stop to be fired (I noticed the problem with the progress bar because I needed to add a progress bar dynamically to the form, dunno if there are other scenarios where this happens) even if the download proceeds normally.
Maybe is just me or maybe I have convinced myself this code is right that I cant no longer see where I epic fail.
Anyone having the same problem?

Thanks in advance.

Matt
AnswerRe: WebClient and Events Pin
johannesnestler8-Mar-10 4:17
johannesnestler8-Mar-10 4:17 
GeneralRe: WebClient and Events Pin
Teuz8-Mar-10 22:01
Teuz8-Mar-10 22:01 
QuestionRecord Not Insert Pin
mjawadkhatri7-Mar-10 21:00
mjawadkhatri7-Mar-10 21:00 
AnswerRe: Record Not Insert Pin
OriginalGriff7-Mar-10 21:47
mveOriginalGriff7-Mar-10 21:47 
GeneralRe: Record Not Insert Pin
R. Giskard Reventlov7-Mar-10 22:12
R. Giskard Reventlov7-Mar-10 22:12 
AnswerRe: Record Not Insert Pin
Thomas Krojer8-Mar-10 1:16
Thomas Krojer8-Mar-10 1:16 
QuestionCustom TypeConverter for SubProperties Pin
akamper7-Mar-10 20:54
akamper7-Mar-10 20:54 
Questionhow to access the application Pin
santhosh-padamatinti7-Mar-10 20:05
santhosh-padamatinti7-Mar-10 20:05 
AnswerRe: how to access the application Pin
Anubhava Dimri7-Mar-10 20:10
Anubhava Dimri7-Mar-10 20:10 
GeneralRe: how to access the application Pin
santhosh-padamatinti7-Mar-10 20:21
santhosh-padamatinti7-Mar-10 20:21 
GeneralRe: how to access the application Pin
Anubhava Dimri7-Mar-10 20:38
Anubhava Dimri7-Mar-10 20:38 
GeneralRe: how to access the application Pin
Richard MacCutchan7-Mar-10 22:45
mveRichard MacCutchan7-Mar-10 22:45 
Questionmy function not functioning Pin
crisjala7-Mar-10 19:11
crisjala7-Mar-10 19:11 
AnswerRe: my function not functioning Pin
Khaniya7-Mar-10 19:50
professionalKhaniya7-Mar-10 19:50 
AnswerBumped post. Pin
Pete O'Hanlon7-Mar-10 22:45
mvePete O'Hanlon7-Mar-10 22:45 
QuestionInstallation error (Microsoft.Mshtml.dll could not load)? Pin
svt gdwl7-Mar-10 18:54
svt gdwl7-Mar-10 18:54 
AnswerRe: Installation error (Microsoft.Mshtml.dll could not load)? Pin
Atara10-Mar-10 1:01
Atara10-Mar-10 1:01 

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.