Geometry.Net - the online learning center
Home  - Computer - Vbscript
e99.com Bookstore
  
Images 
Newsgroups
Page 1     1-20 of 195    1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | 9  | 10  | Next 20

         Vbscript:     more books (100)
  1. Microsoft WSH and VBScript Programming for the Absolute Beginner by JrJerry Lee Ford, 2008-11-11
  2. VBScript in a Nutshell, 2nd Edition by Paul Lomax, Ron Petrusha, 2003-04-01
  3. VBScript Programmer's Reference by Adrian Kingsley-Hughes, Kathie Kingsley-Hughes, et all 2007-10-08
  4. Microsoft VBScript: Step by Step by Ed Wilson, 2006-11-29
  5. Learning VBScript by Paul Lomax, 1997-07-01
  6. Managing Windows(R) with VBScript and WMI by Don Jones, 2004-04-03
  7. VBScript, WMI, and ADSI Unleashed: Using VBScript, WMI, and ADSI to Automate Windows Administration by Don Jones, 2007-06-03
  8. VBScript Pocket Reference by Paul Lomax, Matt Childs, et all 2001-02-01
  9. Microsoft WSH and VBScript Programming for the Absolute Beginner by Jr.Jerry Lee Ford, 2005-02-18
  10. Microsoft PowerShell, VBScript & JScript Bible by William R. Stanek, James O'Neill, et all 2009-02-24
  11. Learn Microsoft VBScript In a Weekend by Jerry Lee Ford Jr., 2002-05-02
  12. Advanced VBScript for Microsoft Windows Administrators (Pro Other) by Don Jones, Jeffery Hicks, 2006-01-25
  13. Vbscript Interactive Course by Noel Jerke, Michael Hatmaker, et all 1997-02-01
  14. Vbscript Unleashed by Bill Schongar, Paul Lagasse, et all 1996-12-01

1. Semantic Designs, Inc: VBScript Source Code Formatter
Tool for prettyprinting vbscript to make it more readable, or conversely, for obfuscating vbscript to make it difficult to reverse engineer. Commercial
http://www.semdesigns.com/Products/Formatters/VBScriptFormatter.html
VBScript Source Code Formatter
The VBScriptFormatter tool reorganizes VBScript source text files to neatly indent code blocks and comments according to their nesting level, or, conversely, obfuscates the code to make it difficult to understand. It is a member of SD's family of Source Code Formatters . An example of the VBScriptFormatter's results can be seen here
VBScript Formatter Features
  • Formatted code compiles and executes exactly like unformatted code Specification of indentation step distance Specification of arbitrary input tab column positions Obfuscation option protects your source and reduces web page load time Operates on VBScript or Active Server Pages containing VBScript Complete syntax check of source as formatting. You can use this verify that the script is well-formed before debug execution.

DMS and "Design Maintenance System" are registered trademarks of Semantic Designs, Inc.
CloneDR and PARLANSE are trademarks of Semantic Designs, Inc.
The SD logo and "Semantic Designs" are registered service marks of Semantic Designs, Inc.
here

Comments or problems: webmaster@semdesigns.com

2. 4GuysFromRolla.com - An Introduction To Regular Expression With VBScript
Articles in two parts about using Regular Expressions with VCScript.
http://www.4guysfromrolla.com/webtech/090199-1.shtml
When you think ASP, think... Recent Articles All Articles ASP.NET Articles ASPFAQs.com ... Search
Sections: Book Reviews
Sample Chapters
Commonly Asked Message Board Questions Headlines from ASPWire.com ... XML Info Information: Advertise Feedback Author an Article
Developer
...
E-mail Offers

