KARTU BIMBINGAN TUGAS AKHIR MAHASISWA PEMBAHASAN PADA ASISTENSI MENGENAI, PADA BAB

Size: px
Start display at page:

Download "KARTU BIMBINGAN TUGAS AKHIR MAHASISWA PEMBAHASAN PADA ASISTENSI MENGENAI, PADA BAB"

Transcription

1 62 KEMENTERIAN PENDIDIKAN NASIONAL UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM Jl. Bioteknologi No.1 Kampus USU Padang Bulan Medan Telp. (061) , , Fax (061) KARTU BIMBINGAN TUGAS AKHIR MAHASISWA Nama Mahasiswa : Mustika Fajriah Nomor Stambuk : Judul Tugas Akhir : Sistem Penjadwalan Berbasis Data Pada SMP Swasta Bina Sejahtera Medan Dosen Pembimbing : Drs. Suwarno Arriswoyo, M.Si Tanggal Mulai Bimbingan : 25 Januari 2011 Tanggal Selesai Bimbingan : 21 Mei 2011 No TANGGAL ASISTEN BIMBINGAN PEMBAHASAN PADA ASISTENSI MENGENAI, PADA BAB PARAF DOSEN PEMBIMBING KETERANGAN 1 20 Jan 2011 Pengajuan Proposal ACC 2 25 Jan 2011 ACC Proposal ACC 3 9 Mei 2011 Bab 1-2 ACC 4 13 Mei 2011 Bab 3-4 ACC 5 18 Mei 2011 Bab 5-6 ACC 6 21 Mei 2011 Uji Program ACC * Kartu ini harap dikembalikan ke Departemen Matematika bila bimbingan telah selesai. Diketahui: Departemen Matematika FMIPA USU Ketua, Disetujui: Pembimbing Utama/ Penanggung Jawab Prof. Drs. Tulus, Vordipl. Math., M.Si., Ph.D Drs. Suwarno Arriswoyo, M.Si NIP NIP

2 63 SURAT KETERANGAN Hasil Uji Program Tugas Akhir Yang bertanda tangan dibawah ini, menerangkan bahwa Mahasiswa Tugas Akhir Program D-III Teknik Informatika / Statistika : Nama : Mustika Fajriah NIM : Program Studi : D-III Teknik Informatika Judul Tugas Akhir : Sistem Penjadwalan Guru Berbasis Data Pada SMP Swata Bina Sejahtera Medan Telah melaksanakan test program Tugas Akhir Mahasiswa tersebut di atas pada tanggal 21 Mei 2011 Dengan Hasil : Sukses / Gagal Demikian diterangkan untuk digunakan melengkapi syarat pendaftaran Ujian Meja Hijau Tugas Akhir Mahasiswa bersangkutan di Departemen Matematika FMIPA USU Medan. Medan, Mei 2011 Dosen Pembimbing Drs. Suwarno Arriswoyo, M.Si NIP

3 64 LISTING PROGRAM Form Data Guru Private Sub cmdhps_click() Adodc1.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource= " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_guru" If Adodc1.Recordset.EOF Then MsgBox "Data tidak ada" Else Adodc1.Recordset.Delete Adodc1.RecordSource = "select * from tabel_guru" cbokguru.text = "" Text1.Text = "" Text2.Text = "" Text3.Text = "" cbokguru.setfocus Private Sub cmdkluar_click() Unload Me Private Sub cmdsmpn_click() Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0;Data Source = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_guru" 'Adodc1.Recordset.Update Adodc1.RecordSource = "select * from tabel_guru" Adodc1.Recordset.AddNew

4 65 Adodc1.Recordset!Kd_guru = cbokguru.text Adodc1.Recordset!Nama = Text1.Text Adodc1.Recordset!Pendidikan_Tertinggi = Text2.Text Adodc1.Recordset!Mata_Pelajaran = Text3.Text Adodc1.Recordset.Update Adodc1.RecordSource = "Select * from tabel_guru" cbokguru.text = "" Text1.Text = "" Text2.Text = "" Text3.Text = "" cbokguru.setfocus Private Sub Form_Load() Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0;Data Source = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_guru" Set DataGrid1.DataSource = Adodc1 Adodc1.Visible = False listcombo Private Sub sl_click() Unload Me Private Sub listcombo() cbokguru.clear With cbokguru.additem "RL", 0.AddItem "TN", 1.AddItem "GS", 2.AddItem "MS", 3.AddItem "IH", 4.AddItem "TD", 5.AddItem "SY", 6.AddItem "NM", 7

5 66.AddItem "ST", 8.AddItem "HS", 9.AddItem "MR", 10.AddItem "SM", 11.AddItem "YA", 12.AddItem "FA", 13.AddItem "FL", 14.AddItem "RI", 15.AddItem "AS", 16.AddItem "SP", 17.AddItem "EH", 18.AddItem "NS", 19 End With Private Sub Text1_GotFocus() If cbokguru = "RL" Then Text1.Text = "Rulianto" ElseIf cbokguru = "TN" Then Text1.Text = "Trisnawati" ElseIf cbokguru = "GS" Then Text1.Text = " Ganda Subrata S.Pd" ElseIf cbokguru = "MS" Then Text1.Text = "Maman Sudarman, S.Pd" ElseIf cbokguru = "IH" Then Text1.Text = " Irmawati Harahap, S.Pd" ElseIf cbokguru = "ST" Then Text1.Text = "Dra. Susdianti" ElseIf cbokguru = "HS" Then Text1.Text = "Dra. Halimatusa'diah" ElseIf cbokguru = "FA" Then Text1.Text = "Parida,S.Pd" ElseIf cbokguru = "FL" Then Text1.Text = "Farida Hanum Lubis, BA" ElseIf cbokguru = "RI" Then Text1.Text = "Drs. Ripa Irwansyah" ElseIf cbokguru = "AS" Then Text1.Text = "Anita Kemala Sari,S.Pd" ElseIf cbokguru = "SN" Then Text1.Text = "Syahrul Nizat, S.Pd"

6 67 ElseIf cbokguru = "EH" Then Text1.Text = "Erlina Hastuti, S.Pd" ElseIf cbokguru = "NS" Then Text1.Text = "Ir. Narti Sembiring, S.Pd" ElseIf cbokguru = "TD" Then Text1.Text = " Tina Asmara Dewi" ElseIf cbokguru = "SY" Then Text1.Text = "Suyanti, SE " ElseIf cbokguru = "NM" Then Text1.Text = "Nuraini Matondang S.Ag" ElseIf cbokguru = "MR" Then Text1.Text = "Drs. Maad Rais" ElseIf cbokguru = "SM" Then Text1.Text = "Drs. Sumardi" ElseIf cbokguru = "YA" Then Text1.Text = "Yudha Aruji Winata, S.Pd" ElseIf cbokguru = "SP" Then Text1.Text = "Supiyanti, S.pd" Text1.Locked = True Private Sub Text2_GotFocus() If cbokguru = "RL" Then ElseIf cbokguru = "GS" Then ElseIf cbokguru = "TN" Then ElseIf cbokguru = "MS" Then ElseIf cbokguru = "IH" Then Text2.Text = "S1 " ElseIf cbokguru = "ST" Then ElseIf cbokguru = "HS" Then ElseIf cbokguru = "FA" Then ElseIf cbokguru = "FL" Then

7 68 Text2.Text = "D2" ElseIf cbokguru = "RI" Then ElseIf cbokguru = "AS" Then ElseIf cbokguru = "SN" Then ElseIf cbokguru = "EH" Then ElseIf cbokguru = "NS" Then ElseIf cbokguru = "TD" Then ElseIf cbokguru = "SY" Then ElseIf cbokguru = "NM" Then ElseIf cbokguru = "MR" Then ElseIf cbokguru = "SM" Then ElseIf cbokguru = "YA" Then ElseIf cbokguru = "SP" Then Text2.Locked = True Private Sub Text3_GotFocus() If cbokguru = "RL" Then Text3.Text = "fisika" ElseIf cbokguru = "GS" Then Text3.Text = "Matematika" ElseIf cbokguru = "TN" Then Text3.Text = "Matematika" ElseIf cbokguru = "MS" Then Text3.Text = "Matematika" ElseIf cbokguru = "IH" Then Text3.Text = "IPS"

8 69 ElseIf cbokguru = "ST" Then Text3.Text = "IPS" ElseIf cbokguru = "HS" Then Text3.Text = "IPS" ElseIf cbokguru = "FA" Then Text3.Text = "B. ind" ElseIf cbokguru = "FL" Then Text3.Text = "B. ind" ElseIf cbokguru = "RI" Then Text3.Text = "B. ind" ElseIf cbokguru = "AS" Then Text3.Text = "B. ing" ElseIf cbokguru = "SN" Then Text3.Text = "B. ing" ElseIf cbokguru = "EH" Then Text3.Text = "IPA" ElseIf cbokguru = "NS" Then Text3.Text = "Agro/IPA" ElseIf cbokguru = "TD" Then Text3.Text = "IPS" ElseIf cbokguru = "SY" Then Text3.Text = "Tikom" ElseIf cbokguru = "NM" Then Text3.Text = "ALQ" ElseIf cbokguru = "MR" Then Text3.Text = "Pend. Agama Islam" ElseIf cbokguru = "SM" Then Text3.Text = "Kepala Sekolah" ElseIf cbokguru = "YA" Then Text3.Text = "Penjaskes" ElseIf cbokguru = "SP" Then Text3.Text = "Pks" Text3.Locked = True

9 70 Form Data Mata Pelajaran Private Sub cmdhps_click() Adodc1.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource= " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_mt_pel" If Adodc1.Recordset.EOF Then MsgBox "Data tidak ada" Else Adodc1.Recordset.Delete Adodc1.RecordSource = "select * from tabel_mt_pel" cbokguru.text = "" txtnguru.text = "" cbokguru.setfocus Private Sub cmdkluar_click() Unload Me Private Sub cmdsmpn_click() Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0;Data Source = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_mt_pel " 'Adodc1.Recordset.Update Adodc1.RecordSource = "select * from tabel_mt_pel" Adodc1.Recordset.AddNew Adodc1.Recordset!Kd_mata_pel = cbokguru.text Adodc1.Recordset!Nama_pelajaran = txtnguru.text Adodc1.Recordset.Update Adodc1.RecordSource = "Select * from tabel_mt_pel"

