Mu-selim / Empolyee-Management-System-Next

Next is a employee management system windows application which is built and released using (C#) .net framework and MS SQL server as a database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Next (empolyee management system)

Next is a employee management system windows application which is built and released using (C#) .net framework and MS SQL server as a database

In this project I tried to apply my knowledge to make a practical real world project. I used Microsoft dot net technology as much I know. I also used programming concepts such as OOP, methods, loops and SQL queries.

Next (employee management system) system includes:

  • Multi-Forms
  • User Control
  • Dashboards
  • System Drawing
  • panels
  • UI techniques

Video illustrates application working Youtube.

Some Screens from Application

_1

namespace Next
{
    public partial class NextApp : Form
    {
        public NextApp()
        {
            InitializeComponent();
        }
        private void exit_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }

        private void login_Click(object sender, EventArgs e)
        {
            login obj = new login();
            this.Hide();
            obj.Show();
        }

        private void register_Click(object sender, EventArgs e)
        {
            register obj = new register();
            this.Hide();
            obj.Show();
        }
    }
}

_2 _6 _8 _9 _10 _11 _15

About

Next is a employee management system windows application which is built and released using (C#) .net framework and MS SQL server as a database

License:MIT License


Languages

Language:C# 100.0%