C
crain
hi
what is the optiion strict used for anybody give me an example?
what is the optiion strict used for anybody give me an example?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
It forces you to write type strict code and avoid late binding.
For example, without option explicit you could write code like:
Dim a As Integer = "1234"
With option explicit on, you can't do that, you would have to write:
Dim a As Integer = CInt("1234")
* "crain said:what is the optiion strict used for anybody give me an example?
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.