Click here to Skip to main content
15,919,931 members
Home / Discussions / C#
   

C#

 
GeneralRe: unloading the form from memory Pin
DaveyM6911-Feb-08 3:10
professionalDaveyM6911-Feb-08 3:10 
QuestionBrowsing for ODBC Data Source Names (DSN) Pin
Programm3r11-Feb-08 0:57
Programm3r11-Feb-08 0:57 
AnswerRe: Browsing for ODBC Data Source Names (DSN) Pin
Programm3r11-Feb-08 1:49
Programm3r11-Feb-08 1:49 
Generalcopy files from one dir to another directory Pin
gottimukkala11-Feb-08 0:50
gottimukkala11-Feb-08 0:50 
GeneralRe: copy files from one dir to another directory Pin
Xmen Real 11-Feb-08 1:00
professional Xmen Real 11-Feb-08 1:00 
GeneralRe: copy files from one dir to another directory Pin
gottimukkala11-Feb-08 2:01
gottimukkala11-Feb-08 2:01 
GeneralRe: copy files from one dir to another directory Pin
Xmen Real 11-Feb-08 5:27
professional Xmen Real 11-Feb-08 5:27 
QuestionHow to calculate form loading time Pin
sindhutiwari11-Feb-08 0:26
sindhutiwari11-Feb-08 0:26 
Hi I have created a splash screen on my own i want my original screen to be appear completely before the splash screen vanishes ....please if any one knows how to calculate the loading time of the form then please do let me know

this is my code for the splash screen


>>> Timer is calling this function .....so its the starting form of mine

private void check(object sender, EventArgs e)
{

if (i < 1 && status == true)
{
this.Opacity = i;
i = i + 0.1;
if (i > 0.9)
{
status = false;
}
}
else if (status == false)
{
this.Opacity = i;
i = i - 0.1;

}
if (i < 0.1)
{
timer1.Stop();
this.Hide();
printsoftwareparent psf = new printsoftwareparent();
psf.Show();

}
}

its me sid

GeneralRe: How to calculate form loading time Pin
Giorgi Dalakishvili11-Feb-08 0:31
mentorGiorgi Dalakishvili11-Feb-08 0:31 
GeneralRe: How to calculate form loading time Pin
sindhutiwari11-Feb-08 0:34
sindhutiwari11-Feb-08 0:34 
GeneralRe: How to calculate form loading time Pin
Giorgi Dalakishvili11-Feb-08 0:45
mentorGiorgi Dalakishvili11-Feb-08 0:45 
GeneralRe: How to calculate form loading time Pin
phannon8611-Feb-08 0:40
professionalphannon8611-Feb-08 0:40 
GeneralRe: How to calculate form loading time Pin
Giorgi Dalakishvili11-Feb-08 0:43
mentorGiorgi Dalakishvili11-Feb-08 0:43 
GeneralRe: How to calculate form loading time Pin
Xmen Real 11-Feb-08 0:44
professional Xmen Real 11-Feb-08 0:44 
GeneralRe: How to calculate form loading time Pin
sindhutiwari11-Feb-08 0:54
sindhutiwari11-Feb-08 0:54 
GeneralRe: How to calculate form loading time Pin
Xmen Real 11-Feb-08 1:10
professional Xmen Real 11-Feb-08 1:10 
GeneralRe: How to calculate form loading time Pin
sindhutiwari11-Feb-08 1:34
sindhutiwari11-Feb-08 1:34 
GeneralRe: How to calculate form loading time Pin
girish12319-Feb-08 23:31
girish12319-Feb-08 23:31 
Generalrestart application Pin
Maddie from Dartford11-Feb-08 0:25
Maddie from Dartford11-Feb-08 0:25 
GeneralRe: restart application Pin
Giorgi Dalakishvili11-Feb-08 0:34
mentorGiorgi Dalakishvili11-Feb-08 0:34 
GeneralRe: restart application Pin
Xmen Real 11-Feb-08 0:54
professional Xmen Real 11-Feb-08 0:54 
GeneralRe: restart application Pin
Ravenet11-Feb-08 3:00
Ravenet11-Feb-08 3:00 
GeneralRe: restart application Pin
Xmen Real 11-Feb-08 5:31
professional Xmen Real 11-Feb-08 5:31 
GeneralRe: restart application Pin
Ravenet11-Feb-08 13:32
Ravenet11-Feb-08 13:32 
GeneralRe: restart application Pin
Xmen Real 11-Feb-08 14:49
professional Xmen Real 11-Feb-08 14:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.