Je reviens vers vous concernant GUICtrlCreatePic !
Je souhaite savoir quand je clique sur une Picture en particulier (et récupérer le path de l'image) cependant, j'ai procéder de cette manière pour créer mes pictures :
Func createAllPics()
For $i = 0 To UBound($Pic) - 1
GUICtrlDelete($Pic[$i])
Next
$Pic[0] = GUICtrlCreatePic("", 16, 384, 132, 132, $WS_BORDER)
$Pic[1] = GUICtrlCreatePic("", 16, 527, 132, 132, $WS_BORDER)
$Pic[2] = GUICtrlCreatePic("", 160, 384, 132, 132, $WS_BORDER)
$Pic[3] = GUICtrlCreatePic("", 160, 528, 132, 132, $WS_BORDER)
$Pic[4] = GUICtrlCreatePic("", 304, 384, 132, 132, $WS_BORDER)
$Pic[5] = GUICtrlCreatePic("", 304, 528, 132, 132, $WS_BORDER)
$Pic[6] = GUICtrlCreatePic("", 448, 384, 132, 132, $WS_BORDER)
$Pic[7] = GUICtrlCreatePic("", 448, 528, 132, 132, $WS_BORDER)
$Pic[8] = GUICtrlCreatePic("", 616, 384, 132, 132, $WS_BORDER)
$Pic[9] = GUICtrlCreatePic("", 616, 528, 132, 132, $WS_BORDER)
$Pic[10] = GUICtrlCreatePic("", 760, 384, 132, 132, $WS_BORDER)
$Pic[11] = GUICtrlCreatePic("", 760, 528, 132, 132, $WS_BORDER)
$Pic[12] = GUICtrlCreatePic("", 904, 384, 132, 132, $WS_BORDER)
$Pic[13] = GUICtrlCreatePic("", 904, 528, 132, 132, $WS_BORDER)
$Pic[14] = GUICtrlCreatePic("", 1048, 384, 132, 132, $WS_BORDER)
$Pic[15] = GUICtrlCreatePic("", 1048, 528, 132, 132, $WS_BORDER)
EndFunc
For $i = 0 To UBound($Pic) - 1
GUICtrlDelete($Pic[$i])
Next
$Pic[0] = GUICtrlCreatePic("", 16, 384, 132, 132, $WS_BORDER)
$Pic[1] = GUICtrlCreatePic("", 16, 527, 132, 132, $WS_BORDER)
$Pic[2] = GUICtrlCreatePic("", 160, 384, 132, 132, $WS_BORDER)
$Pic[3] = GUICtrlCreatePic("", 160, 528, 132, 132, $WS_BORDER)
$Pic[4] = GUICtrlCreatePic("", 304, 384, 132, 132, $WS_BORDER)
$Pic[5] = GUICtrlCreatePic("", 304, 528, 132, 132, $WS_BORDER)
$Pic[6] = GUICtrlCreatePic("", 448, 384, 132, 132, $WS_BORDER)
$Pic[7] = GUICtrlCreatePic("", 448, 528, 132, 132, $WS_BORDER)
$Pic[8] = GUICtrlCreatePic("", 616, 384, 132, 132, $WS_BORDER)
$Pic[9] = GUICtrlCreatePic("", 616, 528, 132, 132, $WS_BORDER)
$Pic[10] = GUICtrlCreatePic("", 760, 384, 132, 132, $WS_BORDER)
$Pic[11] = GUICtrlCreatePic("", 760, 528, 132, 132, $WS_BORDER)
$Pic[12] = GUICtrlCreatePic("", 904, 384, 132, 132, $WS_BORDER)
$Pic[13] = GUICtrlCreatePic("", 904, 528, 132, 132, $WS_BORDER)
$Pic[14] = GUICtrlCreatePic("", 1048, 384, 132, 132, $WS_BORDER)
$Pic[15] = GUICtrlCreatePic("", 1048, 528, 132, 132, $WS_BORDER)
EndFunc
En faisant des recherches sur la première question : "Je souhaite savoir quand je clique sur une Picture en particulier (et récupérer le path de l'image)"
Je suis tombé sur les exemples de la doc :
Sauf que.. ça ne marche pas

Une solution ?
Merci,
Locos.