-
Notifications
You must be signed in to change notification settings - Fork 0
/
MDIForm1.frm
177 lines (158 loc) · 4.22 KB
/
MDIForm1.frm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
VERSION 5.00
Begin VB.MDIForm MDIForm1
BackColor = &H8000000C&
Caption = "Semester Process Management"
ClientHeight = 7095
ClientLeft = 225
ClientTop = 870
ClientWidth = 13755
LinkTopic = "MDIForm1"
Picture = "MDIForm1.frx":0000
StartUpPosition = 3 'Windows Default
WindowState = 2 'Maximized
Begin VB.Menu Department
Caption = "Department"
Visible = 0 'False
Begin VB.Menu department_add
Caption = "Add"
End
Begin VB.Menu Department_View_Edit_Delete
Caption = "View/Edit/Delete"
End
End
Begin VB.Menu course
Caption = "Course"
Visible = 0 'False
Begin VB.Menu Course_add
Caption = "Add"
End
Begin VB.Menu course_View_Edit_Delete
Caption = "View/Edit/Delete"
End
End
Begin VB.Menu subject
Caption = "Subject"
Visible = 0 'False
Begin VB.Menu add
Caption = "Add"
End
Begin VB.Menu subject_View_Edit_Delete
Caption = "View/Edit/Delete"
End
Begin VB.Menu subject_allot_teacher
Caption = "Allot Teacher"
End
End
Begin VB.Menu faculty
Caption = "Faculty"
Visible = 0 'False
Begin VB.Menu teacher_add
Caption = "Add"
End
Begin VB.Menu teacher_View_Edit_Delete
Caption = "View/Edit/Delete"
End
Begin VB.Menu class_coordinator
Caption = "Class Coordinator"
Begin VB.Menu classcoordinator_add
Caption = "Add"
End
Begin VB.Menu classcoordinator_View_Edit_Delete
Caption = "View/Edit/Delete"
End
End
End
Begin VB.Menu student
Caption = "Student"
Visible = 0 'False
Begin VB.Menu atudent_add
Caption = "Add"
End
Begin VB.Menu student_View_Edit_Delete
Caption = "View/Edit/Delete"
End
Begin VB.Menu student_change_sem
Caption = "Change sem batch wise"
End
Begin VB.Menu student_CR
Caption = "CR"
Begin VB.Menu CR_add
Caption = "Add"
End
Begin VB.Menu CR_View_Edit_Delete
Caption = "View/Edit/Delete"
End
End
End
Begin VB.Menu settings
Caption = "Settings"
Visible = 0 'False
Begin VB.Menu admin_change_password
Caption = "Change Password"
End
End
Begin VB.Menu logout
Caption = "Log Out"
Index = 0
End
End
Attribute VB_Name = "MDIForm1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub add_Click()
frm_add_sub.Show
End Sub
Private Sub admin_change_password_Click()
frm_change_pw.Show
End Sub
Private Sub atudent_add_Click()
frm_add_student.Show
End Sub
Private Sub classcoordinator_add_Click()
frm_add_CC.Show
End Sub
Private Sub classcoordinator_View_Edit_Delete_Click()
frm_view_cc.Show
End Sub
Private Sub Course_add_Click()
Frm_add_course.Show
End Sub
Private Sub course_View_Edit_Delete_Click()
frm_view_courses.Show
End Sub
Private Sub CR_add_Click()
frm_add_CR.Show
End Sub
Private Sub CR_View_Edit_Delete_Click()
frm_view_cr.Show
End Sub
Private Sub department_add_Click()
Frm_add_dept.Show
End Sub
Private Sub Department_View_Edit_Delete_Click()
frm_view_dept.Show
End Sub
Private Sub logout_Click(Index As Integer)
Unload Me
frm_login.Show
End Sub
Private Sub student_change_sem_Click()
frm_change_sem.Show
End Sub
Private Sub student_View_Edit_Delete_Click()
frm_view_students.Show
End Sub
Private Sub subject_allot_teacher_Click()
Frm_sub_assignment.Show
End Sub
Private Sub subject_View_Edit_Delete_Click()
frm_view_subject.Show
End Sub
Private Sub teacher_add_Click()
frm_add_teacher.Show
End Sub
Private Sub teacher_View_Edit_Delete_Click()
frm_view_teacher.Show
End Sub