Bonjour a tous,j'ai un probleme un peu similaire.
En faite,je lis en continu un fichier *.txt et lorsque ce fichier devient trop grand,la barre de progression reste a sa place.
Code : Tout sélectionner
#include <GUIConstants.au3>
;Variable
$title = "Vins83 "
$version = "test "
;TITRE
GUICreate($title & $version, 250, 180, 0, 0, $WS_CAPTION, $WS_EX_TOOLWINDOW)
; Boutton Exit
$exit = GUICtrlCreateButton("Quitter", 4, 150, 242, 25)
; Action en cours
$actionencours = GUICtrlCreateEdit("", 5, 5, 240, 140)
;Guisetstate
GUISetState()
AdlibEnable("Timer", 50)
While 1
$msg = GUIGetMsg()
Select
Case $msg = $exit
ExitLoop
EndSelect
WEnd
;fonction
; Fonction Timer
Func Timer()
; lit le fichier action
GUICtrlSetData($actionencours, FileRead(@ScriptDir & "\action.txt"))
EndFunc ;==>Timer
Exit
J'ai essayé avec les send et sa na marche pas,quelqu'un a une solution?
Merci