Question Setting of Option Explicit, option strict...

dhananjay.kale

New member
Joined
Dec 3, 2008
Messages
1
Programming Experience
3-5
I want to change setting of Option explicit and option Strict to off, How can i do it at envo where application is deployed? I don't have IDE there on that server and I don't want to install IDE there. Is there other way to change it? Please Help me?
 
It's probably a bit late for the OP but in case anyone else ever wants to know the answer to this question:

Option Strict and Option Explicit have no meaning once your app is compiled. Option Explicit On means that the compiler will not allow you to use a variable you haven't declared. Option Strict On means that the compiler will allow implicit narrowing conversions or late binding. They relate only to how you write your VB code. Once the app is deployed they don't exist.
 
Back
Top