10 71 cbokguru.text = "" txtnguru.text = "" cbokguru.setfocus Private Sub Form_Load() Adodc1.ConnectionString="Provider=Microsoft.JET.OLEDB.4.0;DataSource = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource="select * from tabel_mt_pel order by Kd_mata_pel" Set DataGrid1.DataSource = Adodc1 Adodc1.Visible = False listcombo Private Sub listcombo() cbokguru.clear With cbokguru.additem "Mat", 0.AddItem "IPS", 1.AddItem "AGI", 2.AddItem "PAI", 3.AddItem "Tikom", 4.AddItem "B.Ind", 5.AddItem "B.Ing", 6.AddItem "Bio", 7.AddItem "KTK", 8.AddItem "Penjas", 9.AddItem "PKN", 10.AddItem "Fis", 11 End With Private Sub txtnguru_gotfocus() If cbokguru = "Mat" Then txtnguru = "Matematika" ElseIf cbokguru = "IPS" Then txtnguru = "Ilmu Pengetahuan Sosial" ElseIf cbokguru = "AGI" Then txtnguru = "Agro Industri"

11 72 ElseIf cbokguru = "PAI" Then txtnguru = "Pendidikan Agama Islam" ElseIf cbokguru = "Tikom" Then txtnguru = "Teknologi Informasi & Komputer" ElseIf cbokguru = "B.Ind" Then txtnguru = "Bahasa Indonesia" ElseIf cbokguru = "B.Ing" Then txtnguru = "Bahasa Inggris" ElseIf cbokguru = "Bio" Then txtnguru = "Biologi" ElseIf cbokguru = "KTK" Then txtnguru = "Kerajinan Tangan & Kesenian" ElseIf cbokguru = "Penjas" Then txtnguru = "Pendidkan Jasmani" ElseIf cbokguru = "PKN" Then txtnguru = "Pendidikan Kewarganegaraan" ElseIf cbokguru = "Fis" Then txtnguru = "Fisika" txtnguru.locked = True Form Data Ruang Private Sub cmdhps_click() Adodc1.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource= " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_dt_ruang" If Adodc1.Recordset.EOF Then MsgBox "Data tidak ada" Else Adodc1.Recordset.Delete Adodc1.RecordSource = "select * from tabel_dt_ruang" Combo1.Text = "" Text1.Text = ""

12 73 Text2.Text = "" Combo1.SetFocus Private Sub cmdkluar_click() Unload Me Private Sub cmdsmpn_click() Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0;Data Source = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_dt_ruang " 'Adodc1.Recordset.Update Adodc1.RecordSource = "select * from tabel_dt_ruang" Adodc1.Recordset.AddNew Adodc1.Recordset!Kode = Combo1.Text Adodc1.Recordset!Kelas = Text1.Text Adodc1.Recordset!kapasitas = Text2.Text Adodc1.Recordset.Update Adodc1.RecordSource = "Select * from tabel_dt_ruang" Combo1.Text = "" Text1.Text = "" Text2.Text = "" Combo1.SetFocus Private Sub Form_Load() Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0;Data Source = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_dt_ruang order by kode" Set DataGrid1.DataSource = Adodc1 Adodc1.Visible = False listcombo

13 74 Private Sub listcombo() Combo1.Clear With Combo1.AddItem "VII-1", 0.AddItem "VII-2", 1.AddItem "VIII-1", 2.AddItem "VIII-2", 3.AddItem "VIII-3", 4.AddItem "IX-1", 5.AddItem "IX-2", 6.AddItem "IX-3", 7 '.AddItem "R-09", 8 '.AddItem "R-10", 9 End With Private Sub Text1_GotFocus() If Combo1.Text = "VII-1" Then Text1.Text = "Ruang VII-1" ElseIf Combo1.Text = "VII-2" Then Text1.Text = "Ruang VII-2" ElseIf Combo1.Text = "VIII-1" Then Text1.Text = "Ruang VIII-1" ElseIf Combo1.Text = "VIII-2" Then Text1.Text = "Ruang VIII-2" ElseIf Combo1.Text = "VIII-3" Then Text1.Text = "Ruang VIII-3" ElseIf Combo1.Text = "IX-1" Then Text1.Text = "Ruang IX-1" ElseIf Combo1.Text = "IX-2" Then Text1.Text = "Ruang IX-2" ElseIf Combo1.Text = "IX-3" Then Text1.Text = "Ruang IX-3" Text1.Locked = True Private Sub Text2_GotFocus() If Text1.Text = "Ruang VII-1" Then Text2.Text = " 40 Siswa "

14 75 ElseIf Text1.Text = "Ruang VII-2" Then Text2.Text = " 40 Siswa " ElseIf Text1.Text = "Ruang VIII-1" Then Text2.Text = " 40 Siswa " ElseIf Text1.Text = "Ruang VIII-2" Then Text2.Text = " 40 Siswa " ElseIf Text1.Text = "Ruang VIII-3" Then Text2.Text = " 40 Siswa " ElseIf Text1.Text = "Ruang IX-1" Then Text2.Text = " 40 Siswa " ElseIf Text1.Text = "Ruang IX-2" Then Text2.Text = " 40 Siswa " ElseIf Text1.Text = "Ruang IX-3" Then Text2.Text = " 40 Siswa " Text2.Locked = True Form Data Waktu Private Sub cmdhps_click() Adodc1.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource= " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_waktu" If Adodc1.Recordset.EOF Then MsgBox "Data tidak ada" Else Adodc1.Recordset.Delete Adodc1.RecordSource = "select * from tabel_waktu" cbokwaktu.text = "" Text1.Text = "" Text2.Text = "" cbokwaktu.setfocus

15 76 Private Sub cmdkluar_click() Unload Me Private Sub cmdsmpn_click() Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0;Data Source = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_waktu" 'Adodc1.Recordset.Update Adodc1.RecordSource = "select * from tabel_waktu" Adodc1.Recordset.AddNew Adodc1.Recordset!kd_waktu = cbokwaktu.text Adodc1.Recordset!jam = Text1.Text Adodc1.Recordset!ktgri_waktu = Text2.Text Adodc1.Recordset.Update Adodc1.RecordSource = "Select * from tabel_waktu" cbokwaktu.text = "" Text1.Text = "" Text2.Text = "" cbokwaktu.setfocus Private Sub Form_Load() Adodc1.ConnectionString="Provider=Microsoft.JET.OLEDB.4.0;DataSource = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_waktu order by kd_waktu" Set DataGrid1.DataSource = Adodc1 Adodc1.Visible = False For i = 1 To 10 cbokwaktu.additem i Next i

16 77 Private Sub Text1_GotFocus() If cbokwaktu = "1" Then Text1.Text = " " ElseIf cbokwaktu = "2" Then Text1.Text = " " ElseIf cbokwaktu = "3" Then Text1.Text = " " ElseIf cbokwaktu = "4" Then Text1.Text = " " ElseIf cbokwaktu = "5" Then Text1.Text = " " ElseIf cbokwaktu = "6" Then Text1.Text = " " ElseIf cbokwaktu = "7" Then Text1.Text = " " ElseIf cbokwaktu = "8" Then Text1.Text = " " ElseIf cbokwaktu = "9" Then Text1.Text = " " ElseIf cbokwaktu = "10" Then Text1.Text = " " Text1.Locked = True Private Sub Text2_GotFocus() If Text1.Text = " " Then Text2.Text = "Jam I" ElseIf Text1.Text = " " Then Text2.Text = "Jam II" ElseIf Text1.Text = " " Then Text2.Text = "Jam III" ElseIf Text1.Text = " " Then Text2.Text = "Waktu Istirahat I" ElseIf Text1.Text = " " Then Text2.Text = "Jam IV" ElseIf Text1.Text = " " Then Text2.Text = "Jam V" ElseIf Text1.Text = " " Then Text2.Text = "Waktu Istirahat II"

17 78 ElseIf Text1.Text = " " Then Text2.Text = "Jam ke VI" ElseIf Text1.Text = " " Then Text2.Text = "Jam VI" ElseIf Text1.Text = " " Then Text2.Text = "Jam VII" Text2.Locked = True Form Roster VII-1 Private Sub cmdhps_click() Adodc1.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource= " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_roster_vii1" If Adodc1.Recordset.EOF Then MsgBox "Data tidak ada" Else Adodc1.Recordset.Delete Adodc1.RecordSource = "select * from tabel_roster_vii1" Combo1.Text = "" Text1.Text = "" Text2.Text = "" Text3.Text = "" Text4.Text = "" Text5.Text = "" Text6.Text = "" Text7.Text = "" Combo1.SetFocus Private Sub cmdkluar_click() Unload Me

18 79 Private Sub cmdsmpn_click() Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0;Data Source = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_roster_vii1 order by Hari " 'Adodc1.Recordset.Update Adodc1.RecordSource = "select * from tabel_roster_vii1 order by Hari" Adodc1.Recordset.AddNew Adodc1.Recordset!Hari = Combo1.Text Adodc1.Recordset!JamI = Text1.Text Adodc1.Recordset!JamII = Text2.Text Adodc1.Recordset!JamIII = Text3.Text Adodc1.Recordset!JamIV = Text4.Text Adodc1.Recordset!JamV = Text5.Text Adodc1.Recordset!JamVI = Text6.Text Adodc1.Recordset!JamVII = Text7.Text Adodc1.Recordset.Update Adodc1.RecordSource = "Select * from tabel_roster_vii1 order by Hari" Combo1.Text = "" Text1.Text = "" Text2.Text = "" Text3.Text = "" Text4.Text = "" Text5.Text = "" Text6.Text = "" Text7.Text = "" Combo1.SetFocus Private Sub Form_Load() Adodc1.ConnectionString="Provider=Microsoft.JET.OLEDB.4.0;DataSource = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource ="select * from tabel_roster_vii1 order by Hari "

