Bonjour,
j'ai commence la programmation il y a pas longtemps.
Je suis en train de creer une application de News de mon site.
J'ai l'icone de mon application dans les mini-icone de la barre de tache :

Je souhaite acceder au site en cliquant sur le bonton du menu contextuel de cette mini-icone.
Voici un morceau de code :
------------------------------------------------------
//
// mIAfficher
// this.mIAfficher.Index = 0;
this.mIAfficher.Text = "Masquer la fenêtre";
this.mIAfficher.Click += new System.EventHandler(this.mIAfficher_Click);//
// mISite
//
this.mISite.Index = 1;
this.mISite.Text = "Acceder au site";
this.mISite.Click += ????????????????????????????;
//
// mITopMost
//
this.mITopMost.Index = 2;
this.mITopMost.Text = "";
//
// mISeparator
//
this.mISeparator.Index = 3;
this.mISeparator.Text = "-";//
// mIFermer
//
this.mIFermer.Index = 4;
this.mIFermer.Text = "&Fermer l'application";
this.mIFermer.Click += new System.EventHandler(this.mIFermer_Click);
------------------------------------------------------
Faut mettre quoi a la place des points d'interrogations pour acceder au site ????