objEvent Properties in vbscript?
Sorry if there's a better forum for this question, but I could not find one for vbscript questions. If somebody could point me to one, I'll repost the question there, otherwise, "Hello WROX???"
Can anybody tell me where I can find a list of properties for objEvent when referenced as it is below?
function onKeyPress(objEvent) {
var iKeyCode, strKey;
iKeyCode = objEvent.keyCode;
}
Yes, I know this is javascript, but I'd prefer a site that contains vbscript examples, if at all possible. And, yes, I also know that vbscript is not as portable as javascript. That's irrelevant because this is for an intranet application that will only run in IE. I just need to know what properties I can reference and the vbscript syntax to do so.
Thanks!
|