19 80 Set DataGrid1.DataSource = Adodc1 Adodc1.Visible = False listcombo Private Sub listcombo() Combo1.Clear With Combo1.AddItem "senin", 0.AddItem "selasa", 1.AddItem "rabu", 2.AddItem "kamis", 3.AddItem "jumat", 4.AddItem "sabtu", 5 End With Private Sub Text1_GotFocus() If Combo1 = "senin" Then Text1.Text = "Upacara Bendera " ElseIf Combo1 = "selasa" Then Text1.Text = "BIO" ElseIf Combo1 = "rabu" Then Text1.Text = "TIKOM" ElseIf Combo1 = "kamis" Then Text1.Text = "IPS" ElseIf Combo1 = "jumat" Then Text1.Text = "B. IND" ElseIf Combo1 = "sabtu" Then Text1.Text = "PENJAS" Text1.Locked = True Private Sub Text2_GotFocus() If Combo1 = "senin" Then Text2.Text = " MM " ElseIf Combo1 = "selasa" Then Text2.Text = " BP "

20 81 ElseIf Combo1 = "rabu" Then Text2.Text = "TIKOM" ElseIf Combo1 = "kamis" Then Text2.Text = "IPS" ElseIf Combo1 = "jumat" Then Text2.Text = "B. IND" ElseIf Combo1 = "sabtu" Then Text2.Text = "PENJAS" Text2.Locked = True Private Sub Text3_GotFocus() If Combo1 = "senin" Then Text3.Text = " MM " ElseIf Combo1 = "selasa" Then Text3.Text = " B. ING" ElseIf Combo1 = "rabu" Then Text3.Text = "PAI" ElseIf Combo1 = "kamis" Then Text3.Text = "B. ING" ElseIf Combo1 = "jumat" Then Text3.Text = "KTK" ElseIf Combo1 = "sabtu" Then Text3.Text = "IPS" Text3.Locked = True Private Sub Text4_GotFocus() If Combo1 = "senin" Then Text4.Text = " IPS " ElseIf Combo1 = "selasa" Then Text4.Text = "B. IND " ElseIf Combo1 = "rabu" Then Text4.Text = "MM" ElseIf Combo1 = "kamis" Then Text4.Text = "MM" ElseIf Combo1 = "jumat" Then Text4.Text = "KTK"

21 82 ElseIf Combo1 = "sabtu" Then Text4.Text = "FIS" Text4.Locked = True Private Sub Text5_GotFocus() If Combo1 = "senin" Then Text5.Text = " IPS " ElseIf Combo1 = "selasa" Then Text5.Text = "B. IND" ElseIf Combo1 = "rabu" Then Text5.Text = " BIO " ElseIf Combo1 = "kamis" Then Text5.Text = "PKN" ElseIf Combo1 = "jumat" Then Text5.Text = "AGI" ElseIf Combo1 = "sabtu" Then Text5.Text = "ALQ" Text5.Locked = True Private Sub Text6_GotFocus() If Combo1 = "senin" Then Text6.Text = " B. ING " ElseIf Combo1 = "selasa" Then Text6.Text = "FIS" ElseIf Combo1 = "rabu" Then Text6.Text = "PAI" ElseIf Combo1 = "kamis" Then Text6.Text = "PKN" ElseIf Combo1.Text = "Kamis" Then MsgBox "Hari Kamis hanya 6 mata pelajaran", vbcritical, "Warning" Combo1.SetFocus ElseIf Combo1.Text = "jumat" Then MsgBox "Hari Jumat hanya 5 mata pelajaran", vbcritical, "Warning" Combo1.SetFocus ElseIf Combo1.Text = "sabtu" Then

22 83 MsgBox "Hari Sabtu hanya 5 mata pelajaran", vbcritical, "Warning" Combo1.SetFocus Text6.Locked = True Private Sub Text7_GotFocus() If Combo1 = "senin" Then Text7.Text = " B. ING " ElseIf Combo1 = "selasa" Then Text7.Text = "BIO" ElseIf Combo1 = "rabu" Then Text7.Text = "MM" ElseIf Combo1.Text = "Kamis" Then MsgBox "Hari Kamis hanya 6 mata pelajaran", vbcritical, "Warning" Combo1.SetFocus ElseIf Combo1.Text = "jumat" Then MsgBox "Hari Jumat hanya 5 mata pelajaran", vbcritical, "Warning" Combo1.SetFocus ElseIf Combo1.Text = "sabtu" Then MsgBox "Hari Sabtu hanya 5 mata pelajaran", vbcritical, "Warning" Combo1.SetFocus Text7.Locked = True Form Jadwal Guru Private Sub cmdhapus_click() Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0 ; Data Source = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_penjadwalan where Kode = '" & cbokode & "'" If Adodc1.Recordset.EOF Then MsgBox "Data Tidak Ada" Else Adodc1.Recordset.Delete

23 84 Adodc1.RecordSource = " select * from tabel_penjadwalan order by Kode" cbokguru.text = "" cbohari.text = "" cbokelas.text = "" cbopljrn.text = "" Combo1.Text = "" Combo2.Text = "" Combo3.Text = "" Label5.Caption = "" Label7.Caption = "" Label9.Caption = "" Private Sub cmdkeluar_click() Unload Me Private Sub cmdsmpn_click() Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0;Data Source = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_penjadwalan where Kode = '" & cbokode & "'" Adodc1.RecordSource = "select * from tabel_penjadwalan order by Kode" Adodc1.Recordset.AddNew Adodc1.Recordset!Kode = cbokguru.text Adodc1.Recordset!Hari = cbohari.text Adodc1.Recordset!Kelas = cbokelas.text Adodc1.Recordset!Pelajaran = cbopljrn.text Adodc1.Recordset!Jam_ke = Combo1.Text Adodc1.Recordset!Jam_ke2 = Combo2.Text Adodc1.Recordset!Jam_ke3 = Combo3.Text

24 85 Adodc1.Recordset!ktgri_waktu1 = Label5.Caption Adodc1.Recordset!ktgri_waktu2 = Label7.Caption Adodc1.Recordset!ktgri_waktu3 = Label9.Caption Adodc1.Recordset.Update Adodc1.RecordSource="select*from tabel_penjadwalan order by Kode" cbokguru.text = "" cbohari.text = "" cbokelas.text = "" cbopljrn.text = "" Combo1.Text = "" Combo2.Text = "" Combo3.Text = "" Label5.Caption = "" Label7.Caption = "" Label9.Caption = "" Private Sub Combo1_Change() Adodc6.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\db_tatika.mdb" Adodc6.RecordSource = "select * from tabel_waktu where ktgri_waktu = '" & Combo1.Text & "'" Adodc6.Refresh If Adodc6.Recordset.EOF Then Label5.Caption = "" Adodc6.RecordSource = "select * from tabel_waktu" Adodc6.Recordset.Requery Else Label5.Caption = Adodc6.Recordset!jam Private Sub Combo1_Click() Adodc6.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource= " & App.Path & "\db_tatika.mdb" Adodc6.RecordSource = "select * from tabel_waktu where ktgri_waktu = '" & Combo1.Text & "'"

25 86 Adodc6.Refresh If Adodc6.Recordset.EOF Then Label5.Caption = "" Adodc6.RecordSource = "select * from tabel_waktu" Adodc6.Recordset.Requery Else Label5.Caption = Adodc6.Recordset!jam Private Sub Combo2_Change() Adodc6.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource= " & App.Path & "\db_tatika.mdb" Adodc6.RecordSource = "select * from tabel_waktu where ktgri_waktu = '" & Combo2.Text & "'" Adodc6.Refresh If Adodc6.Recordset.EOF Then Label7.Caption = "" Adodc6.RecordSource = "select * from tabel_waktu" Adodc6.Recordset.Requery Else Label7.Caption = Adodc6.Recordset!jam Private Sub Combo2_Click() Adodc6.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource= " & App.Path & "\db_tatika.mdb" Adodc6.RecordSource = "select * from tabel_waktu where ktgri_waktu = '" & Combo2.Text & "'" Adodc6.Refresh If Adodc6.Recordset.EOF Then Label7.Caption = "" Adodc6.RecordSource = "select * from tabel_waktu" Adodc6.Recordset.Requery Else Label7.Caption = Adodc6.Recordset!jam

26 87 Private Sub Combo3_Change() Adodc6.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource= " & App.Path & "\db_tatika.mdb" Adodc6.RecordSource = "select * from tabel_waktu where ktgri_waktu = '" & Combo3.Text & "'" Adodc6.Refresh If Adodc6.Recordset.EOF Then Label9.Caption = "" Adodc6.RecordSource = "select * from tabel_waktu" Adodc6.Recordset.Requery Else Label9.Caption = Adodc6.Recordset!jam Private Sub Combo3_Click() Adodc6.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource= " & App.Path & "\db_tatika.mdb" Adodc6.RecordSource = "select * from tabel_waktu where ktgri_waktu = '" & Combo3.Text & "'" Adodc6.Refresh If Adodc6.Recordset.EOF Then Label9.Caption = "" Adodc6.RecordSource = "select * from tabel_waktu" Adodc6.Recordset.Requery Else Label9.Caption = Adodc6.Recordset!jam Private Sub Form_Activate() Adodc1.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource= " & App.Path & "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_guru " Adodc5.Refresh Do While Not Adodc5.Recordset.EOF cbokguru.additem Adodc5.Recordset!Kd_guru Adodc5.Recordset.MoveNext Loop

27 88 Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0 ; Data Source= " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource ="select*from tabel_mt_pel order by Kd_mata_pel" Adodc2.Refresh Do While Not Adodc2.Recordset.EOF cbopljrn.additem Adodc2.Recordset!Kd_mata_pel Adodc2.Recordset.MoveNext Loop Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0 ; Data Source= " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_dt_ruang order by kode" Adodc3.Refresh Do While Not Adodc3.Recordset.EOF cbokelas.additem Adodc3.Recordset!Kode Adodc3.Recordset.MoveNext Loop Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0 ; Data Source= " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_roster_vii1 order by Hari" Adodc4.Refresh Do While Not Adodc4.Recordset.EOF cbohari.additem Adodc4.Recordset!Hari Adodc4.Recordset.MoveNext Loop Adodc1.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0;Data Source = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_waktu " Adodc6.Refresh Do While Not Adodc6.Recordset.EOF Combo1.AddItem Adodc6.Recordset!ktgri_waktu Combo2.AddItem Adodc6.Recordset!ktgri_waktu Combo3.AddItem Adodc6.Recordset!ktgri_waktu Adodc6.Recordset.MoveNext Loop

