Je viens de faire un script donc j'ai besoin d'afficher une image.
Or elle ne s'affiche pas.
J'ai fais plusieurs Tests et j'obtiens ceci :
Code : Tout sélectionner
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form3 = GUICreate("Form3", 796, 459, 288, 206)
$Group1 = GUICtrlCreateGroup("Group1", 32, 48, 281, 201)
[color=#FF0000]$Pic1 = GUICtrlCreatePic("C:\Users\Narmeke\Desktop\Images\Bouttons\Boutton_Developper.jpg", 48, 88, 233, 145, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))[/color]
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Tab1 = GUICtrlCreateTab(368, 32, 401, 329)
GUICtrlSetResizing(-1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT)
$TabSheet1 = GUICtrlCreateTabItem("TabSheet1")
[color=#FF0000]$Pic2 = GUICtrlCreatePic("C:\Users\Narmeke\Desktop\Images\Bouttons\Boutton_Construire.jpg", 392, 80, 361, 249, BitOR($SS_NOTIFY,$WS_GROUP,$WS_TABSTOP,$WS_CLIPSIBLINGS))[/color]
GUICtrlCreateTabItem("")
[color=#00FF00]$Pic3 = GUICtrlCreatePic("C:\Users\Narmeke\Desktop\Images\Bouttons\Boutton_Construire.jpg", 48, 296, 265, 129, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))[/color]
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
J'aimerai comprende pourkoi et comment y remedier.
Merci d'avance.


