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

         Vbscript:     more books (100)
  1. Building Professional Web Sites with the Right Tools: Build It With Visual Studio 6, FrontPage, Active Server Pages, VBScript, JavaScript, ADO, Paint Shop Pro, and Image Composer by Jeff Greenberg, J. R. Lakeland, 1999-08-10
  2. The Webmaster's Guide to VBScript by James Edward Keogh, 1996-09
  3. ASP 3 Programacion en Vbscript para IIS 5.0/ ASP 3 Programming in Vbscript For IIS 5.0 (Guias Practicas/ Practical Guides) by Oscar Gonzalez, 2004-10-30
  4. Visual Developer VBScript 2 & ActiveX Programming: Master the Art of Creating Interactive Web Pages with Visual Basic Script 2 and ActiveX by Scott D. Palmer, 1997-07-28
  5. Introducing VBScript and ActiveX¿ by Kenneth L. Spencer, Kenneth L Spencer, et all 1996-09-23
  6. Kit 2: Vbscript and Activex by Chen, et al, 1997-04-23
  7. Scriptsprachen für dynamische Webauftritte. JavaScript, VBScript, ASP, Perl, PHP, XML. by Wolfgang Dehnhardt, 2001-01-01
  8. Web Scripting With Vbscript by Steven Holzner, 1996-09
  9. Vbscript Web Page Interactivity by William J. Orvis, Michael Morrison, 1996-10
  10. Creating Cool Vbscript Web Pages by Bill Hatfield, 1997-01
  11. VBScript by Steve Holzner, 2005-11-16
  12. Activex & Vbscript Starter Kit by Sams Net, 1996-10-29
  13. Vbscript Sourcebook by Mary Jane Mara, 1997-10-27
  14. Vbscript Unleashed by Bill Schongar, 1997

41. Introduction To Visual Basic Scripting (VBScript)
Lawrence Elliot introduces vbscript to irt.org, describing the major difference between vbscript and JavaScript, and describing how to include vbscript in a
http://tech.irt.org/articles/js117/
Introduction to Visual Basic Scripting (VBScript) Home Articles FAQs Xref ... VBScript Published on: Friday 18th September 1998 By: Lawrence Elliot
Introduction
VBScript is a subset of the Visual Basic Programming language. The result of the slimming down process is a very small language that is easy to use. You may be interest to know that there is also available Visual Basic for Applications (VBA) for use with Microsoft Word, Excel, Access etc. JavaScript can do all that VBScript can do and far more. So why use VBScript instead of JavaScript? Because VBScript is much easier to learn than JavaScript. For instance, here is the VBScript code to request the users name and display it in a message box on your web page and print your name in large letters: There is one big drawback to using VBScript and that is that it isn't supported by non-Internet Explorer browsers. Much of the power of VBScript comes from its ability to control the thousands of ActiveX controls that are available. It is a fairly straight forward exercise to create your own ActiveX controls using ActiveX Control Pad which is free from Microsoft. For the people who still use Notepad to write their HTML files, you really need to use Control Pad. For instance, you may call a text box a "text box" but to every machine in the world its name is really: The reason behind this great long number is that if the person displaying your web page speaks a different language, the persons computer displays everything in the other language. Don't be put off by the long CLASSID number, you don't have to remember it or even type it in, Control Pad does it all for you.

42. PM Design
Website and graphic design; Flash, FTP, HTML, DHTML, JavaScript, ActionScript, and ASP/vbscript.
http://www.pmdesign.org/

43. Apprendre Le VBscript
Tutorial pour débutants
http://www.ccim.be/ccim328/vb/

