VBScript supports various date and time functions. In this section you will learn all supported date and time function.
Continue reading “Date and Times functions in VBScript”
Category: VB Script
Looping in VBScript
When we need to run the group of code several times, we can use the following looping statements in VBScript.
For…Next statement,
For Each…Next Statement,
Do…Loop Statement and
While…Wend Statement Continue reading “Looping in VBScript”
Use operators in VBScript
VBScript supports almost all types of operators same as JavaScript or JScript including arithmetic, comparison, concatenation, and logical operators.
I have listed all operators with their example for use below: Continue reading “Use operators in VBScript”
Using VBScript in HTML document
We have read in the ‘Learn basics of the VBScript‘ that the VBScript can be used as client scripting( In Internet Explorer browser) as well as server scripting(IIS). In this article I’ll explain you how we can use the VbScript as client scripting. Continue reading “Using VBScript in HTML document”
Data types, Variables and Array in VBScript
In the previous chapter we have started the use of the VBScript in HTML documents. In this chapter we’ll discuss the datatypes, variables and Arrays in the VBScript. Continue reading “Data types, Variables and Array in VBScript”
Learn basics of the VBScript – The VbScript Tutorial
VBScript is the scripting language and has the same power as JavaScript and JScript. It is widely used with the ActiveX controls. You can also use VBScript as the client scripting in the Internet Explorer browsers and as web server scripting in the IIS.
I have used VBScript in the Grapecity ‘s Active reports and office add-ins. If you have little knowledge of the scripting languages than it is easy to learn. I’ll try to show you all the basic of the VBScript in following parts. Continue reading “Learn basics of the VBScript – The VbScript Tutorial”
Event handling for Appointment Custom form in Outlook
When you are working on the Appointment custom form in Outlook, you can use the following Events of the appointment item in your custom form’s script. Continue reading “Event handling for Appointment Custom form in Outlook”
How to move an appointment item from one to another shared calendar in Outlook custom form’s Script
You can use the following code to move the current appointment item from one calendar to shared calendar, let’s say you are working on Appointment custom form and want to move the current item to another exchange server’s shared calendar. You can use Item.Move function on the Item_write() procedure in the custom form’s vb script. Continue reading “How to move an appointment item from one to another shared calendar in Outlook custom form’s Script”