Bonjour,
Voila j'aimerais touché a la valeur texte, par exemple d'un label creer dans la forme
comment faire ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
       public FileDownloader(string file)
        {
            WebClient dlfile = new WebClient();
            Uri url = new Uri("http://valiantro.com/vpatch/" + file);
            dlfile.DownloadFile(url, Application.StartupPath + @"\grf\" + file);
            dlfile.DownloadProgressChanged += new DownloadProgressChangedEventHandler(Form1.dlfile_DownloadProgressChanged);
            dlfile.DownloadFileCompleted += new System.ComponentModel.AsyncCompletedEventHandler(Form1.dlfile_DownloadFileCompleted); 
       }
Ca me demande une reference d'objet
Merci.