44. Introduction à VBScript
Translate this page vbscript (aussi appelé Visual Basic Scripting Edition) est un sous-ensemble du langage Visual Basic for Applications (VBA), un langage propriétaire de
http://www.commentcamarche.net/vbscript/vbsintro.php3
Accueil Zone CCM Forum Quizz CCM ... Aide Chercher sur CCM Introduction Variables Structures conditionnelles 6 juin 2004 VBScript Visual Basic Scripting Edition ) est un sous-ensemble du langage Visual Basic for Applications Devenir membre Format imprimable Signaler une erreur Participez aux forums de CommentCaMarche ... Testez vos connaissances avec le Quizz Ce document issu de CommentCaMarche.net la licence GNU FDL
CD-Training.fr
) et Internet ( Net-Training.fr ). Le forum est hébergé en partenariat avec l' EpiTech

45. Tutorial-Web - Home For Tutorials And Resources For ASP, ASP.net, XML, HTML
A collection of tutorials designed to assist web programmers in Active Server Pages and vbscript.
http://www.tutorial-web.com/
Home Link To Us Components Resources
ASP.net Introduction An Overview in the Differences Between ASP and ASP.net
Section 1: Introduction Section 2: ASP.net Differences 1 Section 3: ASP.net Differences 2 ... Section 4: Final Differences and Conclusion ASP ActiveX Components An Overview in Creating An ActiveX DLL for Use With ASP and VB Section 1: Creating the Component Section 2: Registering and Using the Component CDO Object/Email CDO Object/Email from ASP Collections Collections in COM Objects Section 1: Setting it all up Section 2: Creating the Collection Database An Overview in Utilizing ASP to Provide Database Access Through Web Browsers Section 1: Setting it all up Section 2: SQL and Stuff Section 3: VBPower! ... Setting Up A DSN-Less Database Connection FileSystem Object The Complete FileSystem Object Reference Guide Introduction An Overview of Active Server Pages (ASP) Section 1: Introduction Section 2: Loop-the-Loop Section 3: Make a Statement! ... Section 4: Final Results XML and XSL Introduction An Overview in Combining XML Data With XSL Within ASP Section 1: Introduction to XML Section 2: XSL Power!

46. VBScript Regular Expressions
Describes the improved text handling functions of version 5 of vbscript through its support for Regular Expressions.
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.

47. Galahtech.com -> Visual Basic, EVB, VBA, Vbscript
Forums for Visual Basic and related topics.
http://www.galahtech.com/forums/index.php?showforum=7

48. What Is VBScript? - A Word Definition From The Webopedia Computer
This page describes the term vbscript and lists other pages on the Web where you can find additional information. internet.com, vbscript
http://www.webopedia.com/TERM/V/VBScript.html

49. Scriptsprachen Für Dynamische Webauftritte - JavaScript, VBScript, ASP, Perl, P
Informationen und Beispiele zu JavaScript, vbscript, ASP, Perl, PHP und XML.
http://www.wsite.de/

Carl Hanser
2000, XII/452 Seiten, ISBN 3-446-21413-5
*** Scriptsprachen für dynamische Webauftritte - JavaScript, VBScript, ASP, Perl, PHP, XML
Leseproben: Vorbemerkungen E-Commerce (Auszug)
(Alles im PDF -Format) Verlagstext: Dynamische Webauftritte sind interaktive Anwendungen im Internet, mittels derer z.B. Bücher eingekauft oder ein Kurs über das Web besucht werden kann. Dieses Buch beschreibt, wie solche Webauftritte mit Scriptsprachen realisiert werden. Im Zentrum steht daher die Vorstellung der wichtigsten Scriptsprachen: JavaScript, VBScript und ASP, Perl und PHP. Abgerundet wird dies durch eine Einführung in XML, das für Webauftritte eine immer wichtigere Rolle spielt. Es wird gezeigt, wie Datenstrukturen mit XML erstellt und wie sie mit Scriptprogrammen weiterverarbeitet werden können. Alle Ebenen dynamischer Webauftritte werden beschrieben: die Benutzerschnittstelle und die im Server lokalisierten Strukturebenen, vor allem die Persistenzebene mit Datei- und Datenbanksystemen. Der Autor zeigt den Einsatz der Scriptsprachen in konkreten Anwendungsbeispielen und erläutert und vergleicht ihre Stärken. Auf dieser Website finden Sie die Programmbeispiele des Buches, den vollständigen Programmcode zweier E-Commerce-Anwendungen, Kurzeinführungen in SQL und HTML, Übersichten über JavaScript-Objekte und

