TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Israel
634
1.3k
219.8k
My splashscreen's form doesnt obey... What wrong?
Apr 25 2014 5:47 AM
Hi!
There is a little problem that I didnt understand why its happen.
I have two form: SplashScreen.cs and senha_entrada
When I run my program the
splashscreen
form appear then it's stop on himself. Mean that its doesnt jump to the segond form "
senha_entrada
". Its comeback only on the same form "
splashscreen
".
Please have a look on my code:
//This is form Splashscree's form
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ElSoft_FactuStocks
{
public partial class SplashScreen : Form
{
public SplashScreen()
{
InitializeComponent();
}
private void timer1_Tick(object sender, EventArgs e)
{
this.Close();
}
}
}
}
------------------------------
//the senha_entrada's form
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ElSoft_FactuStocks
{
public partial class Senha_entrada : Form
{
public Senha_entrada()
{
InitializeComponent();
}
private void Senha_entrada_Load(object sender, EventArgs e)
{
Senha_entrada Splash = new Senha_entrada();
Splash.Show();
}
}
}
Reply
Answers (
3
)
How To display the Sum Of Columns in Each Pages in RDLC
Word Automation using C#