28 89 Private Sub Form_Load() Adodc1.ConnectionString = " Provider = Microsoft.JET.OLEDB.4.0 ; Data Source = " + App.Path + "\db_tatika.mdb" Adodc1.RecordSource = "select * from tabel_penjadwalan order by Kode" Set DataGrid1.DataSource = Adodc1 Adodc1.Visible = False Adodc2.Visible = False Adodc3.Visible = False Adodc4.Visible = False Adodc5.Visible = False Adodc6.Visible = False Adodc2.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0 ; Data source = " + App.Path + "\db_tatika.mdb" Adodc2.RecordSource = "select * from tabel_mt_pel" Adodc2.Refresh Adodc3.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0 ; Data source = " + App.Path + "\db_tatika.mdb" Adodc3.RecordSource = "select * from tabel_dt_ruang" Adodc3.Refresh Adodc4.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0 ; Data source = " + App.Path + "\db_tatika.mdb" Adodc4.RecordSource = "select * from tabel_roster_vii1" Adodc4.Refresh Adodc5.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0 ; Data Source = " + App.Path + "\db_tatika.mdb" Adodc5.RecordSource = "tabel_guru" Adodc5.Refresh Adodc6.ConnectionString = "Provider = Microsoft.JET.OLEDB.4.0;Data Source = " + App.Path + "\db_tatika.mdb" Adodc6.RecordSource = "tabel_waktu" Adodc6.Refresh

29 90 Form Report Private Sub Command1_Click() Select Case Combo1.ListIndex Case 0 If Combo1.Text = "laporan tabel guru" Then Case 1 If Combo1.Text = "laporan data mata pelajaran" Then Case 2 If Combo1.Text = "laporan data ruang" Then Case 3 If Combo1.Text = "laporan data waktu" Then Case 4 If Combo1.Text = "laporan roster pelajaran kelas VII-1" Then Case 5 If Combo1.Text = "laporan roster pelajaran kelas VII-2" Then Case 6 If Combo1.Text = "laporan roster pelajaran kelas VIII-1" Then Case 7 If Combo1.Text = "laporan roster pelajaran kelas VIII-2" Then Case 8 If Combo1.Text = "laporan roster pelajaran kelas VIII-3" Then Case 9 If Combo1.Text = "laporan roster pelajaran kelas IX-1" Then Case 10 If Combo1.Text = "laporan roster pelajaran kelas IX-2" Then Case 11 If Combo1.Text = "laporan roster pelajaran kelas IX-3" Then

30 91 Case 12 If Combo1.Text = "laporan data jadwal guru" Then End Select Private Sub Command2_Click() If Combo1.Text = "laporan tabel guru" Then Report_tb_guru.PrintReport (True) If Combo1.Text = "laporan data mata pelajaran" Then Report_Pelajaran.PrintReport (True) If Combo1.Text = "laporan data ruang" Then Report_Ruang.PrintReport (True) If Combo1.Text = "laporan data waktu" Then Report_waktu.PrintReport (True) If Combo1.Text = "laporan roster pelajaran kelas VII-1" Then Report_VII1.PrintReport (True) If Combo1.Text = "laporan roster pelajaran kelas VII-2" Then Report_VII2.PrintReport (True) If Combo1.Text = "laporan roster pelajaran kelas VIII-1" Then Report_VIII1.PrintReport (True) If Combo1.Text = "laporan roster pelajaran kelas VIII-2" Then Report_VIII2.PrintReport (True) If Combo1.Text = "laporan roster pelajaran kelas VIII-3" Then Report_VIII3.PrintReport (True) If Combo1.Text = "laporan roster pelajaran kelas IX-1" Then Report_IX1.PrintReport (True) If Combo1.Text = "laporan roster pelajaran kelas IX-2" Then Report_IX2.PrintReport (True)

31 92 If Combo1.Text = "laporan roster pelajaran kelas IX-3" Then Report_IX3.PrintReport (True) If Combo1.Text = "laporan data jadwal guru" Then Report_Penjadwalan.PrintReport (True) Private Sub Form_Load() listlaporan Private Sub sl1_click() Unload Me Private Sub listlaporan() Combo1.Clear With Combo1.AddItem "laporan tabel guru", 0.AddItem "laporan data mata pelajaran", 1.AddItem "laporan data ruang", 2.AddItem "laporan data waktu", 3.AddItem "laporan roster pelajaran kelas VII-1", 4.AddItem "laporan roster pelajaran kelas VII-2", 5.AddItem "laporan roster pelajaran kelas VIII-1", 6.AddItem "laporan roster pelajaran kelas VIII-2", 7.AddItem "laporan roster pelajaran kelas VIII-3", 8.AddItem "laporan roster pelajaran kelas IX-1", 9.AddItem "laporan roster pelajaran kelas IX-2", 10.AddItem "laporan roster pelajaran kelas IX-3", 11.AddItem "laporan data jadwal guru", 12 End With

LISTING PROGRAM. 1. Tampilan Awal. 2. Menu Login. Public Class Awal

LISTING PROGRAM. 1. Tampilan Awal. 2. Menu Login. Public Class Awal LISTING PROGRAM 1. Tampilan Awal Public Class Awal Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick ProgressBar1.Increment(10) If ProgressBar1.Value

More information

L A M P I R A N. Universitas Sumatera Utara

L A M P I R A N. Universitas Sumatera Utara L A M P I R A N LISTING PROGRAM 1. Listing Pembuka Dim strado$ Dim n As Integer Private Sub Close_Click() End Private Sub Command1_Click() If Option1.Value = True Then Search.Show If Option2.Value = True

More information

/******************** Tunable parameters: ********************/

/******************** Tunable parameters: ********************/ 1. Smartass2.c / drivers/cpufreq/cpufreq_smartass2.c Copyright (C) 2010 Google, Inc. This software is licensed under the terms of the GNU General Public License version 2, as published by the Free Software

More information

Kartu Bimbingan Tugas Akhir Mahasiswa

Kartu Bimbingan Tugas Akhir Mahasiswa KEMENTRIAN PENDIDIKAN DAN KEBUDAYAAN UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM Jln. Bioteknologi No. 1 Kampus USU Padang Bulan Medan-20155 Telp. (061) 8214290, 8211212, 8211414

More information

LAMPIRAN LIST PROGRAM

LAMPIRAN LIST PROGRAM LAMPIRAN LIST PROGRAM 1. Modules Public conn As New ADODB.Connection Public rstb_pendekatan As ADODB.Recordset Public rstb_solusi As ADODB.Recordset Public rstb_alasan As ADODB.Recordset Public rstb_pilihan

More information

LISTING PROGRAM. 1. Form Login. Private Sub BATAL_Click() End End Sub

LISTING PROGRAM. 1. Form Login. Private Sub BATAL_Click() End End Sub LISTING PROGRAM 1. Form Login Private Sub BATAL_Click() End Sub Bersih() USERNAME.Text = "" PASSWORD.Text = "" Private Sub Form_Load() Bersih Private Sub OK_Click() Sql = "select*from tbl_login where username='"

More information

LAMPIRAN 1 PENGARUH KETERSEDIAAN KOLEKSI PERPUSTAKAAN TERHADAP MINAT BACA SISWA SMP NEGERI 30 MEDAN

LAMPIRAN 1 PENGARUH KETERSEDIAAN KOLEKSI PERPUSTAKAAN TERHADAP MINAT BACA SISWA SMP NEGERI 30 MEDAN LAMPIRAN 1 ANGKET PENELITIAN PENGARUH KETERSEDIAAN KOLEKSI PERPUSTAKAAN TERHADAP MINAT BACA SISWA SMP NEGERI 30 MEDAN Saya mengharapkan kesediaan Saudara untuk mengisi angket dalam rangka penelitian tetang

More information

L A M P I R A N. Universitas Sumatera Utara

L A M P I R A N. Universitas Sumatera Utara L A M P I R A N LAMPIRAN 1 Kode program frmbrowse (frmbrowse.frm) Public strsql As String Public xreturn As String Public xreturnname As String Public xreturnaddress As String Public cfilter As Integer

More information

On Railway Reservation. U G D C A Semester VI. Roll No DA

On Railway Reservation. U G D C A Semester VI. Roll No DA On Railway Reservation U G D C A Semester VI Submitted to: Dr. P. K. Sen (Co-ordinator) Submitted By: (Name of Student) Roll No. 14836DA Contents 1. Acknowledgement 2. Objectives 3. Declaration 4. Analysis

More information

LAMPIRAN. Universitas Sumatera Utara

LAMPIRAN. Universitas Sumatera Utara 61 LAMPIRAN 61 Listing Program Form 1 ( Barang ) Dim CnSuzuya As ADODB.Connection Dim CommBar As ADODB.Command Dim rsbar As ADODB.Recordset Dim StrSql As String Dim psn As Byte Private Sub Form_Load()

More information

LAMPIRAN FORM 1 Universitas Sumatera Universitas Utara

LAMPIRAN FORM 1 Universitas Sumatera Universitas Utara LAMPIRAN FORM 1 Private Sub Text2_KeyPress(KeyAscii As Integer) If KeyAscii = vbkeyreturn Then Set tbladministrator = New ADODB.Recordset With tbladministrator.open "SELECT * FROM Administrator WHERE userid

More information

SEBARAN MATAKULIAH PROGRAM STUDI SARJANA TEKNIK SIPIL (S1) DI JURUSAN TEKNIK SIPIL UNIVERSITAS LAMPUNG

SEBARAN MATAKULIAH PROGRAM STUDI SARJANA TEKNIK SIPIL (S1) DI JURUSAN TEKNIK SIPIL UNIVERSITAS LAMPUNG Saturday, November 00 0: - Last Updated Saturday, November 00 0:5 SEBARAN MATAKULIAH PROGRAM STUDI SARJANA TEKNIK SIPIL (S) DI JURUSAN TEKNIK SIPIL UNIVERSITAS LAMPUNG SEMESTER I (SEMESTER GANJIL) KODE