An Introduction to Regular Expression with VBScript Regular Expression Support in the Scripting Languages Regular expression support is only available in VBScript version 5.0 and higher. To learn how to determine what version of VBScript you are running on your Web server, check out: Determining the Server-Side Scripting Language and Version . To download (for free) the latest version of the scripting engines, visit: http://msdn.microsoft.com/scripting/ - continued -
For information on using regular expressions in ASP.NET, be sure to read the FAQ: How do I use regular expressions from an ASP.NET Web page? Introduction: Let me start out by saying that I am no expert when it comes to regular expression! I have used regular expression on only a few occasions, and that was when writing some small Perl utilities for my Linux box. I am by no means an expert in the field. However, I've decided that I'd like to improve my regular expression skills, so I started studying up, and have decided to document my education in the form of articles to help others who are interested in learning regular expression! Regular Expression's Roots:
Regular expression use to be a thing that only UNIX users knew about. Text editors like

3. Oreilly.com -- Online Catalog: Learning VBScript, First Edition
This definitive guide shows Web developers how to take full advantage of clientside scripting with the vbscript language.
http://www.oreilly.com/catalog/vbscript/
Sign In/My Account View Cart Book List Learning Lab ... Jobs
Search Resource Centers Bioinformatics C/C++ Databases Digital Media ... XML Book Series Annoyances CD Bookshelves Cookbooks Developer's Notebooks ... Personal Trainer Publishing Partners Mandriva No Starch Press Paraglyph Press PC Publishing ... Syngress Publishing Online Publications LinuxDevCenter.com MacDevCenter.com ONDotnet.com ONJava.com ... XML.com Sponsored Zones Novell Learning Channel Special Interest Beta Chapters Events From the Editors List Letters ... tim.oreilly.com Special Sales Academic Corporate Services Government Inside O'Reilly About O'Reilly Bookstores Catalog Request Contact Us ...
Register your book
to get email notification of new editions, special offers, and more.
Learning VBScript
By  Paul Lomax
First Edition July 1997
ISBN: 1-56592-247-6
Buy from O'Reilly: Buy Online at: select a store O'Reilly Amazon.com Amazon.co.uk Amazon.ca BN.com Bookpool Bookshop Santa Cruz Borders Chapters.indigo.ca Cody's Books Digital Guru Foyles NerdBooks.com Opamp Technical Books PC Bookshop (UK) Powell's Quantum Readme.doc

4. VBScript Regular Expressions
An introductory guide to using regular expressions for string pattern matching in vbscript.
http://www.aspalliance.com/brettb/VBScriptRegularExpressions.asp
ASP Kitchen
Search: Go Home ASP Articles ASP.NET Articles ... ASPWatch.com articles : VBScript Regular Expressions
VBScript Regular Expressions
Introduction
From a programming perspective, one of the biggest annoyances I have faced with VBScript is the lack of decent string handling functions. Sure, with a bit of imagination, functions such as InStr, Left and Mid can be combined to help with the job at hand. But for anyone used to the Perl programming language, VBScript can appear to be extremely inflexible.
VBScript Regular Expressions
Regular Expressions are quite involved (it is possible to buy whole books devoted to their use!), and the purpose of this article is simply to draw your attention to the potential of using them within VBScript. If you want to know more, then try some of the references at the bottom of the article. Using the VBScript RegEx object www.microsoft.com/scripting
Response.Write "You are using "
Response.Write ScriptEngine
Response.Write " version " & ScriptEngineMajorVersion & "." & ScriptEngineMinorVersion
This should display a message such as the one below:
Using the RegExp object
Once you have determined that your web server is running the correct version of VBScript, the following lines of code will demonstrate the use of the RegExp object.

5. VBScript Forum - Tek-Tips
vbscript technical support forums and mutual help system for computer professionals. Selling and recruiting forbidden.
http://www.tek-tips.com/gthreadminder.cfm/lev2/4/lev3/32/pid/329
About Us Contact Us Site Policies Donate ... Jobs INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS
Member Login
HANDLE
PASSWORD Remember Me
Forgot Password?
Navigation
Join Us!
Keyword Search
Browse Forums Jobs ...
Donate
Come Join Us!
  • Talk With Other Members Be Notified Of Responses
    To Your Posts Keyword Search Turn Off Ad Banners One-Click Access To Your
    Favorite Forums Automated Signatures
    On Your Posts Best Of All, It's Free!
