I hat to keep harping on this subject, but I am using the code below as the startup.
and it works great, what I have been searching for is a means to load the splash (Form1) overtop of the main form (Form2) like Microsoft products do. Both forms at the same time but one in front of the other.Code:Module Module1 Dim frm1 As New Form1() Dim frm2 As New Form2() Public Sub Main() frm1.ShowDialog() frm2.ShowDialog() End Sub End Module
I tried setting Form1 to TopMost but that doesn't work either. Any thoughts?




Reply With Quote