More information

LAMPIRAN A LISTING PROGRAM. Universitas Sumatera Utara

LAMPIRAN A LISTING PROGRAM. Universitas Sumatera Utara LAMPIRAN A LISTING PROGRAM LISTING PROGRAM MENU UTAMA Dim T As String Dim i Private Sub Dafsis_Click() Form5.Show Private Sub Dafwai_Click() Form5.Show Private Sub Dasis_Click() Form2.Show Private Sub

More information

L A M P I R A N. Universitas Sumatera Utara

L A M P I R A N. Universitas Sumatera Utara L A M P I R A N A TAMPILAN PROGRAM 1. Form Login 2. Form Menu Utama 3. Form Entry Data Mahasiswa Baru 4. Form Kasir 5. Form Transaksi 6. Laporan cetak mahasiswa 6. Laporan cetak mahasiswa 7. Laporan cetak

More information

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM LAMPIRAN A : LISTING PROGRAM 1. Form Login Private Sub Siap() txtnama.enabled = True txtpswd.enabled = True Private Sub BlmSiap() txtnama.enabled = False txtpswd.enabled = False Private Sub Kosong() txtnama

More information

Visual Basic 6 Lecture 7. The List Box:

Visual Basic 6 Lecture 7. The List Box: The List Box: The function of the List Box is to present a list of items where the user can click and select the items from the list or we can use the List Box control as a simple memory to save data.

More information

ต วอย างการสร างฟอร ม เมน การใช งาน

ต วอย างการสร างฟอร ม เมน การใช งาน ต วอย างการสร างฟอร ม เมน การใช งาน Option Explicit Dim conn As New ADODB.Connection Dim rs As New ADODB.Recordset Dim Sql As String Private Sub Command6_Click() Form2.Hide Form3.Show Private Sub Command7_Click()

More information

Tutorial, Source code, Request Program Visual Basic

Tutorial, Source code, Request Program Visual Basic Tutorial, Source code, Request Program Visual Basic Oleh : Moh. A Azis Membuat Form Data Barang Program Persediaan Barang Form Data Barang digunakan untuk menyimpan data barang dan memberikan info mengenai

More information

-- phpmyadmin SQL Dump. -- version Host: localhost. -- Generation Time: Jan 16, 2013 at 06:36

-- phpmyadmin SQL Dump. -- version Host: localhost. -- Generation Time: Jan 16, 2013 at 06:36 phpmyadmin SQL Dump version 3.2.0.1 http://www.phpmyadmin.net Host: localhost Generation Time: Jan 16, 2013 at 06:36 Server version: 5.1.37 PHP Version: 5.3.0 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!40101

More information

LAMPIRAN A LISTING PROGRAM

LAMPIRAN A LISTING PROGRAM A-1 LAMPIRAN A LISTING PROGRAM FUNGSI public void StopWatchStart() stopwatch.reset(); stopwatch.start(); Cursor.Current = Cursors.WaitCursor; txtlog.text = ""; public void StopWatchStop(string Title) stopwatch.stop();

More information

The Implementation of Alert System for LAN Network Monitoring Using the Dude Based

The Implementation of Alert System for LAN Network Monitoring Using the Dude Based IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS The Implementation of Alert System for LAN Network Monitoring Using the Dude Based Email To cite this article: E A Z Hamidi et

More information

belajar html5 158E7F2D743EA866244C3EE391F064DC Belajar Html5 1 / 6

belajar html5 158E7F2D743EA866244C3EE391F064DC Belajar Html5 1 / 6 Belajar Html5 1 / 6 2 / 6 3 / 6 Belajar Html5 HTML specifications HTML5.2 https://www.w3.org/tr/html52/ HTML5.1 2nd Edition https://www.w3.org/tr/html51/ HTML AAM https://www.w3.org/tr/html-aam-1.0/ W3C

More information

PENDAFTARAN KURSUS SEMESTER 1 (DEP/DEE/DTK) SESI DIS 2018

PENDAFTARAN KURSUS SEMESTER 1 (DEP/DEE/DTK) SESI DIS 2018 PENDAFTARAN KURSUS SEMESTER (DEP/DEE/DTK) SESI DIS 08 KURSUS-KURSUS SEMASA KOD KURSUS Compulsory DUB0 Compulsory DUE0 Compulsory **DRB000 0 4 Common Core DUW0 5 Common Core DBM0 6 Common Core DBS0 7 Discipline

More information

LAMPIRAN : LISTING PROGRAM

LAMPIRAN : LISTING PROGRAM 1 LAMPIRAN : LISTING PROGRAM 1. Modules a. Modul Vocab Modul ini mefinisikan persyaratan dan pesan dari beberapa data sebagai konstan Variabel. Shop Screen ShopBuy ShopSell ShopCancel Possession = "Beli"

More information

Panduan Menggunakan Autoresponder FreeAutobot.com

Panduan Menggunakan Autoresponder FreeAutobot.com Panduan Menggunakan Autoresponder FreeAutobot.com Dengan memperolehi e-book ini, anda mempunyai kebenaran untuk memberi secara percuma kepada pelanggan anda atau tawarkan sebagai bonus kepada pembelian

More information

ISU DAN CABARAN PELAKSANAAN SISTEM PENGURUSAN KESELAMATAN MAKLUMAT (ISMS) 15 Jun 2016 Dewan Taklimat Serdang

ISU DAN CABARAN PELAKSANAAN SISTEM PENGURUSAN KESELAMATAN MAKLUMAT (ISMS) 15 Jun 2016 Dewan Taklimat Serdang ISU DAN CABARAN PELAKSANAAN SISTEM PENGURUSAN KESELAMATAN MAKLUMAT (ISMS) 15 Jun 2016 Dewan Taklimat Serdang 1 TARIKH AUDIT Audit Dalaman Sistem Pengurusan Keselamatan Maklumat (ISMS) Universiti Putra

More information

LAMPIRAN. Universitas Sumatera Utara

LAMPIRAN. Universitas Sumatera Utara LAMPIRAN DAFTAR NAMA MURID KELAS VIIa SMP TRI JAYA MEDAN TAHUN PELAJARAN 2011/2012 Kelas : VII a SMP Wali Kelas : R.Pakpahan S,Pd Guru BP/BK : D.Purba,S.Pd NO NOMOR INDUK NAMA SISWA L/P NISN 1 942 ANGELIA

More information

LISTING PROGRAM. 1. Module SkripsiUmri.py. import sys, operator, codecs, time. class Timer(object): def init (self): self.t1= time.

LISTING PROGRAM. 1. Module SkripsiUmri.py. import sys, operator, codecs, time. class Timer(object): def init (self): self.t1= time. A1 LISTING PROGRAM 1. Module SkripsiUmri.py import sys, operator, codecs, time class Timer(object): def init (self): self.t1= time.time() def getelapsedltime(self): # gets total elapsed from class initialsation

More information

Lampiran 2 MASTER TABEL

Lampiran 2 MASTER TABEL 64 Lampiran 2 MASTER TABEL No. No. Responden Umur Pendidikan Pekerjaan Paritas Kanker 1 427363 35 S1 PNS 4 Tidak 2 504024 36 SMA IRT 4 Tidak 3 500316 35 SMA IRT 5 Tidak 4 504014 35 SMA PNS 1 Tidak 5 447158

More information

The Control Properties

The Control Properties The Control Properties Figure Before writing an event procedure for the control to response to a user's input, you have to set certain properties for the control to determine its appearance and how it

More information

ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN Minggu 11

ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN Minggu 11 ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN Minggu 11 PENILAIAN & KULIAH Kuliah Tugasan Ujian Teori Ujian Amali Isi kandungan 4.8 Menunjukkan asas pengiraan o Subnet Mask o

More information

LAMPIRAN : LISTING PROGRAM

LAMPIRAN : LISTING PROGRAM LAMPIRAN : LISTING PROGRAM Kode Program Form Login Private Sub cbolevel_click() If cbolevel.text = "Pengguna" Then txtlogin.enabled = False txtpass.enabled = False txtlogin.visible = False txtpass.visible

More information

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM LAMPIRAN A : LISTING PROGRAM 1. Form Utama (Cover) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text;

More information

End Sub. Sub Kunci() Dim i As Integer For i = 0 To 4 Txtfield(i).Locked = True Next i grddatagrid.enabled = False End Sub

End Sub. Sub Kunci() Dim i As Integer For i = 0 To 4 Txtfield(i).Locked = True Next i grddatagrid.enabled = False End Sub Source Aplikasi Sistem Informasi Akademik GENERAL Dim db As Connection Dim WithEvents adoprimaryrs1 As Recordset Dim WithEvents adoprimaryrs2 As Recordset Dim WithEvents rscaridata As Recordset Dim cekid

More information

DOKUMEN TIDAK TERKAWAL

DOKUMEN TIDAK TERKAWAL Halaman: 1/12 Tujuan : Arahan kerja ini adalah untuk menerangkan tatacara pendaftaran ID Pengguna di dalam Sistem Kewangan SAGA (Standard Accounting for Government Agencies) Universiti Putra Malaysia bagi

More information

UNIVERSITI SAINS MALAYSIA. CMT322/CMM323 Web Engineering & Technologies [Kejuruteraan & Teknologi Web]

UNIVERSITI SAINS MALAYSIA. CMT322/CMM323 Web Engineering & Technologies [Kejuruteraan & Teknologi Web] UNIVERSITI SAINS MALAYSIA First Semester Examination 2014/2015 Academic Session December 2014/January 2015 CMT322/CMM323 Web Engineering & Technologies [Kejuruteraan & Teknologi Web] Duration : 2 hours

More information

Nearby Search Indekos Based Android Using A Star (A*) Algorithm

Nearby Search Indekos Based Android Using A Star (A*) Algorithm Journal of Physics: Conference Series PAPER OPEN ACCESS Nearby Search Indekos Based Android Using A Star (A*) Algorithm To cite this article: B Siregar et al 2018 J. Phys.: Conf. Ser. 978 012084 View the

More information

PANDUAN PENGGUNA (SUPPLIER) e-purchase ORDER FOR SERVICES

