hello,
in vb.net i create a new form instance in my sub main.
the form appears but then dissapears again... what is this?
why doesn't it stop when it once appears ?
thx,
inter
in vb.net i create a new form instance in my sub main.
Visual Basic:
Public Module programme
Public Sub main()
Dim formulier As New Form1
formulier.Show()
End Sub
End Module
the form appears but then dissapears again... what is this?
why doesn't it stop when it once appears ?
thx,
inter