Sunday, June 11, 2017
Canon PIXMA MG6150 Drivers
Canon PIXMA MG6150 Drivers
This article helps you in troubleshooting the Sidebar runtime error.
Symptom:
When you try to use a Windows Vista Sidebar gadget, you get the following error message:
"A Runtime Error has occurred. Do you wish to Debug? Line: <line number> Error: Unspecified error"
Cause for this:
This occurs when the gadgets code tries to set a gadget event to null. The events cannot be set to null.
Workaround:
You need to get into the gadgets .html file and assign a function to the Sidebar gadget event manually.
Type this code inside a <script> tag:
System.Gadget.ondock = myFunc;
System.Gadget.ondock = null;
This should take care of the problem.
When you try to use a Windows Vista Sidebar gadget, you get the following error message:
"A Runtime Error has occurred. Do you wish to Debug? Line: <line number> Error: Unspecified error"
Cause for this:
This occurs when the gadgets code tries to set a gadget event to null. The events cannot be set to null.
Workaround:
You need to get into the gadgets .html file and assign a function to the Sidebar gadget event manually.
Type this code inside a <script> tag:
System.Gadget.ondock = myFunc;
System.Gadget.ondock = null;
This should take care of the problem.
Go to link Download
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.