FancyPrairie
Programmer
In the window_onload event I want to set the innerText of a span tag and then run some code. The problem is that the span tag does not reflect the change until the other code has completed running. Is there something like a DoEvents that forces the page to update before any more code is processed? Or is there another event I could place the code in?
Here's an example of my code:
Here's an example of my code:
Code:
Sub window_onload()
lblMySpanTag.innerText = "abc"
Call RunSomeCode
End Sub
Sub RunSomeCode()
End Sub