I would like to know if can be possible changing the mousepointer from VBScript code... it would help me... Thanks!
in othin ihuan in tonaltin nican tzonquica
There is a CSS cursor property you could manipulate with VBScript. This works in IE5.5: Code: <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> Josh
<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>
Josh Get these: Mozilla Opera OpenBSD I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.
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...
Forum Rules