According to Microsoft: https://msdn.microsoft.com/en-us/library/z2cty7t8(v=vs.100).aspx The following static variable declaration is correct.
Public Sub MyProc()
static count as integer = 0
count = count + 1
End Sub
According to Word 2010 VBA, this is a compiler error. It wants:
Public Sub MyProc2()
static count as integer
count = count + 1
End Sub
You have to assume that the static count is initialized to zero.
Hope this helps someone else.