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:
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 :
{
ProgramForm = new frmProgram();
}
ProgramForm.ShowDialog();
> Session
if (SessionForm == null)
{
SessionForm = new frmSession();
}
SessionForm.ShowDialog();
> Subject
Code :
{
CoursesForm = new frmCourses();
}
CoursesForm.ShowDialog();
> Lecture
> New Lecture
Code :
{
LecturesForm = new frmLectures();
}
LecturesForm.ShowDialog();
> Assign Subjects to Lecture
Code :
{
LecturesSubjectForm = new FrmLecturesSubject();
}
LecturesSubjectForm.ShowDialog();
> Room's / Lab's
> Add Room
Code :
{
RoomForm = new frmRoom();
}
RoomForm.ShowDialog();
> Add Labs
Code :
{
LabsForm = new frmLabs();
}
LabsForm.ShowDialog();
> Semester's
> New Semesters
Code :
{
SemestersForm = new frmSemesters();
}
SemestersForm.ShowDialog();
> Add Semester Sections
Code :
{
SemesterSectionsForm = new frmSemesterSections();
}
SemesterSectionsForm.ShowDialog();
> Assign Semester to Program
Code :
{
ProgramSemestersForm = new frmProgramSemesters();
}
ProgramSemestersForm.ShowDialog();
> Assign Subject to Semester
Code :
{
ProgramSemesterSubjectForm = new frmProgramSemesterSubject();
}
ProgramSemesterSubjectForm.ShowDialog();
> Day's
> Add Day's
Code :
{
DaysForm = new frmDays();
}
DaysForm.ShowDialog();
> Day Time Slot
Code :
{
DayTimeSlotsForm = new frmDayTimeSlots();
}
DayTimeSlotsForm.ShowDialog();
> Time Table
Code:
{
AutoGenerateTimeTableForm = new frmAutoGenerateTimeTable();
}
AutoGenerateTimeTableForm.ShowDialog();
> Print's
> Print All Time Tables
Code :
{
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 :
{
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 :
{
PrintAllDaysTimeTablesForm = new frmPrintDaysWise();
}
PrintAllDaysTimeTablesForm.TopLevel = false;
panelHeader.Controls.Add(PrintAllDaysTimeTablesForm);
PrintAllDaysTimeTablesForm.Dock = DockStyle.Fill;
PrintAllDaysTimeTablesForm.FormBorderStyle = FormBorderStyle.None;
PrintAllDaysTimeTablesForm.BringToFront();
PrintAllDaysTimeTablesForm.Show();
Thanks a lot Dear friend .. hop you get gift of all your job in Jannah Inshaa-Allah
ReplyDeleteI'm going to write All this code of 35 video character by character .
ReplyDeletecontact to support team whatsapp+923143076781
ReplyDelete