PANDUAN PENGGUNA (SUPPLIER) e-purchase ORDER FOR SERVICES PANDUAN PENGGUNA (SUPPLIER) e-purchase ORDER FOR SERVICES SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: UNIT SUPPLY CHAIN MANAGEMENT (SCM) JABATAN SOURCING CONTROLLER

More information

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS)

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: SUPPLY CHAIN MANAGEMENT (SCM) BAHAGIAN ICT PROCESS

More information

Semasa buku ini ditulis XAMPP mengandungi empat versi:

Semasa buku ini ditulis XAMPP mengandungi empat versi: Lab 1 PEMASANGAN PELAYAN WEB XAMPP 1.0 Pengenalan Di dalam topik ini kita akan menggunakan pelayan web yang berasaskan sumber terbuka XAMPP Windows 1.8.0. Kenapa Pelayan Web Xampp digunakan kerana bukannya

More information

UJIAN PENCAPAIAN SEKOLAH RENDAH 20XX 015/2. MATEMATIK Kertas 2 September 1 jam Satu jam JANGAN BUKA KERTAS SOALAN INI SEHINGGA DIBERITAHU

UJIAN PENCAPAIAN SEKOLAH RENDAH 20XX 015/2. MATEMATIK Kertas 2 September 1 jam Satu jam JANGAN BUKA KERTAS SOALAN INI SEHINGGA DIBERITAHU SULIT 1 01/2 NO. KAD PENGENALAN/ NO. SIJIL KELAHIRAN Untuk ANGKA GILIRAN LEMBAGA PEPERIKSAAN KEMENTERIAN PENDIDIKAN MALAYSIA UJIAN PENCAPAIAN SEKOLAH RENDAH 20XX 01/2 MATEMATIK Kertas 2 September 1 jam

More information

TUITION CENTRE MANAGEMENT SYSTEM (TCMS) ZARIFAH BINTI MOHD PAHMI UNIVERSITI TEKNIKAL MALAYSIA MELAKA

TUITION CENTRE MANAGEMENT SYSTEM (TCMS) ZARIFAH BINTI MOHD PAHMI UNIVERSITI TEKNIKAL MALAYSIA MELAKA TUITION CENTRE MANAGEMENT SYSTEM (TCMS) ZARIFAH BINTI MOHD PAHMI UNIVERSITI TEKNIKAL MALAYSIA MELAKA TUITION CENTRE MANAGEMENT SYSTEM (TCMS) ZARIFAH BINTI MOHD PAHMI This report is submitted in partial

More information

DAFTAR ISI ABSTRAK... 1 KATA PENGANTAR...ERROR! BOOKMARK NOT DEFINED. UCAPAN TERIMAKASIH...ERROR! BOOKMARK NOT DEFINED. DAFTAR ISI...

DAFTAR ISI ABSTRAK... 1 KATA PENGANTAR...ERROR! BOOKMARK NOT DEFINED. UCAPAN TERIMAKASIH...ERROR! BOOKMARK NOT DEFINED. DAFTAR ISI... ABSTRAK Perkembangan teknologi scanner yang berkembang begitu pesat memunculkan ide yang menjadi dasar konsep tugas akhir ini. Pada awalnya scanner digunakan untuk membaca gambar sehingga dapat diolah

More information

Pengenalan Sistem Maklumat Dalam Pendidikan

Pengenalan Sistem Maklumat Dalam Pendidikan Pengenalan Sistem Maklumat Dalam Pendidikan 1 RELATIONSHIP & QUERY DALAM MICROSOFT ACCESS Kandungan Definisi Relationship (Hubungan) Jenis Relationship Membina Relationship Definisi Query dan Fungsi Query

More information

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS)

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: SUPPLY CHAIN MANAGEMENT (SCM) BAHAGIAN ICT PROCESS

More information

RENCANA PROGRAM KEGIATAN PERKULIAHAN SEMESTER (RPKPS)

RENCANA PROGRAM KEGIATAN PERKULIAHAN SEMESTER (RPKPS) RENCANA PROGRAM KEGIATAN PERKULIAHAN SEMESTER (RPKPS) Kode / Nama Mata Kuliah : Graphic Designing Revisi ke : 0 Satuan Kredit Semester : 2 SKS Tgl revisi : - Jml Jam kuliah dalam seminggu : 100 menit Tgl

More information

WEBSITE DESIGN RESEARCH AND COMMUNITY SERVICE INSTITUTE IN BINA DARMA UNIVERSITY

WEBSITE DESIGN RESEARCH AND COMMUNITY SERVICE INSTITUTE IN BINA DARMA UNIVERSITY International Conference on Information Systems for Business Competitiveness (ICISBC 203) 372 WEBSITE DESIGN RESEARCH AND COMMUNITY SERVICE INSTITUTE IN BINA DARMA UNIVERSITY Siti Sa uda ) Qoriani Widayati

More information

ABSTRAK... Error! Bookmark not defined. DAFTAR ISI... v. DAFTAR GAMBAR... viii. DAFTAR TABEL... xi. BAB I... Error! Bookmark not defined.

ABSTRAK... Error! Bookmark not defined. DAFTAR ISI... v. DAFTAR GAMBAR... viii. DAFTAR TABEL... xi. BAB I... Error! Bookmark not defined. DAFTAR ISI ABSTRAK... Error! Bookmark not DAFTAR ISI... v DAFTAR GAMBAR... viii DAFTAR TABEL... xi BAB I... Error! Bookmark not PENDAHULUAN... Error! Bookmark not 1.1 Latar Belakang... Error! Bookmark

More information

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM LAMPIRAN A : LISTING PROGRAM 1. frmmenu.frm Dim CN As Connection Dim rshapus As Recordset Private Sub DfaHasil_Click() Call frmlap.cetak Private Sub Form_Load() Set CN = New ADODB.Connection CN.ConnectionString

More information

INFORMATION SYSTEM OF LIBRARY AT PONDOK PESANTREN DARUL IHSAN MUHAMMADIYAH SRAGEN

INFORMATION SYSTEM OF LIBRARY AT PONDOK PESANTREN DARUL IHSAN MUHAMMADIYAH SRAGEN INFORMATION SYSTEM OF LIBRARY AT PONDOK PESANTREN DARUL IHSAN MUHAMMADIYAH SRAGEN PUBLIKASI ILMIAH This Final Project is Compiled as a Condition to Complete Bachelor Degree Program at Department of Informatics

More information

PROGRAM 1: SIMPLE CALCULATOR

PROGRAM 1: SIMPLE CALCULATOR PROGRAM 1: SIMPLE CALCULATOR Option Explicit Dim operand1 As Double, operand2 As Double Dim op1 As Double, op2 As Double Dim operator As String Dim cleardisplay As Boolean Private Sub Cmdclear_Click()

More information

