I would like to know if can be possible changing the mousepointer from VBScript code... it would help me...
Thanks!
Printable View
I would like to know if can be possible changing the mousepointer from VBScript code... it would help me...
Thanks!
There is a CSS cursor property you could manipulate with VBScript.
This works in IE5.5:
JoshCode:<html>
<head>
<title>Untitled</title>
<style>
h1 {
cursor: crosshair;
}
</style>
</head>
<body>
<h1>TESTSTSTSTS</h1>
<h2 onClick="this.style.cursor='crosshair'">BLAHBLAH</h2>
</body>
</html>
im trying to change the mouse pointer when click over a button doing:
Sub mybutton_OnClick
document.body.style.cursor="wait"
...
En sub
but doesn't work...