Vbscript variables

From wikinotes
Revision as of 00:09, 8 December 2019 by Will (talk | contribs) (Created page with "= Scope = <source lang="vb"> Dim var ' Normal variable within scope Public var ' Global variable Private var ' (? private to what) </source>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Scope

Dim     var    ' Normal variable within scope
Public  var    ' Global variable
Private var    ' (? private to what)