Thread Rating:
  • 2 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
option Implicit
#3
Solved: 8 Years, 6 Months ago
Just want to inform you there is no statement Like "Option Implicit".
The correct statement is "Option Explicit" Statement.

Details from QTP help for more details:

If used, the Option Explicit statement must appear in a script before any other statements.

When you use the Option Explicit statement, you must explicitly declare all variables using the Dim, Private, Public, or ReDim statements. If you attempt to use an undeclared variable name, an error occurs.

Tip
Use Option Explicit to avoid incorrectly typing the name of an existing variable or to avoid confusion in code where the scope of the variable is not clear.


The following example illustrates use of the Option Explicit statement.

Copy Code
Option Explicit ' Force explicit variable declaration.
Dim MyVar ' Declare variable.
MyInt = 10 ' Undeclared variable generates error.
MyVar = 10 ' Declared variable does not generate error.
Reply


Messages In This Thread
option Implicit - by VenkataBonu - 08-29-2012, 04:32 PM
RE: option Implicit - by sshukla12 - 08-29-2012, 05:41 PM
RE: option Implicit - by kirti_vidhani - 08-29-2012, 06:41 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)