C#

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

thanx soo much for the help
i need to make a splash screen in a c# program
the program connects on a data base
also i need to make the retrived Data from the Data base to be as links when
i click on it it open the data in the next table
 
tota,

My suggestion for a splash screen is to create a splash form with a timer
object on it to determine how much time to show the form. Then on your main
form object before InitializeComponent create an instance of your splash form
and call Show() on it.

I will not answer the question about the database links here since there is
another post on it.

I hope this helps.
 
Back
Top