Collabora Office 24.04 Help
Declareert een variabele of een array op het procedureniveau binnen een subroutine of functie zodat de waarden van de variabele of de array worden behouden na het beëindigen van de subroutine of functie. Regels voor de instructie Dim zijn ook geldig.
De instructie Static kan niet worden gebruikt om variabele arrays te definiëren. Arrays moeten worden gespecificeerd overeenkomstig een vaste grootte.
Static VarNaam[(Start to Einde)] [As VarType], VarNaam2[(Start to Einde)] [As VarType], ...
Sub ExampleStatic
Dim iCount As Integer, iResult As Integer
For iCount = 0 To 2
iResult = InitVar()
Next iCount
MsgBox iResult,0,"Het antwoord is"
End Sub
' Functie voor initialiseren van de Static-variabele
Function InitVar() As Integer
Static iInit As Integer
Const iMinimum as Integer = 40 ' minimale retourwaarde van deze functie
if iInit = 0 then ' controle indien geïnitialiseerd
iInit = iMinimum
Else
iInit = iInit + 1
End If
InitVar = iInit
End Function