calling form

  • Thread starter Thread starter Hrvoje Voda
  • Start date Start date
H

Hrvoje Voda

I would like to put some message while I'm reading a form.
When it shows the message show disapired.

Hrcko
 
hi,

give more details about this, it's aweb or wn based app , etc

cheers,
 
Hi Hrcko
I guess this is a bit hard to follow, would you explain more what the
functionality you want to get is.
Mohamed M.Mahfouz
 
It is a windows form.
I would like to do someting like : " Please wait, loading in progress..."
And then when a form is load it disapired.
 
You need a second form:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Dim frm2 As New Form2

frm2.Show()

' Do whatever here instead of sleeping
System.Threading.Thread.Sleep(2000)

frm2.Close()
frm2.Dispose()

End Sub


--

Carlos J. Quintero

MZ-Tools 4.0: Productivity add-ins for Visual Studio .NET
You can code, design and document much faster.
http://www.mztools.com
 
Hi,

That is named "splash screen" do a search in google and you will find
plenty examples of how to do it.

cheers,
 
Back
Top