vbscript and vb classes

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gomzi
    Contributor
    • Mar 2007
    • 304

    vbscript and vb classes

    I would like to know whether vbscript also provides facilities for all the classes that are available in vb.net

    i.e. i have a program written using vb.net which executes on the click of a button, now i feel the need to automate it. i.e. execute it at predefined intervals. so i guess that i will have to write some kind of script. can anybody kindly guide me on this.
  • kenobewan
    Recognized Expert Specialist
    • Dec 2006
    • 4871

    #2
    ASP.NET does not support VBScript, and this is good news. Visual Basic is a superset of VBScript, which means that Visual Basic has all the functionality of VBScript and more. So, you have a richer set of functions and statements with Visual Basic.

    Furthermore, unlike VBScript, Visual Basic is a compiled language. This means that if you use Visual Basic to rewrite the same code that you wrote with VBScript, you can get better performance.

    If you have worked only with VBScript and not Visual Basic in the past, don't worry. Since VBScript is so closely related to Visual Basic, you'll find it easy to transition between the two languages.

    Comment

    Working...