The information in this article applies to:
SUMMARYSometimes you may want to change the code that an event handler is pointing to. To do this the function that the event handler points to must change. VBScript does not support this, but JScript does. MORE INFORMATION
In the following example, the next time this button is pressed, you want to
invoke this function with a different value for arguments. This function
should get called with the value "value 2." The following code demonstrates
two intuitive but incorrect methods of doing this. The two methods are
commented.
The following three lines build a string for use with the Function object in JScript and will change the handler function that onClick points to. Replace the two commented statements above with these three statements to correctly change the handler function.
REFERENCESFor further reference material on JScript, see the following Web page: http://msdn.microsoft.com/scripting/ Additional query words: function pointer handler changing modifying dynamic
Keywords : kbcode kbAccess200fix kbJScript100 kbJScript200 kbJScript300 kbVBScript kbIE500 |
Last Reviewed: May 4, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |