If there is a thread related to this one please reply back the url, thx
What i have is Parent form that is the owner of multiple child forms, im having trouble trying to display the form, it flashes and then disappears
Code:
PrivateSub spawnNewChild(ByVal Name AsString, ByVal IP AsString, ByVal Mess AsString)
Dim ownedForm AsNew frmChild
With ownedForm
.Name = IP
.Text = Name
.txtReceived.AppendText(Mess + vbCrLf)
EndWith
Me.AddOwnedForm(ownedForm)
With ownedForm
.Show()
.txtSend.Focus()
EndWith
EndSub
Any help would be great, thx Jaeman