C
Cindy Meister -WordMVP-
Hi all
Generally, it seems Option Strict ON is recommended
practice? How, then, does one reconcile
--
Option Strict On
Public MyArray(6) Single
'Some Code here
For i = 0 to Ubound(MyArray)
--
I get the error "Option Strict on disallows implicit
conversions from 'Integer' to 'Short'" on the last line
for Ubound. CType or a conversion function doesn't seem to
be the right thing, either.
Cindy Meister
Generally, it seems Option Strict ON is recommended
practice? How, then, does one reconcile
--
Option Strict On
Public MyArray(6) Single
'Some Code here
For i = 0 to Ubound(MyArray)
--
I get the error "Option Strict on disallows implicit
conversions from 'Integer' to 'Short'" on the last line
for Ubound. CType or a conversion function doesn't seem to
be the right thing, either.
Cindy Meister