La fonction "$sString" permette de remplacer les caractères majuscule en minuscule:
Code : Tout sélectionner
#include <MsgBoxConstants.au3>
Local $sString = StringLower("BOULANZA@GMAIL.COM") ; Convert the following string to lowercase.
MsgBox($MB_SYSTEMMODAL, "", $sString)
Code : Tout sélectionner
#RequireAdmin
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
;GUICreate("licence", 550, 360)
$Form1 = GUICreate("Test",300,170, 360, 2,"",$WS_EX_TOPMOST) ; $WS_EX_TOOLWINDOW, $DS_MODALFRAME ;,470,440,407,160,0)
GUISetBkColor(0x00008B);0x113366 ;0x00066CC ;0xD4D0C8;0xD4D0A8;0xD4D0B8;0xF0FFFF;0xA6CAF0;0xA6CAF0
GUICtrlSetState(-1,$GUI_DISABLE)
$Input1 = GUICtrlCreateInput("", 30,40, 220,25,0);Votre adresse e-mail actuelle
$Input3 = GUICtrlCreateInput("", 30,90, 220, 25, 0);Confirmez votre e-mail actuelle
$widthCell = 150 ; first cell 70 width
$Label1 = GUICtrlCreateLabel(" Votre adresse e-mail actuelle: ", 30, 20, 220, 20, 0,$widthCell)
GUICtrlSetColor(-1, 0xFCF8F8)
GUICtrlSetFont(-1, 11, 900, 0, "MS Sans Serif")
$Label3 = GUICtrlCreateLabel("Confirmez votre e-mail actuelle: ", 30, 70, 220, 20, 0,$widthCell)
GUICtrlSetColor(-1, 0xFCF8F8)
GUICtrlSetFont(-1, 11, 900, 0, "MS Sans Serif")
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
ExitLoop
EndSwitch
WEnd
Merci pour votre aide…
Cordialement.