E-mail*
Handle
Select A Type MIS IS/ITManagement Programmer ISP Instructor Vendor TechnicalUser Password Verify P'word *Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.
Partner With Us!
"Best Of Breed" Forums Add Stickiness To Your Site (Download This Button Today!)
Member Feedback
"...Many thanks to you for putting it together and to the forum members for taking the time to post their replies and give their time to help others. Their isn't another site that can touch it..." More...
Geography
Where in the world do Tek-Tips members come from? Click Here To Find Out!

6. VBScript Forum
Free vbscript, related resources, codesnippets, e-books for download. Recent additions sections on ASP, ASP.Net, VB, VB.Net.
http://www.visualbasicscript.com/
Photo Gallery Member List Search Calendars ... My Forums Logged in as: Guest
Delete All Cookies
Mark All Forums read Close All Categories
Forum Description Topics Posts Last Post Moderators Welcome Forum Rules
Please read before posting for the first time. Forum Rules
7/18/2005 8:38:50 PM
Admin
Test Posting Messages
Please keep all test posts in this forum. RE: code test
9/15/2005 7:35:10 PM
Admin
New Member Area/Introduction
New to the forums This is the best place to start. Go ahead introduce yourself to the community. RE: Hello!
9/14/2005 10:50:39 PM mbouchard mbouchard Snipah TNO ... RE: Re: List all users assign 9/16/2005 3:11:15 PM mbouchard Snipah TNO esnmb ... Post a VBScript Show off your completed VBScript or code snippet here. Do not post Questions here, only completed scripts please. Script should be useful and created by you. Calculates elapsed days since 9/16/2005 6:45:56 AM Furd mbouchard Snipah TNO ... MSH (Monad) Discussion area for MSH (Monad) RE: What is MSH?

7. VBScript Tutorial
A child of the W3CSCHOOLS sites which has detailed information for new to intermediate techniques in vbscript. A great reference site.
http://www.w3schools.com/vbscript/

HOME

VBScript Tutorial

VB HOME

VB Introduction

VB How to

VB Where to
...
VB Looping

Examples
VB Examples

References VB Functions VB Keywords Selected Reading XML Tools Web Statistics Web Glossary Web Hosting ... Web Quality
VBScript Tutorial
VBScript Tutorial
VBScript is a Microsoft technology that requires Microsoft's Internet Explorer! In our VBScript tutorial you will learn how to write VBScript, and how to insert these scripts into your HTML documents to make your Web pages more dynamic and interactive. Start learning VBScript!
VBScript Examples
Learn by examples! With our editor, you can edit the source code, and click on a test button to view the result. Try-It-Yourself!
VBScript Reference
At W3Schools you will find a complete VBScript reference. VBScript Reference
Table of Contents
VBScript Introduction This chapter explains what VBScript is, and how it works. VBScript How to This chapter explains the basic syntax of VBScript. VBScript Where to This chapter explains where you should place the VBScript. VBScript Variables This chapter explains the syntax of writing variables in VBScript. VBScript Procedures This chapter explains the syntax of procedures in VBScript.

8. VBScript (Scripting)
Scripting technologies include vbscript 5.6, JScript 5.6, Windows Script Host (WSH), script APIs, script runtime, and Windows Scripting Components.
http://msdn.microsoft.com/library/en-us/script56/html/vtoriVBScript.asp
MSDN Home MSDN Library Web Development Scripting ... Windows Script Technologies Visual Basic Scripting Edition
VBScript
VBScript User's Guide VBScript Language Reference
Manage Your Profile
Legal ... Privacy Statement footerjs(document);

9. VBScript Forum
Free vbscript, related resources, codesnippets, e-books for download. Recent additions sections on ASP, ASP.Net, VB, VB.Net.
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

