H Hrvoje Voda Feb 24, 2005 #1 I would like to put some message while I'm reading a form. When it shows the message show disapired. Hrcko
I would like to put some message while I'm reading a form. When it shows the message show disapired. Hrcko
I Ignacio Machin \( .NET/ C# MVP \) Feb 24, 2005 #2 hi, give more details about this, it's aweb or wn based app , etc cheers,
M Mohamoss Feb 24, 2005 #3 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
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
H Hrvoje Voda Feb 24, 2005 #4 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.
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.
C Carlos J. Quintero [.NET MVP] Feb 24, 2005 #5 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
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
I Ignacio Machin \( .NET/ C# MVP \) Feb 24, 2005 #6 Hi, That is named "splash screen" do a search in google and you will find plenty examples of how to do it. cheers,
Hi, That is named "splash screen" do a search in google and you will find plenty examples of how to do it. cheers,