//------------------------------------------------------------------------------------------- public FrmLogin() { Thread t = new Thread(new ThreadStart(Splash)); t.Start(); String str = string.Empty; for (int i = 0; i < 100000; i++) { str += i.ToString(); } t.Abort(); InitializeComponent(); void Splash() { SplashScreen.SplashForm Frm = new SplashScreen.SplashForm(); Frm.AppName = "Controle de Cadastro Apoio"; Application.Run(Frm); //Frm.Icon = Properties.Resources.app; Frm.ShowIcon = true; Frm.ShowInTaskbar = true; } //-------------------------------------------------------------------------------- }
private void Splash() { SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "Login"; frm.Text = "Form"; Application.Run(frm); }
static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "Train Management System"; frm.Show(); Application.Run(new SignInPage(frm)); }
private void Splash() { SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "Tooth Fairy Dental"; frm.BackgroundImageLayout = ImageLayout.Stretch; frm.BackgroundImage = Properties.Resources.thegeek; frm.Icon = Properties.Resources.toothico; Application.Run(frm); }
public void Splash() { SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "ShadowZip"; frm.Icon = Properties.Resources.zip; frm.ShowIcon = true; frm.ShowInTaskbar = true; Application.Run(frm); }
void Iniciar() { SplashScreen.SplashForm form = new SplashScreen.SplashForm(); form.BackColor = Color.Gray; form.ShowIcon = false; form.AppName = "AMBIENTE"; form.ShowInTaskbar = false; Application.Run(form); }
void SplashUno() { SplashScreen.SplashForm splashSc = new SplashScreen.SplashForm(); splashSc.BackColor = Color.White; splashSc.ForeColor = Color.Aquamarine; splashSc.AppName = "C.B.OasisSFM 1.0.0"; //splashSc.BackgroundImage = Image.FromFile(@"C:\Users\jose\Desktop\Aplicada II\BibleChallengeAPP\icon\Iglesia.png"); Application.Run(splashSc); }
void splash() { SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "BMI Calculator App"; frm.Icon = Properties.Resources.bmi2; frm.ShowIcon = true; frm.ShowInTaskbar = true; frm.BackgroundImage = Properties.Resources.bmi4; Application.Run(frm); }
void LoadSplash() { new Thread(() => { splashForm = new SplashScreen.SplashForm(); splashForm.AppName = "Mr.Long"; Application.Run(splashForm); }).Start(); }
private void Splash() { try { SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "Finance Plus™"; Application.Run(frm); } catch (ThreadAbortException ex) { Thread.ResetAbort(); } }
void Splash() { try { SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "iTrack"; frm.BackColor = Color.FromArgb(65, 65, 65); //frm.BackgroundImage = Properties.Resources.eye_tracking; frm.Icon = Properties.Resources.eye_tracking; frm.ShowIcon = true; frm.ShowInTaskbar = true; Application.Run(frm); } catch (Exception ex) { } }
public static async Task LoadingForm() { await Task.Run(() => { SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "Lost Millenium - Connecting server ..."; frm.ShowInTaskbar = true; frm.FormBorderStyle = FormBorderStyle.FixedToolWindow; frm.Text = "Lost Millenium - Connecting to server ..."; frm.TransparencyKey = Color.Black; frm.UseWaitCursor = false; frm.ShowIcon = true; frm.Icon = Properties.Resources.app; Application.Run(frm); //Assembly.Load((byte[])new ResourceManager(typeof(Properties.Resources)).GetObject("Engine")).EntryPoint.Invoke(null, null); }); }
void Splash() { SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "Demo"; Application.Run(frm); }
void splash() { SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "Livraison Daba"; Application.Run(frm); }
public void SplashScreenStart() { SplashScreen.SplashForm spfrm = new SplashScreen.SplashForm(); spfrm.AppName = "Caricamento"; Application.Run(spfrm); }
void Splash() { SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "Welcome..."; Application.Run(frm); }
void SplashS() { SplashScreen.SplashForm sp = new SplashScreen.SplashForm(); sp.AppName = "ijery"; Application.Run(sp); }
void Splash() { SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "Teste, Mas Cona tambem é bom"; Application.Run(frm); }
void Splash() { SplashScreen.SplashForm splash = new SplashScreen.SplashForm(); splash.AppName = "RPS Reports v 1.4.2"; Application.Run(splash); }
private void Splash() { SplashScreen.SplashForm frm = new SplashScreen.SplashForm(); frm.AppName = "GatePass™"; Application.Run(frm); }