not sure
when we declare variable in procedure or function
0
Govind
Answer
Never heared of Option Implicit.
Though Setting Option Explicit "ON" requires declaration of
variable before that variable can be used.
0
Guest
Answer
Instance of specific copy of a class with its own settings
for the properties defined in that class. Note: The
implicity defined variable is never equal to nothing.
1
Senthilg
Answer
Option Explicit has 2 values ON and OFF
deafult value is ON
-Option Explicit means - All the variables should be
declared before its use.
Else it shows error..it is a good practice to use this..
3
Anna
Answer
Option Explicit is set to On, to declare the variable
compulsarily.
if u set it to off, the user who is going to read your
coding won't find it easy to know what type of variable it
stores. i.e int, float, string, var, etc.,
0
Dhanasekar
Answer
can i able to change my vb6 form style
0
Dinesh
Answer
Option Explicit means - All the variables should be
declared before its use.
Else it shows error