Réponse acceptée !
quand tu crées un picturebox, range le dans une hashtable...
ensuite il suffit d'aller le rechercher dedans :
Hashtable mesPb = new Hashtable();
PictureBox monPictureBox1 = new PictureBox();
mesPb.Add("monPictureBox1", monPictureBox1);
....
et après :
(PictureBox)mesPb["monPictureBox1"];
Sébastien FERRAND
[MVP C#]