' déclaration avec des parenthèsesDim MyArray() As Variant
' déclaration avec dimensionnementDim MyArray(1) As Variant
' redimensionnement (1 = index max = 2 éléments)ReDim MyArray(1)
MyArray(0) = "Zéro"
MyArray(1) = "Un"' redimensionner sans écraser le contenu existantReDimPreserve MyArray(2)
MyArray(2) = "Deux"' afficher le contenu du tableau
Debug.Print Join(MyArray, ", ")
Fonctions / Sub routines
Sub MySub(
ByRef Arg1 As String,
ByVal Arg2 As String,
Optional Arg3 As String = "Arg3", ' les arguments suivant doivent être eux aussi optionnels
ParamArray Vals() As Variant) ' doit être le dernier argumentEndSub' lancement de MySub' sans parenthèses
MySub Arg1, Arg2
' avec parenthèsesCall MySub(Arg1, Arg2)
' Les fonctions retourne un typeFunction MyFunction() As String
EndFunction
ByRef les changements impactent l'argument appelant
ByVal une copie de la valeur est passée à la fonction, les changements restent donc locaux
Classe
Property
Private ms_Name As String
' pour un objet utiliser SetPublicPropertyGet Name() As String
Name = ms_Name
EndProperty' pour un objet utiliser ByRef et SetPublicPropertySet Name(ByVal sName As String)
ms_Name = sName
EndProperty
Sub MySub()
' définit le comportement en cas d'erreurOnErrorGoTo PROC_ERR
PROC_EXIT:
' désactive la gestion d'erreursOnErrorGoTo0ExitSub
PROC_ERR:
MsgBox "error " & Err.Number & vbLf & Err.Description, vbCritical, "Error"' ajouter un point d'arrêt, Step Over amène sur la ligne qui a posé problèmeStopResume' ou simplement quitter la subResume PROC_EXIT
EndSub
Services Windows
Arrêt des services SQL
OptionExplicitDim objWMIService, objService, strServiceList, colListOfServices
' Récupère l'objet Microsoft Management ConsoleSet objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2")
' Sélectionne les services dont le nom contient SQLSet colListOfServices = objWMIService.ExecQuery("Select * from Win32_Service Where Name like '%SQL%'")
' Arrête les services sélectionnés
strServiceList = "Liste des services arrêtés :" & vbCr
ForEach objService in colListOfServices
strServiceList = strServiceList & vbCr & objService.name
objService.StopService()
'objService.StartService()Next' Affiche la liste des services arrêtés
WScript.Echo strServiceList
Lire les entrées du clavier
valeur = InputBox("Saisissez une valeur :", "Titre", "Valeur par defaut")
MsgBox valeur
Dim objShell
Set objShell = WScript.CreateObject( "WScript.Shell" )
objShell.Run("""C:\Dossier\fichier.exe"" options")
Set objShell = Nothing
Ouvrir un fichier en écriture
Dim objFile As Variant
Dim strText As String
objFile = "C:\temp\Test.txt"
strText = "This text was written on " & Now & "."
Open objFile For Output As #1
Write #1, strText
Close #1
Utiliser une DLL
Dim objet As Classe
Set objet = New Classe
objet.Methode()
Explorateur de dossiers
Private Declare Function SHGetPathFromIDList Lib "shell32.dll" Alias _
"SHGetPathFromIDListA" (ByVal pidl As Long, _
ByVal pszPath As String) As Long
Private Declare Function SHBrowseForFolder Lib "shell32.dll" Alias _
"SHBrowseForFolderA" (lpBrowseInfo As BROWSEINFO) _
As Long
PrivateConst BIF_RETURNONLYFSDIRS = &H1
PublicFunction BrowseFolder(szDialogTitle As String) As String
Dim X As Long, bi As BROWSEINFO, dwIList As Long
Dim szPath As String, wPos As Integer
With bi
.hOwner = hWndAccessApp
.lpszTitle = szDialogTitle
.ulFlags = BIF_RETURNONLYFSDIRS
EndWith
dwIList = SHBrowseForFolder(bi)
szPath = Space$(512)
X = SHGetPathFromIDList(ByVal dwIList, ByVal szPath)
If X Then
wPos = InStr(szPath, Chr(0))
BrowseFolder = Left$(szPath, wPos - 1)
Else
BrowseFolder = vbNullString
EndIfEndFunction
Public Static Sub DebugPrint(ByVal Module As String, _
ByVal Procedure As String, _
ByVal Message As String, _
Optional ByVal Reset As Boolean)
' ==========================================================================' Description : Provide enhanced printing to the Immediate window.'' Params : Module The name of the calling module.' Procedure The name of the calling procedure.' Message The message to display.' Reset Force the static variables to be reset' ==========================================================================Dim ssMod As String
Dim ssPrc As String
' Only do this if there is something new to display' -------------------------------------------------If ((Module <> ssMod) Or (Procedure <> ssPrc) Or Reset) Then' Store the new values' --------------------
ssMod = Module
ssPrc = Procedure
' Add a blank line' ----------------
Debug.Print
' Display the new source' ----------------------If (Len(Trim(ssPrc)) > 0) Then
Debug.Print "Src: " & Concat(".", ssMod, ssPrc)
EndIfEndIf' Display the message' -------------------If (Len(Trim(Message)) > 0) Then
Debug.Print "Msg: " & Message
EndIfEndSub