[R] Bug avec $WS_VSCROLL, $ES_MULTILINE + $ES_WANTRETURN ?
Posté : mer. 06 févr. 2008 03:35
Tout est dans le titre, je vous passe le bout de code:
donc le probleme, c'est que j'aimerai obtenir un edit avec return possible et vscroll mais apparement ca justifie a droite, bug ou je code comme un manche ? =Þ
Code : Tout sélectionner
#include<GuiConstants.au3>
GUICreate ( "" , 200 , 200 , - 1 , - 1 , $WS_OVERLAPPEDWINDOW )
GUICtrlCreateEdit ( "" , 10 , 10 , 85 , 180 , $ES_AUTOVSCROLL + $ES_MULTILINE + $ES_WANTRETURN )
GUICtrlCreateEdit ( "" , 105 , 10 , 85 , 180 , $WS_VSCROLL , $ES_MULTILINE + $ES_WANTRETURN )
GUISetState ( @SW_SHOW )
While 1
$msg = GUIGetMsg ( )
If $msg = - 3 Then ExitLoop
Sleep ( 10 )
WEnd