Looking for good examples of Class styles  
Author Message
vjv18bet





PostPosted: Wed Sep 28 21:41:52 CDT 2005 Top

VB Scripts >> Looking for good examples of Class styles

I've tried Google'ing but came up with nothing useful.

What I seek is some URLs to sites that demonstrate some nice Class
structures using classic VBScript (Interdev v6) with respect to handling
recordsets and the like. I need a jump start on coding style, how to best
structure Class'es, naming conventions for Methods, Objects, Properties and
the like, and how to build up a library of Class'es to somewhat mimic those
already found in VBScript where possible.

My goal is to set up a library of Classes for an application and remove all
data validation and database I/O from the page developer.

Any suggestions?

Visual Studio310  
 
 
learner





PostPosted: Wed Sep 28 21:41:52 CDT 2005 Top

VB Scripts >> Looking for good examples of Class styles may not be exactly all you look for but could be part of start for good
general vbscript coding style:
search for
"VBScript Coding Conventions" in the help file Script56.CHM
"Class"
I hope the above searches will of some use to you



> I've tried Google'ing but came up with nothing useful.
>
> What I seek is some URLs to sites that demonstrate some nice Class
> structures using classic VBScript (Interdev v6) with respect to handling
> recordsets and the like. I need a jump start on coding style, how to best
> structure Class'es, naming conventions for Methods, Objects, Properties
> and
> the like, and how to build up a library of Class'es to somewhat mimic
> those
> already found in VBScript where possible.
>
> My goal is to set up a library of Classes for an application and remove
> all
> data validation and database I/O from the page developer.
>
> Any suggestions?
>
>


 
 
MyndPhlyp





PostPosted: Thu Sep 29 03:57:16 CDT 2005 Top

VB Scripts >> Looking for good examples of Class styles


> may not be exactly all you look for but could be part of start for good
> general vbscript coding style:
> search for
> "VBScript Coding Conventions" in the help file Script56.CHM
> "Class"
> I hope the above searches will of some use to you

404, but I found it over in M$-land and downloaded it. Not quite what I was
looking for but it does have more focused information than the old MSDN
library I'm using.

What I'm actually looking for is an ideas on what Methods to build into the
Class to support database navigation, "traditional" names for those Methods
(fetch versus get versus read versus whatever), and stuff along those lines.
OOP for IIS Using VBScript, in other words.