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”

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”