Retourne un tableau d'informations sur la version de IE.au3
#include <IE.au3>
_IE_VersionInfo ( )
Le contenu du tableau permet facilement de d�terminer si la version UDF est sup�rieure ou inf�rieure � une version donn�e.
; R�cup�re et affiche les informations de version IE.au3 #include <IE.au3> #include <MsgBoxConstants.au3> Local $aVersion = _IE_VersionInfo() MsgBox($MB_SYSTEMMODAL, "IE.au3 Version", $aVersion[5] & " released " & $aVersion[4])