50. NetCincy.com
Design, Flash, email service, domain registration, programming in ASP, vbscript, and JavaScript, database development, and hosting. Located in Cincinnati, Ohio, United States.
http://www.netcincy.com/
CUSTOMER SUPPORT Web Email
Configure Account
DOMAIN NAMES
$25/yr NetCincy offers complete web site layout, design and hosting packages. We can also set up a complete email package designed just for you. We will work with you every step of the way to make sure you are satisfied with the design and operation of your web site. NetCincy is dedicated to keeping your presence on the web up to date. Let us handle the daily maintenance of your site while you're free to concentrate on your business. Contact us today for a free estimate.

51. VBScript Reference
. vbscript......ASP,vbscript and FSO references plus free source code in Java,ASP,PHP,Javascript to use. º wow. º er? vbscript.
http://www.sloppycode.net/vbscript/
gggggggggggggggggggggggggggggg
gggggggggggggggggggggggggggggg
gggggggggggggggggggggggggggggg
gggggggggggggggggggggggggggggg
gggggggggggggggggggggggggggggg
gggggggggggggggggggggggggggggg
gggggggggggggggggggggggggggggg
gggggggggggggggggggggggggggggg
ggggggggggggggg rrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
rrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
rrrrrrrrrrrrrrrrrrrrrrrrrrrrrr rrrrrrrrrrrrrrrrrrrrrrrrrrrrrr rrrrrrrrrrrrrrrrrrrrrrrrrrrrrr rrrrrrrrrrrrrrrrrrrrrrrrrrrrrr rrrr bgggggggggggggggggggggggg i am will Download Rant! hello what is this? what is this? what is this? poop rant Nice site www.codecraig.com/java Type here and then hit RETURN key Type here and then hit RETURN key/group wow er? www.travisnelsa.com/sdlinks Your new design rocks. http://www.travisnelsa.com/sdl inks/ very great job, thank you C# asp vbscript fso ... Year
VBScript
Description
VBScript - Visual Basic Scripting Edition is a late-bound and lightweight version of Microsoft's Visual Basic. It's used for both client-side scripting, typically with a browser (although Microsoft Internet Explorer only supports it), and more commonly as the server-side language of choice with ASP. This reference features short descriptions of all of VBScript's features for scripting version 5.5. Each definition features a link to the Microsoft Scripting website, where you'll find a more definitive explanation of the function,property etc. that you are looking at.

52. WebSamba Members
Directory of free vbscript, VB.Net and ASP articles, FAQs, source code links.
http://www.websamba.com/freeresources/

53. Home : VBScript Reference
From the Windows Script reference library, vbscript Reference category for Visual Basic Script Reference and Functions. Constant values built into vbscript.
http://www.winguides.com/scripting/reference.php?category=2

54. Redirecting
Please Wait LOADING.
http://www.vbscripts.com/
Please Wait...
LOADING

55. Encrypt HTML Source, Javascript, ASP. Protect Links & Images. HTML Encryption
Protect your website by encrypting Html, Javascript, Asp and vbscript source code. Encrypt Html formatted email, protection for links, images and Java applets.
http://www.protware.com/
Encrypt HTML source, protect web site. Javascript and ASP code encryption! Protection of images, links, java applets. Encryption of e-mail in HTML format!
HTML Guardian is an advanced tool to encrypt html source and password protect web site content entirely - including Javascript source code, VBscript and ASP files, cascading style sheets, images in many formats and many other components of your site. It can also secure HTML formatted email. Encryption will protect your images, links, applets and flash animations from stealing and leeching, it will make absolutely impossible linking your content from other web sites. Protection is done by converting files into encrypted javascript code. The original look of your web pages will not be affected in any way - they will look exactly the same as before in any browser.
Visit our partner, Encrypt HTML leader Code Protection Technologies Encrypt HTML code and make impossible stealing it! Protected code can't be reused or edited in any HTML or text editor. Changing even a single character in it will make the file non-working. No portion of the encrypted html can be just copied and pasted in some other file.

