I have an ActiveX RaiseEvent for a function to span out a form. After doing this I want it to put focus on the first field in the form.
Please someone tell me this is possible
Here's what I'm trying to do and won't work. I would expect the focus to go onto the "Focus_Here" textbox and it does not after the ActiveX calls the Event_FileWritten. The form displays just fine, just the focus won't go into the field:
<script>
Sub Event_Activate()
divForm.innerHTML = "<input type=text name=textbox id='Focus_Here' />"
form.Focus_Here.focus
End Sub
</script>
<html>
<body>
<form name=form>
<div id=divForm></div>
</form>
</body>
</html>
ASKED:
Oct 29 2009 9:34 PM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _