You could put it in tne form Activated Event.
'-- Use this only if you want to run it only one time
Dim run_once As Boolean
Private Sub Form1_Activated(ByVal sender As Object, ByVal e As
System.EventArgs) Handles MyBase.Activated
If Not run_once Then
'--- Do whatever you want
run_once = True
End If
End Sub
"B-Dog" <bd***@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
I want to run something once my form in completely loaded and drawn but
running at the end of form load doesn't do I guess cause of the large
dataset fill and the form isn't fully loaded. Where can I stick some code
so that I can run it after the form in fully drawn and loaded? I was told
there is no real way to know when it is "completely" loaded?