Results 1 to 2 of 2

Thread: Splash Screen [Resolved]

Threaded View

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Dec 2003
    Posts
    127

    Splash Screen [Resolved]

    I hat to keep harping on this subject, but I am using the code below as the startup.

    Code:
    Module Module1
        Dim frm1 As New Form1()
        Dim frm2 As New Form2()
    
        Public Sub Main()
            frm1.ShowDialog()
            frm2.ShowDialog()
        End Sub
    End Module
    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.

    I tried setting Form1 to TopMost but that doesn't work either. Any thoughts?
    Last edited by teamdad; Jun 26th, 2004 at 12:42 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width