|
What is 1000Projects
'1000projects.com' is an educational content website dedicated to finding and realizing Final Year Projects, IEEE Projects, Engineering Projects, Science Fair Projects, Project Topics, Project Ideas, Major Projects, Mini Projects, Paper Presentations, Presentation Topics, IEEE Topics, .Net Projects, Java Projects, PHP Projects, VB Projects, SQL Projects, C & DS Projects, C++ Projects, Perl Projects, ASP Projects, Delphi Projects, HTML Projects, Cold Fusion Projects, Java Script Projects, Btech Projects, BE Projects, MCA Projects, Mtech Projects, MBA Projects, Project on Software, CBSE Projects, Testing Projects, Embedded Projects, Chemistry Projects, Electronics Projects, Electrical Projects, Science Projects, Mechanical Projects, Mba project Reports, Placement papers, Sample Resumes, Entrance Exams, Technical Faq's, Puzzles, etc
how it works?
Everything on this site is submitted by the students in this professional community. You Can submit your Projects, Project Topics & Ideas to info.1000projects{at}gmail.com after you submit your project/project Idea/Abstract/Seminar Topics, These are being verified and approved by our administrator. after approval of this project/project Idea/Abstract/Seminar Topics, It can be shown on 1000projects.com so that other users can read/discuss it.The entire content on this website is Only For Educational Purpose, Non Commercial use!
Please help us/Other Users by sending projects/project Ideas/Abstracts/Seminar Topics. Thanking You!!!!!
Category Articles
How do you create a recordset object in VBScript?
Added on Wed, Jan 6, 2010
First of all declare a variable to hold the Recordset object, ex- Dim objRs Now, Create this varible as a Recordset object, ex- Set objRs=Server.CreateObject(ADODB.RECORDSET) Read More
How Do I Declare Variables?
Added on Wed, Jan 6, 2010
You may declare variables implicitly, meaning that you don't need to declare variables prior to their use and can just type something like: myVar = 9. However, this is very bad practice that can result in a number of inexplicable errors. To... Read More
What is The Difference Between a Sub-Procedure and a Function
Added on Wed, Jan 6, 2010
function will return a value ex-fun() { } return value; but sub-procedure will not return a value Read More
What is VBScript?
Added on Wed, Jan 6, 2010
VBScript is a somewhat simplified version of its superset, Visual Basic, as some prototypes are made easier, you do not have to worry about variable sizes, etc. This is too try and allow optimum web development with minimal programming abilities... Read More
Which Browsers Support VBScript?
Added on Wed, Jan 6, 2010
VBScript is a trademark of Microsoft Corporation and is only supported by Microsoft Internet Explorer 3.0+ and Microsoft Internet Information Server. Read More
Compare Java Script and VB Script?
Added on Wed, Jan 6, 2010
VB and Java Script are much similar in functionality. They both interact with the document object model of the page. Many browsers have compatibility with Java Script but they are not compatible with VB script as such. For client side scripting... Read More
Explain about VB Script?
Added on Wed, Jan 6, 2010
VB script is a Microsoft programming language and it resembles a lower version of the VB. It is an Active Scripting language. This scripting language is included in windows operating system by default. With the use of msscript.ocx you can... Read More
Give examples where VB script can directly run on users system with Windows as OS?
Added on Wed, Jan 6, 2010
A simple example detailing the running of VB Script is by utilizing Windows Script host environment. Visual basic is a stand alone application which has a .vbs as extension. Input can be provided through graphical user interface and output can be... Read More
Explain about .wsf files?
Added on Wed, Jan 6, 2010
.wsf files are modeled in similar to XML. They can be executed with the help of Wscript. exe and it can be done from the command line also. This .wsf file can have multiple visual basic files. Reuse functionality is present with this extension... Read More
Explain about the extension .hta?
Added on Wed, Jan 6, 2010
.hta extension is used whenever you want to include a VB script in HTML. Here HTML acts as an interface and VB Script as the programming language. .hta extension files do run in the safe and trusted zone of Internet explorer. Although they run... Read More
Explain some uses of VB Script?
Added on Wed, Jan 6, 2010
If functionality aspect is considered VB Script acts similar to Java Script but it is compatible only on internet explorer. They interact with Document object model. Visual basic script can also be used for server side processing with ASP. Read More
Explain about the support of ASP for VB Script functionality?
Added on Wed, Jan 6, 2010
Visual Basic should rely on ASP for sever side processing. Asp. dll is used to make VB Script run on ASP engine and it invokes vbscript.dll. VB Script should be embedded within <% and %> context switches. ASP can provide varied functionality... Read More
Explain about the functionality of VB Script?
Added on Wed, Jan 6, 2010
Active X technology can be used to give much more functionality to VB Script. VB provides sub routines, functions, string manipulation, data/time, error handling, etc. VB can have more functionality added to it by working with languages such as ASP... Read More
Explain about scrrun.dll?
Added on Wed, Jan 6, 2010
Scripting Runtime library is very important for the functioning of Visual basic script because it gives much more functionality such as File management, text operations and file modification features. Scrrun.dll is used very much in programming VB. Read More
Explain about ADODB.Stream class?
Added on Wed, Jan 6, 2010
ADODB.Stream class can be used as string builder. VBScript string concatenation can be very costly because of frequent memory allocation features. Binary file and memory I/O operation is provided by ADODB.Stream class. This is widely used to convert... Read More
Explain about arrays in VB Script?
Added on Wed, Jan 6, 2010
Arrays in VB Script should be assigned within the variant separated by a comma. If arguments are not specified then the string is regarded as empty. After specifying the elements in an array an index number should be used indicating the desired... Read More
Explain about the Asc function?
Added on Wed, Jan 6, 2010
According to the first letter in a string it returns the ANSI code relevant to that first letter. If string is not present then a runtime error occurs. Asc function returns the first byte used. It is used only with elements containing byte data in... Read More
Explain about filter expression?
Added on Wed, Jan 6, 2010
Filter expression returns an array based on a specific filter search condition and it returns a zero based array. Arguments included in the filter array are Input strings, value, include and compare. If there is no match for the value it returns an... Read More
Explain about constants in VB Script?
Added on Wed, Jan 6, 2010
There are many useful constants present in Visual basic script which you can use in your code. They ease your work load by remembering value and implementing in the code. Maintenance is easy with VB Script because it can easily change the feature of... Read More
Explain about Tristate constants
Added on Wed, Jan 6, 2010
Tristate constants can be used with functions which allow formatting of numbers. These constants can be used with VB Script without defining them. It can be used anywhere in the code to reflect and represent the values. Read More
Explain about operator precedence in VB Script?
Added on Wed, Jan 6, 2010
In operator precedence expressions are evaluated and resolved in a predetermined order. The order of evaluation can be modulated if you use parenthesis. Expressions present in parenthesis are evaluated first. Read More
What are the different types of operators and their order of precedence?
Added on Wed, Jan 6, 2010
Order of evaluation of operators is, first arithmetic operators are evaluated, and comparison operators are evaluated next and at the last logical operators are evaluated at the last. In arithmetic operators negation, Exponentiation, multiplication... Read More
How to send content of a file line by line to a batch file as a parameter ?
Added on Wed, Jan 6, 2010
No answer available currently. Be the first one to reply to this question by submitting your answer from the form below. Read More
Which Platforms Support VBScript?
Added on Wed, Jan 6, 2010
VBScript is supported by Windows 95, Windows NT (including a native version for Alpha), 16-bit Windows, and Unix Solaris. Microsoft is currently working with others to bring VBScript to UNIX versions for HP, Digital, and IBM platforms. Read More
Where Can I Get VBScript
Added on Wed, Jan 6, 2010
If your VBScript-capable browser does not have VBScript or you would like the latest version of VBScript then download it at Microsoft's Scripting Engines download site. Read More
Where Can I Find VBScript Documentation?
Added on Wed, Jan 6, 2010
Microsoft gives you almost everything you need in the way of specifications at their Scripting Technologies web site. Read More
Is VBScript Better Than JavaScript?
Added on Wed, Jan 6, 2010
It depends what you would call better =). The only con is that you must be using Explorer to see the code execute, which may be annoying for Netscape users that rely on JavaScript. On the other hand, VBScript operates in much the same way as... Read More
How Do I Implement VBScript?
Added on Wed, Jan 6, 2010
You use VB Script in exactly the same manner as you would JavaScript. Simply place all code between these tags like so: <SCRIPT LANGUAGE="VBScript"> </SCRIPT> Read More
Where should my script be within the document?
Added on Wed, Jan 6, 2010
Put the script at the beginning of the <HEAD> of the document, not at the end. Read More
What Is The Difference Between the Dim, Public, and Private Statements?
Added on Wed, Jan 6, 2010
Private statement variables are available only to the script in which they are declared. Public statement variables are available to all procedures in all scripts. Variables declared with Dim at the script level are available to all procedures... Read More
What Is The Variant Datatype?
Added on Wed, Jan 6, 2010
The Variant datatype can contain a wide array of subtypes, thus, the programmer need not worry about making sure that certain variables are capable of supporting a specific type of data. The following table shows the subtypes of data that a Variant... Read More
How Do I Use Arrays?
Added on Wed, Jan 6, 2010
Arrays may either be static or dynamic. A static array has its dimensions pre-defined and may not be re-sized, whereas a dynamic array does not have a pre-defined number of dimensions and must be resized to store any data. To define any of the two... Read More
How Do I Re-Dimension Arrays?
Added on Wed, Jan 6, 2010
You may only re-dimension dynamic arrays. To do so, use the ReDim statement in the same manner as either the Dim, Public, or Private statments. For example to re-dimension an existing dynamic array you could go: ReDim myArray(5, 5) Note that using... Read More
What is JavaScript?
Added on Wed, Jan 6, 2010
JavaScript is a platform-independent, event-driven, interpreted programming language developed by Netscape Communications Corp. and Sun Microsystems. Originally called LiveScript (and still called LiveWireTM by Netscape in its compiled, server... Read More
What is the scope of a variable ?
Added on Wed, Jan 6, 2010
The scope of a variable defines whether a variable will be accessible in the whole function or will be accessed only to its local instance.I have defined earlier in the tutorials that they can also be deemed as a local variables or can be deemed as a... Read More
How to Assign values to a variable ?
Added on Wed, Jan 6, 2010
Simple you have to declare a variable name and assign any value. For ex. Name = ?Chandra? Status=False Age=30 Now all the above variables has been assigned values.This is a simple way to declare and assign related values to a variable. Read More
What are Variants?
Added on Wed, Jan 6, 2010
VbScript deals with a single datatype called variant. Datatype means the kind of the data a variable will store.It can be a character data,string data,number data , byte data and a Boolean data. But you don?t have to worry in Vb Script as it only... Read More
Why use Style Sheets?
Added on Wed, Jan 6, 2010
Style sheets allow a much greater degree of layout and display control than has ever been possible thus far in HTML. The amount of format coding necessary to control display characteristics can be greatly reduced through the use of external style... Read More
|