Welcome to MSDN Blogs
Sign in
|
Join
|
Help
Visual Studio to Internet Explore...
Learnings, Experiences at Microsoft
This Blog
About
Email
Syndication
RSS 2.0
Atom 1.0
Search
Tags
Automation
COM
Debugging JScript
IDE for JScript
JScript
Life at Microsoft
Object Test Bench
News
IE8 Beta1 is available with performance improvements and new jscript debugger for developers VS 2008 Beta 2 is out with more Intellisense for JScript and also supports Syntax Checking
Archives
March 2008 (3)
August 2007 (6)
April 2006 (3)
March 2006 (1)
February 2006 (1)
J# Bloggers
Gaurav Seth
Jaiprakash Sharma
Neela R
Varun Gupta
Prem Kumar
JScript Bloggers
JScript Team Blog
Jaiprakash Sharma
Gaurav Seth
Browse by Tags
All Tags
»
Automation
(RSS)
COM
JScript
Saturday, August 11, 2007 2:52 AM
Passing more than one parameter to the script callback
Passing more than one parameter to JScript function isn’t difficult at all after knowing how to pass the parameter. But there is only one trickier part here.
Posted by
Sheetal Kamat
|
2 Comments
Filed under:
JScript
,
COM
,
Automation
Attachment(s):
Sample.zip
Saturday, August 11, 2007 2:48 AM
Using Return Value of the Script Callback
To use the return value of the JScript Function we need to pass parameter VARIANT *pVarResult to the Invoke Method of the IDispatch.
Posted by
Sheetal Kamat
|
1 Comments
Filed under:
JScript
,
COM
,
Automation
Attachment(s):
Adder.zip
Saturday, August 11, 2007 2:42 AM
Passing Parameter to the Script Callback
What if one wants to call a function that takes parameter say alerter.
Posted by
Sheetal Kamat
|
1 Comments
Filed under:
JScript
,
COM
,
Automation
Attachment(s):
Alerter.zip
Saturday, August 11, 2007 2:27 AM
Script CallBack from COM
what if one wants to call a function say a callback which is in JScript from COM? Lets see how to achieve this in this post
Posted by
Sheetal Kamat
|
1 Comments
Filed under:
JScript
,
COM
,
Automation
Attachment(s):
Sample.zip
Saturday, August 11, 2007 2:19 AM
Calling functions of COM object from JScript
To be able to invoke functions on the instantiated COM function through JScript, we need to add the method to the ITest interface which is derived from IDispatch.
Posted by
Sheetal Kamat
|
4 Comments
Filed under:
JScript
,
COM
,
Automation
Attachment(s):
Sample.zip
Thursday, August 09, 2007 6:20 PM
Interoperability of JScript with COM
Recently I worked on using COM component in JScript. I couldn't find one stop solution or example for this and so thought for writing series of posts regarding this. I] Instantiating a COM class...
Posted by
Sheetal Kamat
|
1 Comments
Filed under:
JScript
,
COM
,
Automation
Attachment(s):
Sample.zip