10. Scripting
vbscript JScript Script Runtime Windows Script Host WMI ADSI. Sample Code. Script Repository Misc. Code Samples. Additional Resources
http://msdn.microsoft.com/scripting/
MSDN Home MSDN Library Web Development
Scripting
Essentials References Sample Code Additional Resources Downloads
Manage Your Profile
Legal ... Privacy Statement footerjs(document);

11. Win32 Scripting.... Everything You Need To Get Up And Running
A continually updated repository of sample scripts. Over 300 scripts with descriptions.
http://cwashington.netreach.net/depo/default.asp?topic=repository&scripttype

12. Cetus Links: 16604 Links On Objects And Components / Object-Oriented Language: V
Cetus Links 16604 Links on Objects and Components / vbscript.
http://www.cetus-links.org/oo_vbscript.html
Object-Oriented Language: VBScript
  • See also Visual Basic ... Intro
    • According to Microsoft: " VBScript (Visual Basic Scripting Edition), a subset of the Microsoft Visual Basic programming language, is a fast, portable, lightweight interpreter for use in World Wide Web browsers and other applications that use Microsoft ActiveX Controls, Automation servers, and Java applets. ... VBScript is designed to be a small and lightweight interpreted language, so it does not use strict types (only Variants). Also, because VBScript is intended to be a safe subset of the language, it does not include file I/O or direct access to the underlying operating system. When used in Microsoft Internet Explorer, VBScript is directly comparable to Microsoft JavaScript (not Java). Like JavaScript, VBScript is a pure interpreter that processes source code embedded directly in the HTML. VBScript code, like JavaScript, does not produce standalone applets but is used to add intelligence and interactivity to HTML documents. What is Dynamic HTML? ... Dynamic HTML provides a comprehensive object model for HTML. This model exposes all page elements as objects. These objects can easily be manipulated, by changing their attributes or applying methods to them at any time. Dynamic HTML also provides full support for keyboard and mouse events on all page elements. Support for the Document Object Model enables dynamic content, style, and positioning effects as well as data binding and scriptlets. The Document Object Model (DOM) is a platform- and language-neutral interface that permits script to access and update the content, structure, and style of a document. The DOM includes a model for how a standard set of objects representing HTML and XML documents are combined, and an interface for accessing and manipulating them. Web authors can use the DOM interface in Microsoft Internet Explorer 5 and later to take advantage of this dynamic model."

13. VBScript Tutorial
A child of the W3CSCHOOLS sites which has detailed information for new to intermediate techniques in vbscript. A great reference site.
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

14. VBScript Tutorial
A WROX tutorial on clientside vbscript covering variables, objects, subroutines, functions, and forms.
http://www.intranetjournal.com/corner/wrox/progref/vbt/
document.write(''); IT MANAGEMENT CIO Update
Datamation
eCRMGuide ... Webevents Intranet Journal Subjects
Home

Administration

Collaboration

Compliance
...
IT Management Blog

Search Earthweb
Intranet Journal All EarthWeb
Whitepapers and Resources from the Novell Security Solution Center On-Demand Webcast:
Identity-Driven Computing
How Can SUSE LINUX Make Your Enterprise More Agile and Secure? Whitepaper : Using Integrated Security Platforms to Improve Network Security and Reduce Costs Security is only as strong as its weakest link. Whitepaper : Bolster Security with Enhanced Provisioning Tools from Novell Whitepaper : Reduce Password Security Risks and Productivity Costs Say goodbye to sticky notes! Whitepaper : Novell Resource ManagementDelivering the Future of Policy-Driven Solutions internet.com Developer Downloads International Internet Lists ... E-mail Offers internet commerce Be a Commerce Partner Data Recovery PDA Reviews Laptop Reviews ... Shopping Intranet Journal Update CIO Update CodeGuru Update CrossNodes Networking Instant Messaging Planet HTML Practically Networked HTML Enterprise Storage Forum Text Enterprise Storage Forum HTML Optically Networked HTML Datamation IT Management Careers Datamation IT Management Update DRM Watch Developer.com Update

