|
|
Articles related to "Www Design"
Conditional statements The <b>If…Then</b> and <b>If…Then…Else</b> control structures give you the ability to control the flow of your code based on decisions made within your code. These two structures are very important and widely used. If you have a large statements to test, it is better to use <b>Select</b> statement. This statement makes your code easier to read and interpret than a long list of <b>ElseIf</b> statements. www-design • internet • programming • html • statement
Operator Precedence When VBScript encounters an expression that contains several different operators, a basic precedence order is followed to evaluate the expression. This predetermined order of evaluating operators is known as operator precedence. Since the portions of an expression that are placed within parentheses are evaluated first, you can use parentheses within your expression to override the operator precedence and force some portions of your expression to be evaluated before other portions. www-design • internet • html • statement • code
Operators in VBScript. Logical Operators VBScript provides a variety of operators that you can use when performing logical operations. The most widely used are <b>And</b>, <b>Or</>, <b>Not</b>, and <b>Xor</b>. You might use them separatly or combine them in sophisticated statements. www-design • internet • programming • html • statement
Variables. Subtypes The introduction to variables in VBScript continues. VBScript has only one data type called Variant. This is a special kind of data type that can contain different kinds of information, depending on how it's used. The user is free to define the variable data type explicitly using the data type conversion functions. www-design • internet • programming • html • statement
Adding VBScript to Web Pages The article gives an idea how to add VBScript codes to Web-pages. Since some browsers do not support VBScript, a method of handling non-supporting browsers is also discussed. www-design • internet • server • programming • html
Animated Button and Preloader controls Microsoft has made available a number of controls that you can use in your own VBScript HTML pages. Keep in mind that in order for these controls to work, it's up to the client (your reader) to install them on his or her machine. These controls are freely distributable and can be made available to people interested in seeing and using your implementation of the object on their machines. www-design • internet • activex • client • programming
Attributes for ActiveX objects Some of the attributes for ActiveX objects aren't new to HTML. For instance, the <b>ALIGN</b>, <b>BORDER</b>,<b>HEIGHT</b>, <b>HSPACE</b>, <b>VSPACE</b>, and <b>WIDTH</b> attributes are used with the <b><IMG></b> tag. However, because the <b><OBJECT></b> tag is part of an advanced specification, it supports the advanced alignments and spacing techniques. www-design • activex • client • server • programming
CGI and VBScript Common Gateway Interface (CGI) is one of several ways you can use to add interactivity to your Web pages. CGI represents a simple protocol of communication between the Web forms and the programs that reside on the Web server. This is a quite different technology then VBScript which is included in the HTML file implemented on the client side www-design • internet • client • programming • html
CGI basics The CGI specification came from Rob McCool of Netscape Communications. At the moment, the specification is under the supervision of the World Wide Web Consortium (W3C-http://www.w3.org). The Win-CGI standard is a CGI standard supported by some Windows-based Web servers. www-design • internet • client • programming • html
Chart Control The Chart control works just like a chart in Excel or Lotos. You provide a matrix of numeric values, and a chart gives the graphical relationship between these values. www-design • internet • client • programming • html
Custom Controls in VBScript. Brief of ActiveX controls An ActiveX control is different from a VBX or DLL because the control is registered with the operating system when it is installed. After an ActiveX control is registered, it can be used as a component by any application developed, using any one of many different development environments, including VBScript. www-design • internet • activex • programming • html
Document Object The <b>document</b> is the next (after window) object in the hierarchy of <strong>Internet Explorer</strong>. It represents the HTML page displayed on the browser's window or one of its frames. You have already used the <b>document</b> object applying the <b>document.write</b> method to write strings on the current document. This method enables you to create documents on the fly. You use this object most often in programming your Web pages, and this section discusses its properties and methods in detail. www-design • internet • client • programming • html
Document Object's Methods and History Object The <b>document</b> object provides five methods, through which you can manipulate its contents. The most widely used is <b>write</b> method widely used for DHTML. The history object of browser is an invisible object that provides methods for navigating through the document's history. It provides the functionality of the browser's navigational buttons www-design • internet • client • programming • html
Events in VBScript Events are mostly a result of something you do. You click the mouse on a button, for example, or you press the key in a dialog box. You are not the only source of events, however. Windows also causes events such as a timer event that occurs each time Windows internal clock ticks. The Web browser creates events, too, such as an event that occurs each time it loads a Web page. Events in Windows generate messages. Messages in Windows tell the applications and the operating system what to do and what is going on. www-design • internet • client • programming • html
Generating HTML on-the-fly One of the coolest features of VBScript is its capability to generate HTML on-the-fly. You can use the programming capabilities of VBScript to decide what should appear on the page and how it should appear. Then the script code can output the HTML for display within the browser window. www-design • internet • client • programming • html
Inserting ActiveX Controls in the Web Page Each ActiveX control has a set of properties and methods that can be set and reacted to. They are programmed just like any other object on the Web page. You set the properties of the control, and then your script reacts to messages sent by the user interacting with the objects in the browser. www-design • internet • activex • client • server
Link Object The basic property of the <b>link</b> object is the <b>length</b> property, which returns the number of the links in the document. Each link is a member of the <b>links</b> array. Because the hyperlinks in a document are destinations, the <b>link</b> object's properties are identical to the properties of the <b>location</b> object; however, they are read-only. www-design • internet • client • programming • html
Location Object The <b>Location</b> object contains information about the current documents location and can be used to manipulate browser navigation. The Location object has no events. www-design • internet • client • programming • html
Methods of Window Object The methods of <b>window </b>object determine how <b>window</b> object performs actions, such as how it displays a message or get input from the user. The most used <b>window</b> are <b>alert, prompt, confirm, open, close, setTimeout, clearTimeout</b> methods. www-design • internet • client • programming • html
MS Calendar Control MS Calendar Control is a very convenient visual tool to display or choose a date including year, month, calendar day, and day of week.It is visible both at design time and at run time. www-design • internet • client • programming • html
Navigator Object You can access information about the browser through the properties exposed by the navigator object. Please, note, all of its properties are read-only. www-design • internet • client • programming • html
Operators in VBScript. Arithmetic Operators VBScript provides several different operators that can be used for mathematical calculations, comparison of two values, performing the logical operations, and string manipulation. The first major class of operators is arithmetic operators. Arithmetic operators enable you to perform simple arithmetic on one or more variables. Most of these operators will be familiar to you because you have been exposed to them in everyday life. www-design • internet • programming • html • statement
Operators in VBScript. Comparison Operators The comparison operators are used to compare one or more variables, numbers, and constants and their combination. These operators are used in statement which compares two different numeric expressions and returns a Boolean value of TRUE if the statement is true. If not, the statement returns FALSE. www-design • internet • programming • html • statement
Popup Menu Popup Menu control is used to create a popup menu when the user clicks a link, named control or image link with the mouse on a Web page. This control is used mostly for navigational purposes. www-design • internet • activex • programming • html
Procedures in VBScript. Functions The lesson continues the topic on VBScript procedures and consider VBScript functions.Like a subroutine, a function also holds a series of VBScript statements. It can take arguments and call other procedures. The only difference is that a function actually returns a value to the code statement that called it. The value returned can be then processed by the calling procedure. www-design • internet • client • server • programming
Procedures in VBScript. Subroutines. The lesson describes how to create and use subroutines (procedures in VBScript programs). Subroutines contain code that other parts of the application can call. Subroutines can accept one or more arguments that they can use to perform their tasks. You will discover how to declare a subroutine and call it in code. www-design • internet • programming • html • statement
Rich Textbox Control RTF stands for rich text format; it was designed to create portable formatted documents that can be displayed on different systems.Creating a functional, even fancy, word processor based on the Rich Textbox control is quite simple. www-design • internet • client • programming • html
Timer Control The Timer control belongs to the type of control that is not visually oriented. The timer control is not intended to be something the user sees; it is a building block for your scripts. Any action that should occur after a precisely specified interval can be implemented with a timer and the code you can associate with a timer expiration. www-design • internet • activex • client • programming
Variables. Constants A constant is a named value that doesn't change throughout a script. To use the constant in a script, you simply declare it, assign it, and use it like a variable. To differentiate a name of constant from the variable names, you might use either your own naming conventions, or recommended VBScript Coding Conventions. www-design • programming • html • statement • object
Variables. Introduction The lesson gives an introduction to variables in VBScript. They are used to save data returned from functions and store data for further processing. Here, you will find how to create and declare variable, and how to assign them. It is important that the names of variables in VBScript are not case sensitive. www-design • internet • server • programming • html
Ways to Attach Code to Events The most common way to attach code to events is to join by underscore (_) the name of the object and the name of the event in the procedure description. There are 2 other ways to define event-driven procedures. The procedure can be defined within the tag of the object. For short sections of code, Internet Explorer allows you to add inline code in the tag defining the control. You can also write a <SCRIPT> tag so that it applies only to a particular event for a specific control. www-design • internet • client • programming • html
Working with Dates and Time Date information can be an important part of a script. VBScript provides you with a ready toolkit for working with date and time information. Many of the VBScript functions can work with a date, a time, or a time and date. In VBScript, dates and times are often stored together. The date subtype is viewed as representing both a date and time in its own format. www-design • internet • programming • html • statement
Working with objects Using object, you are giving sufficient capabilities to your Web pages. Objects let you incorporate components into your Web page. And if you incorporate a component into your page, you can incorporate it into your script as well. www-design • internet • client • programming • html
Quick Computer Recipes One of the most difficult things about using technology in the classroom is the constant barrage of questions. This post is not so much an article as it is a resource which I have created to help with this aspect of technology in the classroom. computer tips • computer recipes • technology teacher • windows tips • hardware tips
Introduction to VBScript A topic covers the VB script application for WWW-design. It includes technical information; step-to-step guide on using VB script for DHTML, advanced VB script applications that use Microsoft ActiveX Controls, Automation servers, and Java applets; useful links and recommended literature. www-design • internet • intranet • activex • java
VBScript and Java Applets You can integrate the applets into your programs and directly use their capabilities from your script. It's very much like the ActiveX object integration model. There are some differences, such as the events that ActiveX provides, but there are also a lot of similarities. www-design • internet • intranet • activex • java
Universal Design and ADA Nearly 30 million Americans, including disabled, elderly and anyone with functional limitations are helped by Universal Design and the ADA every day. universal design • americans with disabilities act of 1990 • ada • ud • disabled accessibility
Even More Totaly Cool ACAD Links! LISP's, the beginning of Autodesk, and more! lisp • acad • cad • autocad • drafting
Kids, Do you have the Blues? You can turn those blues into music and have a great time doing it. Music is a perfect way to express yourself, your feelings and emotions, into a song or a dance. Let's take a look at some things on the Internet to get those creative juices flowing. creativity • music • songs • midis • teachers
Multicultural Music Education We are linked through music and we are linked through our humaness. This article presents various countries around the world that will hopefully open our eyes to how much alike we all are. Click on the links to discover: What we do for fun! What we sing! What we learn and How we communicate. fun • dance • needing • wanting • update
Smoke-Screen This article and lesson plan will help you work with your students to learn about both the health issues surrounding smoking, and the debate of student/campus smoking. With this knowledge, students will work together to create an informative CD-ROM that could be distributed to educators, students, and schools. We'll begin with a discussion that provides the necessary background for teachers, and then work into the actual lesson plan. student smoking • campus smoking • teaching technology • teacher technology • student health
Summer School For Teachers Lesson One: The WebQuest In this lesson, we're going to do the WebQuest. If you start from the beginning and actually do what you read as you read it, you'll have a complete and ready-to-use WebQuest by the time you're done reading. how to make webquest • webquest tutorial • teach technology • lesson plan • curriculum |
A |
B |
C |
D |
E |
F |
G |
H |
I |
J |
K |
L |
M |
N |
O |
P |
Q |
R |
S |
T |
U |
V |
W |
X |
Y |
Z |
0-9 |
|
|
|
|
|
|
|
|