Sign in
Visual Studio to Internet Explore...
Learnings, Experiences at Microsoft
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
Automation
COM
Debugging JScript
IDE for JScript
JScript
Life at Microsoft
Object Test Bench
Browse by Tags
MSDN Blogs
>
Visual Studio to Internet Explore...
>
All Tags
>
jscript
Tagged Content List
Blog Post:
IE8 JScript Debugger - Under the Hood
Sheetal Kamat
I have posted about the JScript Debugger Design for IE8 Developers Tools on the JScript Team blog ( here ). Hope it is nice read up for you. I would be writing more on Debugger very soon. Stay tuned.
on
18 Mar 2008
Blog Post:
JScript Debugger Functionality in IE8
Sheetal Kamat
Deepak, Program Manager, from our JScript Team has blogged here in detail about the functionalities the Script Debugger in the IE8 Developer Tools provide. He has also links to the other resources like white paper etc in his blog. This would be interesting read for all the web developers looking at in...
on
13 Mar 2008
Blog Post:
IE8 Beta1 is available
Sheetal Kamat
IE8 Beta1 is now available here . It has remarkable script improvements in JScript performance. It also features handy JScript Debugger for developers. I will soon be writing more about JScript Debugger - what went into designing this debugger the way it is, features etc. So stay tuned. Mean...
on
7 Mar 2008
Blog Post:
Passing more than one parameter to the script callback
Sheetal Kamat
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. I haven’t investigated why this is trickier but it is this way and one must know this other wise the results can be confusing. Lets say out...
on
10 Aug 2007
Blog Post:
Using Return Value of the Script Callback
Sheetal Kamat
To use the return value of the JScript Function we need to pass parameter VARIANT *pVarResult to the Invoke Method of the IDispatch. Lets implement an adder that takes one integer as parameter and return the result as paramter + 1. function adder(a) { alert( "a = " + a); return a +...
on
10 Aug 2007
Blog Post:
Passing Parameter to the Script Callback
Sheetal Kamat
Earlier post talked about how to call a callback script from the COM component. What if one wants to call a function that takes parameter say alerter. function alerter(b) { alert( "b = " + b); } Now to call this function we need to use other parameters of Invoke method of IDispatch...
on
10 Aug 2007
Blog Post:
Script CallBack from COM
Sheetal Kamat
Earlier we saw how to call a function on COM class from JScript. But 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. To make COM and JScript interoperable and allow COM component to call JScript function we need to pass...
on
10 Aug 2007
Blog Post:
Calling functions of COM object from JScript
Sheetal Kamat
After earlier post on instantiating COM class, let’s move ahead with invoking the functions over this COM object. 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. Lets start with...
on
10 Aug 2007
Blog Post:
Interoperability of JScript with COM
Sheetal Kamat
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. Instantiating a COM class. COM class should implement IDispatch and be registered with ProgID, so that JScript can invoke it using...
on
9 Aug 2007
Page 1 of 1 (9 items)