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

C#

 
QuestionHow to calculate form loading time Pin
sindhutiwari11-Feb-08 0:26
sindhutiwari11-Feb-08 0:26 
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 
Thanks for the suggestions ...in mean time i have done something its working satisfactory but not as i expected

private void check(object sender, EventArgs e)
{
if (i < 1 && stat== true)
{
this.Opacity = i;
i = i + 0.1;
if (i > 0.9)
{
stat = false;
printsoftwareparent psp = new printsoftwareparent();
psp.Show();
this.BringToFront();
}
}

else if (stat == false)
{
this.Opacity = i;
i = i - 0.1;

}
if (i < 0.1)
{
timer1.Stop();
this.Hide();

}
}

its me sid

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 
GeneralTextboxs and buttons visible true and false problem Pin
raghu.chanti11-Feb-08 0:07
raghu.chanti11-Feb-08 0:07 
GeneralRe: Textboxs and buttons visible true and false problem Pin
imsathy11-Feb-08 0:33
imsathy11-Feb-08 0:33 
GeneralMaking Textbox Multilingual Pin
D i x y10-Feb-08 22:50
D i x y10-Feb-08 22:50 
GeneralDataGridView - DataGridViewComboBoxCell Pin
Harvey Saayman10-Feb-08 22:39
Harvey Saayman10-Feb-08 22:39 
Generalhelp for opengl in c# Pin
faisalharoon10-Feb-08 20:50
faisalharoon10-Feb-08 20:50 
GeneralRe: help for opengl in c# Pin
User 665810-Feb-08 22:00
User 665810-Feb-08 22:00 
GeneralRe: help for opengl in c# Pin
Pete O'Hanlon10-Feb-08 22:03
mvePete O'Hanlon10-Feb-08 22:03 

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.