56. VBScript ƒ`ƒ…[ƒgƒŠƒAƒ‹
vbscript ? HTML ? vbscript . vbscript ?. vbscript Internet Explorer vbscript ?. vbscript
http://tryasp.winscom.co.jp/document/vbscript/vbstutor.htm
VBScript ƒ`ƒ…[ƒgƒŠƒAƒ‹
ƒ‰ƒ“ƒQ[ƒW ƒŠƒtƒ@ƒŒƒ“ƒX

VBScript ‚ÌŠT—v

HTML ‚É VBscript ƒR[ƒh‚ð‹Lq‚·‚é
VBScript ‚̃f[ƒ^Œ^ ...
VBscript ‚̃Tƒ“ƒvƒ‹ƒvƒƒOƒ‰ƒ€‚Æ VBscript ‚ðŽg—p‚µ‚½ƒTƒCƒg‚̏Љî
Internet Explorer ‚Å‚Ì VBScript ‚ÌŽg—p VBScript ‚ðŽg—p‚µ‚½ŠÈ’P‚ȃy[ƒW‚Ì—á
VBScript ‚ƃtƒH[ƒ€

VBScript ‚ƃIƒuƒWƒFƒNƒg

57. VBScript ƒ‰ƒ“ƒQ[ƒW ƒŠƒtƒ@ƒŒƒ“ƒX
else { browser = 1; Dovbscript( ); } / Microsoft® Visual Basic® Scripting Edition vbscript ? ,
http://tryasp.winscom.co.jp/document/vbscript/vbstoc.htm
" End Sub >
VBScript ƒ‰ƒ“ƒQ[ƒW ƒŠƒtƒ@ƒŒƒ“ƒX ƒ`ƒ…[ƒgƒŠƒAƒ‹
ƒo[ƒWƒ‡ƒ“î•ñ

ƒL[ƒ[ƒhˆê—— + ‰‰ŽZŽq (‰ÁŽZ) - ‰‰ŽZŽq (Œ¸ŽZ) * ‰‰ŽZŽq (æŽZ) / ‰‰ŽZŽq (œŽZ) ^ ‰‰ŽZŽq (Žw”‰‰ŽZ) Abs ŠÖ” And ‰‰ŽZŽq (˜_—Ï) Array ŠÖ” Asc ŠÖ” AtEndOfLine ƒvƒƒpƒeƒB AtEndOfStream ƒvƒƒpƒeƒB Atn ŠÖ” Attributes ƒvƒƒpƒeƒB AvailableSpace ƒvƒƒpƒeƒB Call ƒXƒe[ƒgƒƒ“ƒg CBool ŠÖ” CByte ŠÖ” CCur ŠÖ” CDate ŠÖ” CDbl ŠÖ” Chr ŠÖ” CInt ŠÖ” CLng ŠÖ” Column ƒvƒƒpƒeƒB CompareMode ƒvƒƒpƒeƒB Const ƒXƒe[ƒgƒƒ“ƒg Cos ŠÖ” Count ƒvƒƒpƒeƒB CreateObject ŠÖ” CSng ŠÖ” CStr ŠÖ” Date ŠÖ” DateAdd ŠÖ” DateCreated ƒvƒƒpƒeƒB DateDiff ŠÖ” DateLastAccessed ƒvƒƒpƒeƒB DateLastModified ƒvƒƒpƒeƒB DatePart ŠÖ” DateSerial ŠÖ” DateValue ŠÖ” Day ŠÖ” Description ƒvƒƒpƒeƒB Dictionary ƒIƒuƒWƒFƒNƒg Dim ƒXƒe[ƒgƒƒ“ƒg Do...Loop ƒXƒe[ƒgƒƒ“ƒg Drive ƒIƒuƒWƒFƒNƒg Drive ƒvƒƒpƒeƒB DriveLetter ƒvƒƒpƒeƒB Drives ƒRƒŒƒNƒVƒ‡ƒ“ Drives ƒvƒƒpƒeƒB DriveType ƒvƒƒpƒeƒB Empty ’l Eqv ‰‰ŽZŽq (˜_—“™‰¿‰‰ŽZ) Erase ƒXƒe[ƒgƒƒ“ƒg Err ƒIƒuƒWƒFƒNƒg Exit ƒXƒe[ƒgƒƒ“ƒg Exp ŠÖ” False File ƒIƒuƒWƒFƒNƒg Files ƒRƒŒƒNƒVƒ‡ƒ“ Files ƒvƒƒpƒeƒB FileSystemObject ƒIƒuƒWƒFƒNƒg FileSystem ƒvƒƒpƒeƒB Filter ŠÖ” Fix ŠÖ” Folder ƒIƒuƒWƒFƒNƒg Folders ƒRƒŒƒNƒVƒ‡ƒ“ For...Next ƒXƒe[ƒgƒƒ“ƒg

58. Windows-Script
Allows you to use vbscript or JScript to write batch files to manage workstations through logon scripts or automate administration tasks. Even the Microsoft Management Console uses WSH scripts for products like Site Server. IIS configuration can be fully automated using WSH.
http://wsh.glazier.co.nz
var nEditorialCatId = 21; MSN Home My MSN Hotmail Shopping ... Money Web Search: document.write(''); Groups Groups Home My Groups Language ... Help Windows-Script windowsscript@groups.msn.com What's New Join Now Home Windows XP ... Tools WSH FAQ May 2004
A new book for beginners! Windows Scripting Self-Paced Learning Guide
Get the inside track on how to write system administration scripts—straight from Microsoft scripting experts. This practical learning guide teaches how to use scripting techniques to gain control over your Microsoft Windows, Microsoft Internet Information Services (IIS), and Microsoft Exchange Server environments—all at your own pace. Build practical skills on everything from writing your first script in Microsoft Visual Basic® Scripting Edition (VBScript) to working with Windows Scripting Host (WSH), Windows Management Instrumentation (WMI), and Active Directory® Services Interface (ADSI), and from creating logon scripts to automating the management of systems, user accounts, files, printers, the registry, network services, directory services, security features, group policy, and more. More books...

59. Visual SCSI Explorer :: By Andriy Chobik
Testing of SCSI devices under Windows 2000. Visualization of SCSI host configuration. Manual and scripted (JScript, vbscript) command execution. Optimized for Medium Changer SCSI devices.
http://www.scsiexplorer.com.ua
@import url("themes/PostNuke/style/style.css"); Visual SCSI Explorer by Andriy Chobik Welcome guest :: Login Register :: Registered users can download files, receive our news by e-mail and many other useful things. Menu Your browser does not support script
Who is online Currently no members online
You are an anonymous user. You can register for free by clicking here We have 1 guests online !
Search
Last forums [Access Forum]
About Visual SCSI Explorer Visual SCSI Explorer application runs on the Windows 2000 and Windows XP operating system platforms and is intended for people who deal with SCSI devices. Application functional interface is optimized for Medium Changer SCSI device. Raw CDB feature allows user to execute any SCSI command for SCSI device of any type.
Application visualizes host SCSI configuration as adapter-device tree. It is possible to rescan SCSI buses and to see SCSI device insertion and removal.
SCSI device firmware developers will be able to execute each SCSI command manually and to verify device functioning. Application shows binary outbound and inbound command data and parses them.
Developers of SCSI initiator and target mode drivers for host bus adapters will find this application useful to test drivers.

60. Win32 Scripting.... Everything You Need To Get Up And Running
virus. Date Posted Tuesday, May 04, 2004 Author Marco Trancoso Vaz (aka Careto) Script Category vbscript, Miscellaneous Comments 5.
http://cwashington.netreach.net/depo/default.asp?topic=repository&scripttype=vbs

Page 3     41-60 of 186    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | 9  | 10  | Next 20

free hit counter