Auto Time Table Part 35 Design Home Form

   Auto Time Table Part 35 Design Home Form

Hi, Dear's here we learn how to implement Auto Time Table Generator in Visual Studio using C# Windows Form. Ilyasoft software company provide full project step by step training on our YouTube Channel ilyasoft software company so now subscribe, share and like for more project base tutorials






In this video we are going to design home form for more details click here:

First Download Auto Time Table Icon's.

Then Past this code in inside class:

                 frmCourses CoursesForm;
        frmDays DaysForm;
        frmLabs LabsForm;
        frmLectures LecturesForm;
        frmProgram ProgramForm;
        frmRoom RoomForm;
        frmSemesters SemestersForm;
        frmSession SessionForm;
        FrmLecturesSubject LecturesSubjectForm;
        frmProgramSemesters ProgramSemestersForm;
        frmProgramSemesterSubject ProgramSemesterSubjectForm;
        frmDayTimeSlots DayTimeSlotsForm;
        frmSemesterSections SemesterSectionsForm;
        frmTimeTableManualEntry TimeTableManualEntryForm;
        frmAutoGenerateTimeTable AutoGenerateTimeTableForm;
        frmPrintAllTimeTables PrintAllTimeTablesForm;
        frmPrintTeacherWiseTimeTable PrintAllTeacherTimeTablesForm;
        frmPrintDaysWise PrintAllDaysTimeTablesForm;

All Menu's : 

 > Program

        Code :  

            if (ProgramForm == null)
            {
                ProgramForm = new frmProgram();
            }
            ProgramForm.ShowDialog();

 > Session

        Code :  
            if (SessionForm == null)
            {
                SessionForm = new frmSession();
            }
            SessionForm.ShowDialog();

> Subject

        Code :  

           if (CoursesForm == null)
            {
                CoursesForm = new frmCourses();
            }
            CoursesForm.ShowDialog();


> Lecture 

        > New Lecture

        Code :  

           if (LecturesForm == null)
            {
                LecturesForm = new frmLectures();
            }
            LecturesForm.ShowDialog();

        > Assign Subjects to Lecture

        Code :  

            if (LecturesSubjectForm == null)
            {
                LecturesSubjectForm = new FrmLecturesSubject();
            }
            LecturesSubjectForm.ShowDialog();

> Room's / Lab's

        > Add Room

        Code :  

           if (RoomForm == null)
            {
                RoomForm = new frmRoom();
            }
            RoomForm.ShowDialog();

        > Add Labs

        Code :  

            if (LabsForm == null)
            {
                LabsForm = new frmLabs();
            }
            LabsForm.ShowDialog();

> Semester's

        > New Semesters

        Code :  

           if (SemestersForm == null)
            {
                SemestersForm = new frmSemesters();
            }
            SemestersForm.ShowDialog();

        > Add Semester Sections

        Code :  

            if (SemesterSectionsForm == null)
            {
                SemesterSectionsForm = new frmSemesterSections();
            }
            SemesterSectionsForm.ShowDialog();

        > Assign Semester to Program

        Code :  

            if (ProgramSemestersForm == null)
            {
                ProgramSemestersForm = new frmProgramSemesters();
            }
            ProgramSemestersForm.ShowDialog();

        > Assign Subject to Semester

        Code :  

            if (ProgramSemesterSubjectForm == null)
            {
                ProgramSemesterSubjectForm = new frmProgramSemesterSubject();
            }
            ProgramSemesterSubjectForm.ShowDialog();

> Day's

        > Add Day's

        Code :  

            if (DaysForm == null)
            {
                DaysForm = new frmDays();
            }
            DaysForm.ShowDialog();

        > Day Time Slot

        Code :  

            if (DayTimeSlotsForm == null)
            {
                DayTimeSlotsForm = new frmDayTimeSlots();
            }
            DayTimeSlotsForm.ShowDialog();

> Time Table

        Code:

       if (AutoGenerateTimeTableForm == null)
            {
                AutoGenerateTimeTableForm = new frmAutoGenerateTimeTable();
            }
            AutoGenerateTimeTableForm.ShowDialog();

> Print's

        > Print All Time Tables

        Code :  

            if (PrintAllTimeTablesForm == null)
            {
                PrintAllTimeTablesForm = new frmPrintAllTimeTables();
            }
            PrintAllTimeTablesForm.TopLevel = false;
            panelHeader.Controls.Add(PrintAllTimeTablesForm);
            PrintAllTimeTablesForm.Dock = DockStyle.Fill;
            PrintAllTimeTablesForm.FormBorderStyle = FormBorderStyle.None;
            PrintAllTimeTablesForm.BringToFront();
            PrintAllTimeTablesForm.Show();

        > Print All Teacher Time Tables

        Code :  

            if (PrintAllTeacherTimeTablesForm == null)
            {
                PrintAllTeacherTimeTablesForm = new frmPrintTeacherWiseTimeTable();
            }
            PrintAllTeacherTimeTablesForm.TopLevel = false;
            panelHeader.Controls.Add(PrintAllTeacherTimeTablesForm);
            PrintAllTeacherTimeTablesForm.Dock = DockStyle.Fill;
            PrintAllTeacherTimeTablesForm.FormBorderStyle = FormBorderStyle.None;
            PrintAllTeacherTimeTablesForm.BringToFront();
            PrintAllTeacherTimeTablesForm.Show();

        > Print All Days Wise Time Tables

        Code :  

            if (PrintAllDaysTimeTablesForm == null)
            {
                PrintAllDaysTimeTablesForm = new frmPrintDaysWise();
            }
            PrintAllDaysTimeTablesForm.TopLevel = false;
            panelHeader.Controls.Add(PrintAllDaysTimeTablesForm);
            PrintAllDaysTimeTablesForm.Dock = DockStyle.Fill;
            PrintAllDaysTimeTablesForm.FormBorderStyle = FormBorderStyle.None;
            PrintAllDaysTimeTablesForm.BringToFront();
            PrintAllDaysTimeTablesForm.Show();

Comments

  1. Thanks a lot Dear friend .. hop you get gift of all your job in Jannah Inshaa-Allah

    ReplyDelete
  2. I'm going to write All this code of 35 video character by character .

    ReplyDelete
  3. contact to support team whatsapp+923143076781

    ReplyDelete

Post a Comment