Click here to Skip to main content
15,920,628 members
Home / Discussions / C#
   

C#

 
AnswerRe: where to find Prefix C# (abbreviation of controls‎) Pin
PIEBALDconsult30-Mar-10 7:42
mvePIEBALDconsult30-Mar-10 7:42 
Questionchange the #region Text Color AND some particular part of code Pin
jojoba201129-Mar-10 23:04
jojoba201129-Mar-10 23:04 
AnswerRe: change the #region Text Color AND some particular part of code Pin
TheFoZ29-Mar-10 23:38
TheFoZ29-Mar-10 23:38 
QuestionRe: change the #region Text Color AND some particular part of code Pin
jojoba201130-Mar-10 0:05
jojoba201130-Mar-10 0:05 
AnswerRe: change the #region Text Color AND some particular part of code Pin
TheFoZ30-Mar-10 0:21
TheFoZ30-Mar-10 0:21 
QuestionRunning exe files Pin
kebedetesema29-Mar-10 22:53
kebedetesema29-Mar-10 22:53 
AnswerRe: Running exe files Pin
kevinnicol30-Mar-10 3:20
kevinnicol30-Mar-10 3:20 
Questionproblem with timer Pin
mjawadkhatri29-Mar-10 22:19
mjawadkhatri29-Mar-10 22:19 
Hi i am using 2 form first from is logo 2nd is my application, i want to first show my logo from then after few mints the 2nd form is show and 1st form is close, i am using timer but not working correctly and my coding is below.


private void logo_Load(object sender, EventArgs e)
{
Timer timer = new Timer();

timer.Tick += new EventHandler(timer1_Tick);
timer.Interval = (1000) * (1);
timer.Enabled = true;
timer.Start();

}

private void timer1_Tick(object sender, EventArgs e)
{
Form1 frm = new Form1();
if (timer1.Interval == 1000)
{
this.Hide();
frm.Show();
timer1.Enabled = false;
}
AnswerRe: problem with timer Pin
OriginalGriff29-Mar-10 22:29
mveOriginalGriff29-Mar-10 22:29 
GeneralRe: problem with timer Pin
mjawadkhatri29-Mar-10 22:39
mjawadkhatri29-Mar-10 22:39 
AnswerRe: problem with timer Pin
Deep Unknown30-Mar-10 2:47
Deep Unknown30-Mar-10 2:47 
GeneralRe: problem with timer Pin
mjawadkhatri30-Mar-10 19:32
mjawadkhatri30-Mar-10 19:32 
Question[SOLVED] Calling MethodBase's Invoke on a constructor (reflection) Pin
blackblizzard29-Mar-10 20:59
blackblizzard29-Mar-10 20:59 
AnswerRe: Calling MethodBase's Invoke on a constructor (reflection) Pin
PIEBALDconsult30-Mar-10 5:04
mvePIEBALDconsult30-Mar-10 5:04 
GeneralRe: Calling MethodBase's Invoke on a constructor (reflection) Pin
blackblizzard30-Mar-10 5:14
blackblizzard30-Mar-10 5:14 
GeneralRe: Calling MethodBase's Invoke on a constructor (reflection) Pin
PIEBALDconsult30-Mar-10 7:35
mvePIEBALDconsult30-Mar-10 7:35 
GeneralRe: Calling MethodBase's Invoke on a constructor (reflection) Pin
blackblizzard30-Mar-10 8:00
blackblizzard30-Mar-10 8:00 
GeneralRe: Calling MethodBase's Invoke on a constructor (reflection) Pin
PIEBALDconsult30-Mar-10 8:42
mvePIEBALDconsult30-Mar-10 8:42 
GeneralRe: Calling MethodBase's Invoke on a constructor (reflection) Pin
blackblizzard30-Mar-10 8:48
blackblizzard30-Mar-10 8:48 
GeneralRe: Calling MethodBase's Invoke on a constructor (reflection) Pin
PIEBALDconsult30-Mar-10 9:49
mvePIEBALDconsult30-Mar-10 9:49 
AnswerRe: Calling MethodBase's Invoke on a constructor (reflection) Pin
PIEBALDconsult30-Mar-10 10:24
mvePIEBALDconsult30-Mar-10 10:24 
GeneralRe: Calling MethodBase's Invoke on a constructor (reflection) Pin
blackblizzard30-Mar-10 22:07
blackblizzard30-Mar-10 22:07 
QuestionTotally custom windows forms Pin
r0seBa29-Mar-10 19:59
r0seBa29-Mar-10 19:59 
QuestionMail [modified] Pin
ravanth29-Mar-10 18:25
ravanth29-Mar-10 18:25 
AnswerRe: Mail Pin
PSK_29-Mar-10 18:37
PSK_29-Mar-10 18:37 

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.