In my .VBS file, whenever using any such declaration, I am getting error.Why so,any ideae?
Option Explicit
Dim vString as String
Error is : "Expected end of Statement"
I could not declare any variable with its required data types.
In my .VBS file, whenever using any such declaration, I am getting error.Why so,any ideae?
Option Explicit
Dim vString as String
Error is : "Expected end of Statement"
I could not declare any variable with its required data types.
In VBScript there is only variants so it would be Dim vString
(remove the As String
)