PANDUAN PENGGUNA (PENTADBIR SYSTEM/SYSTEM ADMINISTRATOR) (INFOTECH, BPPF DAN POLIS

PANDUAN PENGGUNA (PENTADBIR SYSTEM/SYSTEM ADMINISTRATOR) (INFOTECH, BPPF DAN POLIS Classroom Reservation User Manual (HEA) PANDUAN PENGGUNA (PENTADBIR SYSTEM/SYSTEM ADMINISTRATOR) (INFOTECH, BPPF DAN POLIS Table of Contents CLASSROOM RESERVATION MANAGEMENT SYSTEM - APLIKASI... 2 Apa

More information

HARDWARE AND SOFTWARE CO-SIMULATION PLATFORM FOR CONVOLUTION OR CORRELATION BASED IMAGE PROCESSING ALGORITHMS SAYED OMID AYAT

HARDWARE AND SOFTWARE CO-SIMULATION PLATFORM FOR CONVOLUTION OR CORRELATION BASED IMAGE PROCESSING ALGORITHMS SAYED OMID AYAT HARDWARE AND SOFTWARE CO-SIMULATION PLATFORM FOR CONVOLUTION OR CORRELATION BASED IMAGE PROCESSING ALGORITHMS SAYED OMID AYAT UNIVERSITI TEKNOLOGI MALAYSIA HARDWARE AND SOFTWARE CO-SIMULATION PLATFORM

More information

LISTING CODE A-1. Indo_to_jawa_Fragments.java. package studio.arti.kamusjawaindonesia;

LISTING CODE A-1. Indo_to_jawa_Fragments.java. package studio.arti.kamusjawaindonesia; LISTING CODE A-1 Indo_to_jawa_Fragments.java package studio.arti.kamusjawaindonesia; import android.content.dialoginterface; import android.database.cursor; import android.database.sqlite.sqlitedatabase;

More information

FIRST TIME LOGIN & SELF REGISTRATION USER GUIDE LOG MASUK KALI PERTAMA & PENDAFTARAN SENDIRI PANDUAN PENGGUNA

FIRST TIME LOGIN & SELF REGISTRATION USER GUIDE LOG MASUK KALI PERTAMA & PENDAFTARAN SENDIRI PANDUAN PENGGUNA FIRST TIME LOGIN & SELF REGISTRATION USER GUIDE LOG MASUK KALI PERTAMA & PENDAFTARAN SENDIRI PANDUAN PENGGUNA Getting Started Step by Step Guide to Supplier First Time Login and Self Registration Persediaan

More information

LOGICAL OPERATORS AND ITS APPLICATION IN DETERMINING VULNERABLE WEBSITES CAUSED BY SQL INJECTION AMONG UTM FACULTY WEBSITES NURUL FARIHA BINTI MOKHTER

LOGICAL OPERATORS AND ITS APPLICATION IN DETERMINING VULNERABLE WEBSITES CAUSED BY SQL INJECTION AMONG UTM FACULTY WEBSITES NURUL FARIHA BINTI MOKHTER LOGICAL OPERATORS AND ITS APPLICATION IN DETERMINING VULNERABLE WEBSITES CAUSED BY SQL INJECTION AMONG UTM FACULTY WEBSITES NURUL FARIHA BINTI MOKHTER UNIVERSITI TEKNOLOGI MALAYSIA i LOGICAL OPERATORS

More information

Form Connection. Imports System Imports System.Threading Imports System.IO.Ports Imports System.ComponentModel

Form Connection. Imports System Imports System.Threading Imports System.IO.Ports Imports System.ComponentModel Form Connection Imports System Imports System.Threading Imports System.IO.Ports Imports System.ComponentModel Public Class connection '------------------------------------------------ Dim myport As Array

More information

INFORMATION SYSTEM OF SCHEDULE AND CHAMPION S DATA OF BIRD CONTEST IN BOYOLALI WEBSITE BASED

INFORMATION SYSTEM OF SCHEDULE AND CHAMPION S DATA OF BIRD CONTEST IN BOYOLALI WEBSITE BASED INFORMATION SYSTEM OF SCHEDULE AND CHAMPION S DATA OF BIRD CONTEST IN BOYOLALI WEBSITE BASED Arranged as requisite to complete scholar program in Informatics Enginering of Communication and Informatics

More information

A-1 LISTING PROGRAM. Halaman Koneksi. Universitas Sumatera Utara

A-1 LISTING PROGRAM. Halaman Koneksi. Universitas Sumatera Utara A-1 LISTING PROGRAM Halaman Koneksi Imports System.Data.OleDb Imports System.Data.OleDb.OleDbCommand Module koneksi Public con As OleDbConnection Public cmd As OleDbCommand Public dtr As OleDbDataReader

More information

Visualization of Information Based on Tweets from Meteorological, Climatological, and Geophysical Agency: BMKG

Visualization of Information Based on Tweets from Meteorological, Climatological, and Geophysical Agency: BMKG Visualization of Information Based on Tweets from Meteorological, Climatological, and Geophysical Agency: BMKG Mira Chandra Kirana 1*), Amir 2, Muhammad Nashrullah 3 1,2,3 Informatics Engineering Department,

More information

Visitor Management System

Visitor Management System WWW.VALLINME.COM Visitor Management System Ver 1.0 Mohd Noor Azam 18-03-2015 [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the

More information

PENDAFTARAN KURSUS SEMESTER 1 (DEP/DEE) SESI DIS 2017

PENDAFTARAN KURSUS SEMESTER 1 (DEP/DEE) SESI DIS 2017 PENDAFTARAN SEMESTER (DEP/DEE) SESI DIS 07 - SEMASA Compulsory DUB0 Compulsory DUE0 Compulsory **DRB000 0 4 Common Core DUW0 5 Common Core DBM0 6 Common Core DBS0 7 Discipline Core DET0 8 Discipline Core

More information

Jurnal Ilmiah Komputer dan Informatika (KOMPUTA) 1 Edisi...Volume..., Bulan 20..ISSN :

Jurnal Ilmiah Komputer dan Informatika (KOMPUTA) 1 Edisi...Volume..., Bulan 20..ISSN : Jurnal Ilmiah Komputer dan Informatika (KOMPUTA) Implementation Of Fuzzy K-Nearest Neighbour (fuzzy K-NN) For Classification Of Proposals Thesis Based On A Group Of Scholarly In Informatics Engineering

More information

LISTING PROGRAM. namespace vigenere_des { public partial class MainPage : PhoneApplicationPage { public MainPage() { InitializeComponent(); }

LISTING PROGRAM. namespace vigenere_des { public partial class MainPage : PhoneApplicationPage { public MainPage() { InitializeComponent(); } 59 LISTING PROGRAM Form Utama : using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Navigation;

More information

Manual Pengguna. PCN Online Service Fulfillment System

Manual Pengguna. PCN Online Service Fulfillment System System 1 Subjek Muka Surat 1) CARTA ALIR SISTEM 2 2) PERMOHONAN OLEH AGENSI 3 3) PENGESAHAN PERMOHONAN OLEH MAMPU 8 4) LAMPIRAN 13 2 Carta alir sistem 3 PERMOHONAN OLEH AGENSI 4 Membuat permohonan baru

More information

B,8 PERKHIDMATAN KREDIT DAN PERBANKAN. Pemindahan Data PROSEDUR UNIT KOMPUTER. BPKP/KlOK-117 Bilangan Semakan : 0 Tarikh : PERUBAHAN.

B,8 PERKHIDMATAN KREDIT DAN PERBANKAN. Pemindahan Data PROSEDUR UNIT KOMPUTER. BPKP/KlOK-117 Bilangan Semakan : 0 Tarikh : PERUBAHAN. PROSEDUR UNIT KOMPUTER Pemindahan Data BPKP/KlOK-117 Bilangan Semakan : 0 Tarikh : 30.09.13 Disediakan oleh :- Disahkan oleh :- Ketua Unit PERUBAHAN Ubahan Muka surat Tarikh Keterangan Diluluskan B,8 8

More information

CURRICULUM VITAE. Address : Kp. Jeprah Rt 01/11 No. 72 Jonggol Bogor Jawa Barat, Indonesia

CURRICULUM VITAE. Address : Kp. Jeprah Rt 01/11 No. 72 Jonggol Bogor Jawa Barat, Indonesia CURRICULUM VITAE Personal Information Full Name : Jon Kartago Lamida Place and Date of Birth : Cianjur, 13 December 1985 Religion Nationality Sex Marital Status : Islam : Indonesia : Male : Single Address

More information

AN IMPROVED PACKET FORWARDING APPROACH FOR SOURCE LOCATION PRIVACY IN WIRELESS SENSORS NETWORK MOHAMMAD ALI NASSIRI ABRISHAMCHI

AN IMPROVED PACKET FORWARDING APPROACH FOR SOURCE LOCATION PRIVACY IN WIRELESS SENSORS NETWORK MOHAMMAD ALI NASSIRI ABRISHAMCHI AN IMPROVED PACKET FORWARDING APPROACH FOR SOURCE LOCATION PRIVACY IN WIRELESS SENSORS NETWORK MOHAMMAD ALI NASSIRI ABRISHAMCHI A thesis submitted in partial fulfillment of the requirements for the award

More information

REGISTRATION GUIDE MCIS CUSTOMER PORTAL. Page 1

REGISTRATION GUIDE MCIS CUSTOMER PORTAL. Page 1 REGISTRATION GUIDE MCIS CUSTOMER PORTAL Page 1 Customer Portal Registration Guide Go to www.mcis.my and click the Customer Portal tab Page 2 Customer Portal Registration Guide 1. The page shown below will

More information

UNIVERSITI SAINS MALAYSIA. CST333 Distributed & Grid Computing [Perkomputeran Teragih & Grid]

UNIVERSITI SAINS MALAYSIA. CST333 Distributed & Grid Computing [Perkomputeran Teragih & Grid] UNIVERSITI SAINS MALAYSIA First Semester Examination 2014/2015 Academic Session December 2014/January 2015 CST333 Distributed & Grid Computing [Perkomputeran Teragih & Grid] Duration : 2 hours [Masa :

More information

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM 46 LAMPIRAN A : LISTING PROGRAM 1. Mainform /* * Created by SharpDevelop. * User: User7 * Date: 28/09/2015 * Time: 9:38 * * To change this template use Tools Options Coding Edit Standard Headers. */ using

More information

LISTING PROGRAM. mainform.vb A-1. Universitas Sumatera Utara

LISTING PROGRAM. mainform.vb A-1. Universitas Sumatera Utara A-1 LISTING PROGRAM mainform.vb Imports System.IO Public Class mainform Private Sub mainform_load(byval sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load enkripsirb.checked = True

More information

JABATAN PERKHIDMATAN AWAM MALAYSIA

JABATAN PERKHIDMATAN AWAM MALAYSIA LAMPIRAN B SUKATAN UJIAN KEMAHIRAN TAHAP PERTENGAHAN PEMPROSESAN PERKATAAN, LEMBARAN KERJA DAN PERSEMBAHAN BAGI KENAIKAN PANGKAT PEMBANTU SETIAUSAHA PEJABAT GRED N17 DAN GRED N22 KE SETIAUSAHA PEJABAT

More information

PERKHIDMATAN KREDIT DAN PERBANKAN PROSEDUR UNIT KOMPUTER. Proses Backup ( Windows) BPKP/KlOK-118 Bilangan Semakan : Q Tarikh :

PERKHIDMATAN KREDIT DAN PERBANKAN PROSEDUR UNIT KOMPUTER. Proses Backup ( Windows) BPKP/KlOK-118 Bilangan Semakan : Q Tarikh : PERKHDMATAN KREDT DAN PERBANKAN PROSEDUR UNT KOMPUTER Proses Backup ( Windows) BPKP/KlOK-118 Bilangan Semakan : Q Tarikh : 30.09.13 Disediakan oleh :- Disahkan oleh :- Pengurus P PERU BAHAN Ubahan Muka

More information

HARDWARE/SOFTWARE SYSTEM-ON-CHIP CO-VERIFICATION PLATFORM BASED ON LOGIC-BASED ENVIRONMENT FOR APPLICATION PROGRAMMING INTERFACING TEO HONG YAP

HARDWARE/SOFTWARE SYSTEM-ON-CHIP CO-VERIFICATION PLATFORM BASED ON LOGIC-BASED ENVIRONMENT FOR APPLICATION PROGRAMMING INTERFACING TEO HONG YAP HARDWARE/SOFTWARE SYSTEM-ON-CHIP CO-VERIFICATION PLATFORM BASED ON LOGIC-BASED ENVIRONMENT FOR APPLICATION PROGRAMMING INTERFACING TEO HONG YAP A project report submitted in partial fulfilment of the requirements

More information

Panduan Guru Maker UNO/ Arduino

Panduan Guru Maker UNO/ Arduino Panduan Guru Maker UNO/ Arduino Ditulis khas berdasarkan dokumen standard kandungan prestasi subjek Reka Bentuk Teknologi Tingkatan Dua PENDAHULUAN ISI KANDUNGAN ISI KANDUNGAN CADANGAN PENGAGIHAN MASA

More information

A comparative study of Message Digest 5(MD5) and SHA256 algorithm

A comparative study of Message Digest 5(MD5) and SHA256 algorithm Journal of Physics: Conference Series PAPER OPEN ACCESS A comparative study of Message Digest 5(MD5) and SHA256 algorithm To cite this article: D Rachmawati et al 208 J. Phys.: Conf. Ser. 978 026 View

More information

Analysis of System Requirements of Go-Edu Indonesia Application as a Media to Order Teaching Services and Education in Indonesia

Analysis of System Requirements of Go-Edu Indonesia Application as a Media to Order Teaching Services and Education in Indonesia IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Analysis of System Requirements of Go-Edu Indonesia Application as a Media to Order Teaching Services and Education in Indonesia

More information

SUPERVISED MACHINE LEARNING APPROACH FOR DETECTION OF MALICIOUS EXECUTABLES YAHYE ABUKAR AHMED

SUPERVISED MACHINE LEARNING APPROACH FOR DETECTION OF MALICIOUS EXECUTABLES YAHYE ABUKAR AHMED i SUPERVISED MACHINE LEARNING APPROACH FOR DETECTION OF MALICIOUS EXECUTABLES YAHYE ABUKAR AHMED A project submitted in partial fulfillment of the requirements for the award of the degree of Master of

More information

COMBINING TABLES. Akademi Audit Negara. CAATs ASAS ACL / 1

COMBINING TABLES. Akademi Audit Negara. CAATs ASAS ACL / 1 COMBINING TABLES CAATs ASAS ACL / 1 OBJEKTIF MODUL Mempelajari kaedah menggabung dan menghubungkan dua atau lebih table bagi mencapai objektif Audit. Mempelajari kaedah menggunakan maklumat yang sedia

More information

Kartu Bimbingan Tugas Akhir Siswa

Kartu Bimbingan Tugas Akhir Siswa KEMENTERIAN PENDIDIKAN NASIONAL UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM DEPARTEMEN MATEMATIKA PROGRAM STUDI D.III TEKNIK INFORMATIKA / STATISTIKA Jl. Bioteknologi No. 1

More information

PANDUAN PENGGUNA (PENSYARAH)

PANDUAN PENGGUNA (PENSYARAH) Classroom Reservation User Manual (HEA) PANDUAN PENGGUNA (PENSYARAH) Table of Contents CLASSROOM RESERVATION MANAGEMENT SYSTEM - APLIKASI... 2 Apa itu CRMS?... 2 CRMS Feature Summary... 3 CRMS LOGIN...

More information

KUISIONER. 2. Apakah teknik Using Pictures tersebut sesuai dengan tingkat pemahaman para siswa? Ya, sebutkan alasan Anda:

KUISIONER. 2. Apakah teknik Using Pictures tersebut sesuai dengan tingkat pemahaman para siswa? Ya, sebutkan alasan Anda: KUISIONER USING PICTURES Dari 13 staf pengajar yang telah mengisi kuisioner, 7 13 staf pengajar tersebut mengajarkan 28 topik berikut dengan teknik Using Pictures : No. Topics Teachers Percentages 1. Family

More information

LAMPIRAN. Universitas Sumatera Utara

LAMPIRAN. Universitas Sumatera Utara 67 LAMPIRAN Lampiran A-1 Listing Program Visual Basic Private Sub mn_isidata_click() frm_isi_data.show Me.Hide Private Sub mn_koneksiport_click() frm_koneksi_port.show Me.Hide Private Sub mn_tentang_click()

More information

Development of Sistem Informasi Pendataan Warga (Sitawar) for the Realization of Integrated Population Data at RT Level With RW

Development of Sistem Informasi Pendataan Warga (Sitawar) for the Realization of Integrated Population Data at RT Level With RW Development of Sistem Informasi Pendataan Warga (Sitawar) for the Realization of Integrated Population Data at RT Level With RW Diana Effendi 1), Beri Noviansyah 2) Program Studi Manajemen Informatika,

More information

PENDAFTARAN KURSUS SEMESTER 1 (DEP/DEE/DTK) SESI JUN 2018

PENDAFTARAN KURSUS SEMESTER 1 (DEP/DEE/DTK) SESI JUN 2018 SEMESTER (DEP/DEE/DTK) SESI JUN 08 Compulsory DUB0 Compulsory DUE0 Compulsory **DRB000 0 4 Common Core DUW0 5 Common Core DBM0 6 Common Core DBS0 7 Discipline Core DET0 8 Discipline Core DET0 9 Discipline

More information

Implementation Analysis of GLCM and Naive Bayes Methods in Conducting Extractions on Dental Image

Implementation Analysis of GLCM and Naive Bayes Methods in Conducting Extractions on Dental Image IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Implementation Analysis of GLCM and Naive Bayes Methods in Conducting Extractions on Dental Image To cite this article: E Wijaya

More information

FAKULTI TEKNOLOGI & SAINS MAKLUMAT

FAKULTI TEKNOLOGI & SAINS MAKLUMAT FAKULTI TEKNOLOGI & SAINS MAKLUMAT PROGRAM KELAYAKAN MASUK SENARAI KURSUS Sarjana Sistem Sarjana Teknologi (Sains ) Mempunyai Ijazah Sarjanamuda Teknologi / Sains daripada Universiti Kebangsaan Malaysia;

More information

Automation Lecture Scheduling Information Services through the Auto-Reply Application

Automation Lecture Scheduling Information Services through the  Auto-Reply Application Automation Lecture Scheduling Information Services through the Email Auto-Reply Application Syahrul Mauluddin 1 Departement of Informatic Management Universitas Komputer Indonesia Bandung, Indonesia Leonardi

More information

LISTING PROGRAM. Source Code Tampilan Awal. Source Code Menu Utama

LISTING PROGRAM. Source Code Tampilan Awal. Source Code Menu Utama LISTING PROGRAM Source Code Tampilan Awal Private Sub cmdkeluar_click() MsgBox "Terima Kasih Telah Membuka Program Ini.", vbinformation, "Quick IP Ver 1.0" End Private Sub cmdmasuk_click() MenuUtama.Show

More information

Hybrid learning vector quantization (LVQ) algorithm on face recognition using webcam

Hybrid learning vector quantization (LVQ) algorithm on face recognition using webcam IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Hybrid learning vector quantization (LVQ) algorithm on face recognition using webcam To cite this article: Parini et al 2018 IOP

More information

This item is protected by original copyright

This item is protected by original copyright A-PDF Merger DEMO : Purchase from www.a-pdf.com to remove the watermark MEDICAL FACILITIES DATABASE MANAGEMENT SYSTEM By MUHAMMAD FAIZAL BIN OSMAN Report submitted in partial fulfillment of the requirements

More information

UNIVERSITI SAINS MALAYSIA. CST332 Internet Protocols. Architecture & Routing [Protokol, Seni Bina & Penghalaan Internet]

UNIVERSITI SAINS MALAYSIA. CST332 Internet Protocols. Architecture & Routing [Protokol, Seni Bina & Penghalaan Internet] UNIVERSITI SAINS MALAYSIA First Semester Examination 2016/2017 Academic Session December 2016 / January 2017 CST332 Internet Protocols. Architecture & Routing [Protokol, Seni Bina & Penghalaan Internet]

More information

SLANTING EDGE METHOD FOR MODULATION TRANSFER FUNCTION COMPUTATION OF X-RAY SYSTEM FARHANK SABER BRAIM UNIVERSITI TEKNOLOGI MALAYSIA

SLANTING EDGE METHOD FOR MODULATION TRANSFER FUNCTION COMPUTATION OF X-RAY SYSTEM FARHANK SABER BRAIM UNIVERSITI TEKNOLOGI MALAYSIA SLANTING EDGE METHOD FOR MODULATION TRANSFER FUNCTION COMPUTATION OF X-RAY SYSTEM FARHANK SABER BRAIM UNIVERSITI TEKNOLOGI MALAYSIA SLANTING EDGE METHOD FOR MODULATION TRANSFER FUNCTION COMPUTATION OF

More information

An Implementation of RC4 + Algorithm and Zig-zag Algorithm in a Super Encryption Scheme for Text Security

An Implementation of RC4 + Algorithm and Zig-zag Algorithm in a Super Encryption Scheme for Text Security Journal of Physics: Conference Series PAPER OPEN ACCESS An Implementation of RC4 + Algorithm and Zig-zag Algorithm in a Super Encryption Scheme for Text Security To cite this article: M A Budiman et al

More information

LISTING PROGRAM. a = b; b = c; c = a + b; } fibs.reverse(); for (int i = 0; i < fibs.count; i++) { if (n >= fibs[i]) { n = n - fibs[i];

LISTING PROGRAM. a = b; b = c; c = a + b; } fibs.reverse(); for (int i = 0; i < fibs.count; i++) { if (n >= fibs[i]) { n = n - fibs[i]; A-1 A LISTING PROGRAM 1. Fibonacci Code //membuat fungsi Fibonacci Code public static String GetFibonacciCode(int n) { StringBuilder fib = new StringBuilder("1"); int a, b, c; List fibs = new List();

More information

UNIVERSITI SAINS MALAYSIA. Peperiksaan Semester Pertama Sidang Akademik 2003/2004. September/Oktober 2003

UNIVERSITI SAINS MALAYSIA. Peperiksaan Semester Pertama Sidang Akademik 2003/2004. September/Oktober 2003 UNIVERSITI SAINS MALAYSIA Peperiksaan Semester Pertama Sidang Akademik 2003/2004 September/Oktober 2003 EEE 348E - PENGANTAR REKABENTUK LITAR BERSEPADU Masa: 3jam ARAHAN KEPADA CALON: Sila pastikan bahawa

More information

Augmented Reality (AR) Technology on The Android Operating System in Chemistry Learning

Augmented Reality (AR) Technology on The Android Operating System in Chemistry Learning IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Augmented Reality (AR) Technology on The Android Operating System in Chemistry Learning To cite this article: F S Irwansyah et

More information

UJIAN AKHIR SEMESTER TEKNIK INFORMATIKA SEKOLAH TINGGI TEKNOLOGI DUTA BANGSA

UJIAN AKHIR SEMESTER TEKNIK INFORMATIKA SEKOLAH TINGGI TEKNOLOGI DUTA BANGSA UJIAN AKHIR SEMESTER TEKNIK INFORMATIKA SEKOLAH TINGGI TEKNOLOGI DUTA BANGSA Dosen Pembimbing : Dedi W ST,. MM Nama : Elly Sunandy NIM : 13158279 Pemrograman Terstruktur Membuat program dengan Delphi 7

More information