﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>WSH &amp; Client Side VBScript Tutorial</title><link>http://www.visualbasicscript.com/</link><description /><copyright>(c) VBScript Forum</copyright><ttl>30</ttl><item><title>Out of Memory error when reading log file (abhishek813)</title><description>WSH &amp; Client Side VBScript: http://www.visualbasicscript.com/fb.ashx?m=96002</description><link>http://www.visualbasicscript.com/fb.ashx?m=96016</link><pubDate>Mon, 30 Jan 2012 08:08:29 GMT</pubDate></item><item><title>program troubleshoot (jld)</title><description>WSH &amp; Client Side VBScript: http://www.visualbasicscript.com/fb.ashx?m=95722</description><link>http://www.visualbasicscript.com/fb.ashx?m=95735</link><pubDate>Wed, 11 Jan 2012 10:55:51 GMT</pubDate></item><item><title>Need good VB editor (ZiggyStardust)</title><description>WSH &amp; Client Side VBScript: http://www.visualbasicscript.com/fb.ashx?m=95535</description><link>http://www.visualbasicscript.com/fb.ashx?m=95558</link><pubDate>Tue, 27 Dec 2011 08:40:59 GMT</pubDate></item><item><title>Need help getting started (gsnidow)</title><description>WSH &amp; Client Side VBScript: http://www.visualbasicscript.com/fb.ashx?m=95278</description><link>http://www.visualbasicscript.com/fb.ashx?m=95280</link><pubDate>Thu, 08 Dec 2011 08:08:51 GMT</pubDate></item><item><title>Re:How To Quote Like A Pro (Wakawaka)</title><description> 

WScript is not declared, why didnt you declare it, and I only get a blank form, nothing written in it?  
 

WScript is globally accessible so the methods are already exposed to every script.  It is pretty much the root name</description><link>http://www.visualbasicscript.com/fb.ashx?m=91823</link><pubDate>Thu, 30 Jun 2011 12:18:36 GMT</pubDate></item><item><title>Re:How To Quote Like A Pro (cry1978)</title><description>WScript is not declared, why didnt you declare it, and I only get a blank form, nothing written in it?
 
are we supposed to make an input and output box, and then put this code in it?</description><link>http://www.visualbasicscript.com/fb.ashx?m=91569</link><pubDate>Wed, 15 Jun 2011 18:58:49 GMT</pubDate></item><item><title>Re:How To Quote Like A Pro (EncinoMan)</title><description>I had starting using vbs years ago to do some automation tasks at work. As the need was gone so were my days of learning vbs. Recently I have a need again. So I started diving back in. I have been trying to run a private program using WshShell.run and ha</description><link>http://www.visualbasicscript.com/fb.ashx?m=91537</link><pubDate>Wed, 15 Jun 2011 03:15:57 GMT</pubDate></item><item><title>RE: Breaking Bad Habits (bloodstaindewok)</title><description> 
I guess that it makes it easier for you real programmers to use, but for a sysadmin like me, vbs is where its at. 
If I had to give up vbs, I'd go back to nt shell scripting combined with qbasic.  And if that didn't work... we</description><link>http://www.visualbasicscript.com/fb.ashx?m=90657</link><pubDate>Fri, 22 Apr 2011 13:19:25 GMT</pubDate></item><item><title>RE: Breaking Bad Habits (TNO)</title><description> 

  
Without a doubt I believe you NEED to learn JavaScript. VBScript is at a dead end and is just waiting for the burial. JavaScript is going stronger than ever and is now JIT compiled in 3 major browsers. WSH JSc</description><link>http://www.visualbasicscript.com/fb.ashx?m=90098</link><pubDate>Fri, 25 Mar 2011 19:38:07 GMT</pubDate></item><item><title>Re: Breaking Bad Habits (DiGiTAL.SkReAM)</title><description> 

Works. Check out mine 
 

Yeah.  I have no idea what you are referring to here.  And I doubt that anyone else does, either.
 
Use the Quotes, Luke!
 
 
(that's a reference to the original Star Wars movie, wherein</description><link>http://www.visualbasicscript.com/fb.ashx?m=89851</link><pubDate>Tue, 15 Mar 2011 14:29:08 GMT</pubDate></item><item><title>RE: Breaking Bad Habits (DiGiTAL.SkReAM)</title><description> 
Without a doubt I believe you NEED to learn JavaScript. VBScript is at a dead end and is just waiting for the burial. JavaScript is going stronger than ever and is now JIT compiled in 3 major browsers. WSH JScript is  a subset of the curren</description><link>http://www.visualbasicscript.com/fb.ashx?m=89850</link><pubDate>Tue, 15 Mar 2011 14:20:28 GMT</pubDate></item><item><title>Re:Classes In VBScript (TNO)</title><description>See also: Initializing a Class with parameters</description><link>http://www.visualbasicscript.com/fb.ashx?m=89658</link><pubDate>Fri, 04 Mar 2011 23:10:15 GMT</pubDate></item><item><title>Re:Classes In VBScript (Wakawaka)</title><description>To create an instance of the class, you would use the New keyword.   

   
Dim myLogger : Set myLogger = New LogKeeper   

Msgbox "Current log path: " &amp;amp; myLogger.LogPath &amp;amp; vbCrLf &amp;amp; _   
"Current IO Mode: " &amp;amp; myLogger.IOM</description><link>http://www.visualbasicscript.com/fb.ashx?m=89657</link><pubDate>Fri, 04 Mar 2011 21:27:48 GMT</pubDate></item><item><title>Re:Classes In VBScript (Wakawaka)</title><description>Finally, we need to add the Public methods that the object will use to do work when the class is instantiated.  

  
Class LogKeeper  
Private m_OpenFile  
Private m_LogPath  
Private m_IOMode  

Public Property Get LogPath  
LogP</description><link>http://www.visualbasicscript.com/fb.ashx?m=89656</link><pubDate>Fri, 04 Mar 2011 21:23:04 GMT</pubDate></item><item><title>Re:Classes In VBScript (Wakawaka)</title><description>Next we will add an Initializer method. This method is  automatically  executed when you instantiate the class. 

   
Class LogKeeper   
Private m_OpenFile   
Private m_LogPath   

Private m_IOMode   

Public Property Get LogPath</description><link>http://www.visualbasicscript.com/fb.ashx?m=89655</link><pubDate>Fri, 04 Mar 2011 21:16:47 GMT</pubDate></item><item><title>Classes In VBScript (Wakawaka)</title><description>Classes are available to VBScript 5.0 and up (installed with IE5).  

Classes allow a user to group similar  methods together as well as properties that describe the class.  They  allow us to increase the modularity of our code as well as let us writ</description><link>http://www.visualbasicscript.com/fb.ashx?m=89654</link><pubDate>Fri, 04 Mar 2011 21:14:50 GMT</pubDate></item></channel></rss>