15. Apprendre Le VBscript
Tutorial pour d©butants
http://www.ccim.be/ccim328/vb/index.htm
Sorry, ce site comporte des frames.

16. W3Schools Online Web Tutorials
Scripting Learn JavaScript Learn DHTML Learn vbscript Learn HTML DOM MyFirst HTML MyFirst CSS MyFirst JavaScript MyFirst vbscript. VALIDATION
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

17. VBScript Tutorial
vbscript, Microsoft s Visual Basic Scripting Edition, is a scaled down version of Visual Basic vbscript is easy to learn, even for the novice developer.
http://www.intranetjournal.com/corner/wrox/progref/vbt/ch21_15.shtml
document.write(''); IT MANAGEMENT CIO Update
Datamation
eCRMGuide ... Webevents Intranet Journal Subjects
Home

Administration

Collaboration

Compliance
...
IT Management Blog

Search Earthweb
Intranet Journal All EarthWeb
Access FREE IBM Whitepapers at the
IBM Middleware Solution Center
Whitepaper: Service Oriented ArchitectureAn Introduction for Managers by CDBI Forum
This paper provides guidance for managers in understanding and delivering real business value from service oriented architecture. Whitepaper: Compliance Requirements AssessmentIBM DB2 Records Manager and Record-Enabled Solutions This paper assesses several IBM products against a set of functional requirements derived from US regulations, laws, best practices, and records life cycle management requirements. Whitepaper: Successfully Managing Geographically Distributed Development This paper outlines some key challenges that companies face when moving to a distributed development environment. Whitepaper: Minimize Vulnerabilities and Maximize Efficiency When you Centrally Manage and Consistently Execute IT Security internet.com Developer Downloads International Internet Lists ... Search internet.com

18. X-dimension - VBX System
Informationen, vbscriptModule, Dokumentation und Downloads zu vbscript.
http://www.vbxsystem.de/
VBX, Visual, Basic, VB, VBScript, Downloads, xSync, CSS, Localization, Synchronisieren, Dateien
Ihr Browser unterstützt keine Frames. Bitte öffnen Sie diese Seite mit einem Frame-fähigen Browser

19. Oreilly.com Online Catalog Learning VBScript, First Edition
This definitive guide shows Web developers how to take full advantage of clientside scripting with the vbscript language.
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

20. VBScript Tutorial
Free HTML,XHTML,CSS,JavaScript,DHTML,XML,DOM,XSLT,ASP,ADO,SQL tutorial and web building primer from W3Schools.
http://www.w3schools.com/vbscript/default.asp

HOME

VBScript Tutorial

VB HOME

VB Introduction

VB How to

VB Where to
...
VB Looping

Examples
VB Examples

References VB Functions VB Keywords Selected Reading XML Tools Web Statistics Web Glossary Web Hosting ... Web Quality
VBScript Tutorial
VBScript Tutorial
VBScript is a Microsoft technology that requires Microsoft's Internet Explorer! In our VBScript tutorial you will learn how to write VBScript, and how to insert these scripts into your HTML documents to make your Web pages more dynamic and interactive. Start learning VBScript!
VBScript Examples
Learn by examples! With our editor, you can edit the source code, and click on a test button to view the result. Try-It-Yourself!
VBScript Reference
At W3Schools you will find a complete VBScript reference. VBScript Reference
Table of Contents
VBScript Introduction This chapter explains what VBScript is, and how it works. VBScript How to This chapter explains the basic syntax of VBScript. VBScript Where to This chapter explains where you should place the VBScript. VBScript Variables This chapter explains the syntax of writing variables in VBScript. VBScript Procedures This chapter explains the syntax of procedures in VBScript.

Page 1     1-20 of 195    1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | 9  | 10  | Next 20

free hit counter