Bonjour... j'essaye d'afficher une image à coté de mes items... pas moyen il ne m'affiche rien à coté des items. Je ne comprend pas, je fais ca souvent pourtant...

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
 
this.lbSelectCarac.SmallImageList=this.ListMSN;
			this.lbSelectCarac.View=View.List;
			for(int j=0;j<this.dsPrincipal1.Table_Candidats.Count;j++)
			this.lbSelectCarac.Items.Add(this.dsPrincipal1.Table_Candidats[j]["Nom"].ToString()+" "+this.dsPrincipal1.Table_Candidats[j]["Prenom"].ToString()+" "+this.dsPrincipal1.Table_Candidats[j]["Date_Naiss"].ToString()+"   "+this.dsPrincipal1.Table_Candidats[j]["ID"].ToString(),1);
Ma liste d'image existe et comporte deux images.

Comment puis-je m'y prendre pour trouver ce qui ne va pas ?

Meric