Wednesday, 22 May 2013

C# how to make the starting eg Splash screen Form application


/*Instructions go to program.cs file then add this form which u want to introduce as the splash screen then
from gernal tools select the timer and add to form application then you have to enable the timmer property then interval to 5000 for to run it and to disable the maximize bar minimize bar etch upward bar u have to false control box */


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace save
{
    public partial class splshScrn : Form
    {
        public splshScrn()
        {
         
            InitializeComponent();
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}


No comments:

Post a Comment