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

Size: px
Start display at page:

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

Transcription

1 L A M P I R A N

2 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 Then Login.Show MsgBox "Pilih salah satu option!", vbexclamation, "Peringatan" Option1.Value = False Option2.Value = False Option2.ForeColor = vbblue Option1.ForeColor = vbblue Private Sub Form_Load() strado$ = "KAMUS ISTILAH KOMPUTER " Private Sub Help_Click() About.Show Private Sub Insert_Click() Login.Show Private Sub Kamus_Click() Search.Show Private Sub Keluar_Click() End Private Sub Option1_Click() If Option1.Value = True Then

3 Option1.ForeColor = vbred Option2.ForeColor = vbblue Private Sub Option2_Click() If Option2.Value = True Then Option2.ForeColor = vbred Option1.ForeColor = vbblue Private Sub Timer1_Timer() Static Balik As Byte Dim Panjang As Integer Dim i As Long Panjang = Len(strAdo) If Balik = 0 Then n = n + 1 Me.Caption = Left(strAdo, n) & " " If n = Panjang Then 'For i = 1 To 'Next Balik = 1 n = n - 1 Me.Caption = Left(strAdo, n) & " " If n = 0 Then Balik = 0 2. Listing Search Function ConvImage(NamaFile As String, ByRef ErrRet As Long) As Byte() On Error GoTo Salah Dim UkuranFile As Long Dim imgdata() As Byte UkuranFile = FileLen(NamaFile) If UkuranFile > 0 Then ReDim imgdata(ukuranfile) As Byte Open NamaFile For Binary As #1 Get #1,, imgdata Close #1 ConvImage = imgdata ErrRet = 0 ErrRet = 1

4 Exit Function Salah: ErrRet = Err.Number End Function Function TampilImage(imgData() As Byte, ByRef ErrRet As Long) _ As Picture On Error GoTo Salah If UBound(imgData) Then Dim hfile As String hfile = Dir("C:\img.tmp", vbnormal) If hfile <> "" Then Kill "C:\img.tmp" Open "C:\img.tmp" For Binary As #1 Put #1,, imgdata Close #1 Set TampilImage = LoadPicture("C:\img.tmp") ErrRet = 0 ErrRet = 1 Exit Function Salah: ErrRet = Err.Number End Function Private Sub Menampilkan() Dim ErrRet As Long, imgdata As StdPicture Set rc = New ADODB.Recordset rc.open "Select * from Kamus Where Istilah='" & Text1.Text & "'", gadoconn, 3, 3 If Not rc.eof Then txtmeaning.text = rc("keterangan") Set imgdata = TampilImage(rc("Photo").GetChunk( _ rc("photo").actualsize), ErrRet) If ErrRet = 0 Then Set Picture1.Picture = imgdata Text1.Enabled = False txtmeaning.enabled = True Picture1.Enabled = False Me.MousePointer = 1 txtmeaning.setfocus Me.MousePointer = 1 Private Sub Close_Click() End Private Sub cmdrefresh_click() 'Text1.Enabled = True txtmeaning.enabled = False

5 Text1.Text = "" txtmeaning.text = "" txtsearch.text = "" Set Picture1.Picture = Nothing Set Picture = LoadPicture("") txtsearch.setfocus Private Sub Command1_Click() Pembuka.Show Private Sub Form_Load() InitConnection PopData (strtextsearch) Picture1.Enabled = False Private Sub Help_Click() About.Show Private Sub Insert_Click() Login.Show Private Sub Keluar_Click() End Private Sub lstview_itemclick(byval Item As MSComctlLib.ListItem) Dim intselitem As Integer intselitem = Item Text1.Text = lstview.listitems(intselitem).listsubitems(1).text txtmeaning.text = lstview.listitems(intselitem).listsubitems(2).text gintiditem = lstview.listitems(intselitem).listsubitems(3).text Call Menampilkan Private Sub InitConnection() Dim condbstring As String condbstring = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & App.Path & "\Dbgambar.mdb;" Set gadoconn = New ADODB.Connection gadoconn.connectionstring = condbstring gadoconn.open Private Sub PopData(strTextSearch As String)

6 Dim lstx As ListItem Dim strsql As String Dim rs As ADODB.Recordset Dim intcounter As Integer If strtextsearch = "" Then strsql = "select * from Kamus Order by Istilah ASC" strsql = "Select * from Kamus Istilah " & _ "where Istilah like '%" & strtextsearch & "%' order by Istilah asc" Set rs = New ADODB.Recordset rs.open strsql, gadoconn, 3, 1 lstview.listitems.clear With rs If.RecordCount > 0 Then.MoveFirst intcounter = 1 While Not.EOF Set lstx = lstview.listitems.add(,, intcounter) lstx.listsubitems.add = Trim(!Istilah) lstx.listsubitems.add = Trim(!Keterangan) lstx.listsubitems.add = Trim(!No) lstx.listsubitems.add = Trim(!Photo) intcounter = intcounter + 1.MoveNext Wend End With Private Sub Menu_Click() Pembuka.Show Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then If Text1 <> "" Then Me.MousePointer = 11 Private Sub Timer1_Timer() Me.Jam.Caption = Format(Time, "hh:mm:ss") Private Sub txtsearch_change() PopData (txtsearch.text)

7 3. Listing Tampilan Function ConvImage(NamaFile As String, ByRef ErrRet As Long) As Byte() On Error GoTo Salah Dim UkuranFile As Long Dim imgdata() As Byte UkuranFile = FileLen(NamaFile) If UkuranFile > 0 Then ReDim imgdata(ukuranfile) As Byte Open NamaFile For Binary As #1 Get #1,, imgdata Close #1 ConvImage = imgdata ErrRet = 0 ErrRet = 1 Exit Function Salah: ErrRet = Err.Number End Function Function TampilImage(imgData() As Byte, ByRef ErrRet As Long) _ As Picture On Error GoTo Salah If UBound(imgData) Then Dim hfile As String hfile = Dir("C:\img.tmp", vbnormal) If hfile <> "" Then Kill "C:\img.tmp" Open "C:\img.tmp" For Binary As #1 Put #1,, imgdata Close #1 Set TampilImage = LoadPicture("C:\img.tmp") ErrRet = 0 ErrRet = 1 Exit Function Salah: ErrRet = Err.Number End Function Private Sub Simpan() Dim ErrRet As Long, imgdata() As Byte If Text1.Text = "" Then MsgBox "Masukkan Nama!! ", vbexclamation, "Alert" Text1.SetFocus Exit Sub If Picture1 = LoadPicture("") Then MsgBox "Masukkan Gambar ( Click kotak gambar )!!", vbexclamation, "Alert"

8 Exit Sub If txtmeaning.text = "" Then MsgBox "Masukkan Keterangan!! ", vbexclamation, "Alert" Exit Sub Text1.SetFocus If Text1 <> "" Then imgdata = ConvImage(lblLokasi.Caption, ErrRet) Set rc = New ADODB.Recordset rc.open "Kamus", gadoconn, 1, 3 If ErrRet = 0 Then rc.addnew rc.fields("istilah") = Text1.Text rc.fields("keterangan") = txtmeaning.text rc.fields("photo").appendchunk imgdata rc.update Timer3.Enabled = True Frame1.Visible = True Label11.Caption = "Saving" rc.close Private Sub Menampilkan() Dim ErrRet As Long, imgdata As StdPicture Set rc = New ADODB.Recordset rc.open "Select * from Kamus Where Istilah='" & Text1.Text & "'", gadoconn, 3, 3 If Not rc.eof Then txtmeaning.text = rc("keterangan") Set imgdata = TampilImage(rc("Photo").GetChunk( _ rc("photo").actualsize), ErrRet) If ErrRet = 0 Then Set Picture1.Picture = imgdata Text1.Enabled = False txtmeaning.enabled = False Picture1.Enabled = False Me.MousePointer = 1 txtmeaning.setfocus Me.MousePointer = 1 Private Sub Close_Click() End Private Sub cmdbatal_click() cmdsave2.visible = False cmdsave.visible = True cmdnew.enabled = True txtsearch.enabled = True

9 lstview.enabled = True cmdupdate.enabled = True cmddelete.enabled = True cmdrefresh.enabled = True txtsearch.setfocus ref Private Sub cmddelete_click() Dim strdelete As String If Text1.Text = "" Then MsgBox "Sorot data yang ingin dihapus!! ", vbexclamation, "Peringatan" Exit Sub Set rc = New ADODB.Recordset rc.open "Select * from Kamus Where Istilah='" & Text1.Text & "'", gadoconn, 3, 3 rc.delete strdelete = "Delete from Kamus Where No = " & gintiditem.text & "" rc.update rc.close PopData (strtextsearch) Text1.Text = "" txtmeaning.text = "" Set Picture1.Picture = Nothing Set Picture = LoadPicture("") Timer3.Enabled = True Frame1.Visible = True Label11.Caption = "Delete" Private Sub cmdnew_click() Text1.Enabled = True txtmeaning.enabled = True Picture1.Enabled = True Text1.Text = "" txtmeaning.text = "" txtsearch.text = "" Set Picture1.Picture = Nothing Set Picture = LoadPicture("") txtsearch.enabled = False lstview.enabled = False cmdupdate.enabled = False cmddelete.enabled = False cmdrefresh.enabled = False Text1.SetFocus Private Sub cmdrefresh_click() ref

10 Sub ref() Text1.Enabled = True txtmeaning.enabled = True Text1.Text = "" txtmeaning.text = "" txtsearch.text = "" Set Picture1.Picture = Nothing Set Picture = LoadPicture("") txtsearch.setfocus Private Sub cmdsave_click() If cmddelete.enabled = True Then MsgBox "Click New!! ", vbexclamation, "Peringatan" Exit Sub Call Simpan PopData (strtextsearch) cmdnew.enabled = True txtsearch.enabled = True lstview.enabled = True cmdupdate.enabled = True cmddelete.enabled = True cmdrefresh.enabled = True Picture1.Enabled = False Text1.Enabled = False txtmeaning.enabled = False lbllokasi.caption = "" Text1.Text = "" txtmeaning.text = "" txtsearch.text = "" Set Picture1.Picture = Nothing Set Picture = LoadPicture("") Private Sub cmdsave2_click() 'Dim ErrRet As Long, imgdata As StdPicture 'Dim ErrRet As Long, imgdata() As Byte 'Dim strupdate As String If Text1 <> "" Then 'imgdata = ConvImage(lblLokasi.Caption, ErrRet) Set rc = New ADODB.Recordset rc.open "Select * from Kamus Where Istilah='" & Text1.Text & "'", gadoconn, 3, 3 If Not rc.eof Then rc.update 'strupdate = "Update Kamus Set Istilah = '" & SQLSafe(Text1) & "'," & _ "Keterangan = '" & SQLSafe(txtMeaning) & "'Photo = '" & SQLSafe(Picture1) & _ "Where No = " & gintiditem & """" 'rc.fields("no") = gintiditem.text rc.fields("istilah") = Text1.Text rc.fields("keterangan") = txtmeaning.text 'rc.fields("photo").appendchunk imgdata

11 'strupdate = "Update Kamus Set Istilah = '" & SQLSafe(Text1) & "'," & _ "Keterangan = '" & SQLSafe(txtMeaning) & "'Photo = '" & SQLSafe(Picture1) & _ "Where No = " & gintiditem & """" rc.update rc.close Timer2.Enabled = True Frame3.Visible = True PopData (strtextsearch) Text1.Text = "" txtmeaning.text = "" lbllokasi.caption = "" Set Picture1.Picture = Nothing Set Picture = LoadPicture("") cmdnew.enabled = True txtsearch.enabled = True lstview.enabled = True cmdupdate.enabled = True cmddelete.enabled = True cmdrefresh.enabled = True cmdsave2.visible = False cmdsave.visible = True Private Sub cmdupdate_click() Dim strupdate As String If Text1.Text = "" Then MsgBox "Data yang ingin di update tidak ada!! ", vbexclamation, "Peringatan" Exit Sub cmdnew.enabled = False cmddelete.enabled = False txtsearch.enabled = False lstview.enabled = False cmdrefresh.enabled = False Text1.Enabled = True Picture1.Enabled = True txtmeaning.enabled = True cmdsave.visible = False cmdsave2.visible = True Text1.SetFocus Private Sub Command1_Click() Private Sub Command2_Click() Pembuka.Show

12 Private Sub Form_Load() InitConnection PopData (strtextsearch) Picture1.Enabled = False Text1.Enabled = False txtmeaning.enabled = False Private Sub Help_Click() About.Show Private Sub Kamus_Click() Search.Show Private Sub Keluar_Click() End Private Sub lstview_itemclick(byval Item As MSComctlLib.ListItem) Dim intselitem As Integer intselitem = Item Text1.Text = lstview.listitems(intselitem).listsubitems(1).text txtmeaning.text = lstview.listitems(intselitem).listsubitems(2).text gintiditem = lstview.listitems(intselitem).listsubitems(3).text Call Menampilkan Private Sub InitConnection() Dim condbstring As String condbstring = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & App.Path & "\Dbgambar.mdb;" Set gadoconn = New ADODB.Connection gadoconn.connectionstring = condbstring gadoconn.open Private Sub PopData(strTextSearch As String) Dim lstx As ListItem Dim strsql As String Dim rs As ADODB.Recordset Dim intcounter As Integer If strtextsearch = "" Then strsql = "select * from Kamus Order by Istilah ASC" strsql = "Select * from Kamus Istilah " & _ "where Istilah like '%" & strtextsearch & "%' order by Istilah asc"

13 Set rs = New ADODB.Recordset rs.open strsql, gadoconn, 3, 1 lstview.listitems.clear With rs If.RecordCount > 0 Then.MoveFirst intcounter = 1 While Not.EOF Set lstx = lstview.listitems.add(,, intcounter) lstx.listsubitems.add = Trim(!Istilah) lstx.listsubitems.add = Trim(!Keterangan) lstx.listsubitems.add = Trim(!No) lstx.listsubitems.add = Trim(!Photo) intcounter = intcounter + 1.MoveNext Wend End With Private Sub Menu_Click() Pembuka.Show Private Sub Picture1_Click() Buka.FileName = "" Buka.ShowOpen If Buka.FileName = "" Then Exit Sub lbllokasi.caption = Buka.FileName On Error GoTo Hell Set Picture1.Picture = Nothing Picture1.Picture = LoadPicture(lblLokasi.Caption) Exit Sub Hell: MsgBox "Failed opening picture", vbcritical Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then If Text1 <> "" Then Me.MousePointer = 11 Private Sub Timer1_Timer() Me.Jam.Caption = Format(Time, "hh:mm:ss") Private Sub Timer2_Timer() Bar1.Value = Bar1.Value + 2 Me.Label10.Caption = Bar1.Value If Bar1.Value = 100 Then Timer2.Enabled = False

14 Frame3.Visible = False Bar1.Value = 0 MsgBox "Data Sudah Diupdate!! ", vbexclamation, "Alert" Private Sub Timer3_Timer() Bar2.Value = Bar2.Value + 2 Me.Label10.Caption = Bar1.Value If Bar2.Value = 100 Then Timer3.Enabled = False Frame1.Visible = False Bar2.Value = 0 If Label11.Caption = "Saving" Then MsgBox " Data Sudah Di Simpan!", vbexclamation, "Alert" MsgBox " Data Sudah Di Delete!", vbexclamation, "Alert" Private Sub txtsearch_change() PopData (txtsearch.text) 4. Listing Spalsh Option Explicit Dim fadin As Integer Private Sub Form_Load() MakeTransparent Me.Hwnd, 0 Timer1.Enabled = True fadin = 0 Private Sub Timer1_Timer() fadin = fadin + 10 If fadin <= 600 Then MakeTransparent Me.Hwnd, fadin MakeTransparent Me.Hwnd, 255 Timer1.Enabled = False Unload Me Pembuka.Show

15 5. Listing Login Private Sub cmdbatal_click() Kosong Private Sub Command1_Click() If txtnama.text = "kamus digital" And txtpassword.text = "0209" Then Proses.Show Login.Hide txtnama.text = "" txtpassword.text = "" MsgBox "Name dan Key yang anda masukkan SALAH!", vbexclamation, "Peringatan" Kosong txtnama.setfocus Exit Sub With Proses.Timer1.Enabled = True End With Sub Kosong() txtnama.text = "" txtpassword.text = "" txtnama.setfocus Private Sub Command2_Click() Pembuka.Show Login.Hide Private Sub Form_Load() txtnama.text = "" txtpassword.text = "" 6. Listing Proses Private Sub Form_Load() Timer1.Enabled = True Private Sub Timer1_Timer() Bar1.Value = Bar1.Value + 2 Me.Label10.Caption = Bar1.Value If Bar1.Value = 100 Then

16 Timer1.Enabled = False Bar1.Value = 0 Tampilan.Show 7. ModTrans Option Explicit Private Declare Function SetLayeredWindowAttributes Lib "user32" (ByVal Hwnd As Long, ByVal crkey As Long, ByVal balpha As Byte, ByVal dwflags As Long) As Long Private Declare Function UpdateLayeredWindow Lib "user32" (ByVal Hwnd As Long, ByVal hdcdst As Long, pptdst As Any, psize As Any, ByVal hdcsrc As Long, pptsrc As Any, crkey As Long, ByVal pblend As Long, ByVal dwflags As Long) As Long Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal Hwnd As Long, ByVal nindex As Long) As Long Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal Hwnd As Long, ByVal nindex As Long, ByVal dwnewlong As Long) As Long Private Const GWL_EXSTYLE = (-20) Private Const LWA_COLORKEY = &H1 Private Const LWA_ALPHA = &H2 Private Const ULW_COLORKEY = &H1 Private Const ULW_ALPHA = &H2 Private Const ULW_OPAQUE = &H4 Private Const WS_EX_LAYERED = &H80000 Public Function istransparent(byval Hwnd As Long) As Boolean On Error Resume Next Dim Msg As Long Msg = GetWindowLong(Hwnd, GWL_EXSTYLE) If (Msg And WS_EX_LAYERED) = WS_EX_LAYERED Then istransparent = True istransparent = False If Err Then istransparent = False End Function Public Function MakeTransparent(ByVal Hwnd As Long, Perc As Integer) As Long Dim Msg As Long On Error Resume Next If Perc < 0 Or Perc > 255 Then MakeTransparent = 1

17 Msg = GetWindowLong(Hwnd, GWL_EXSTYLE) Msg = Msg Or WS_EX_LAYERED SetWindowLong Hwnd, GWL_EXSTYLE, Msg SetLayeredWindowAttributes Hwnd, 0, Perc, LWA_ALPHA MakeTransparent = 0 If Err Then MakeTransparent = 2 End Function Public Function MakeOpaque(ByVal Hwnd As Long) As Long Dim Msg As Long On Error Resume Next Msg = GetWindowLong(Hwnd, GWL_EXSTYLE) Msg = Msg And Not WS_EX_LAYERED SetWindowLong Hwnd, GWL_EXSTYLE, Msg SetLayeredWindowAttributes Hwnd, 0, 0, LWA_ALPHA MakeOpaque = 0 If Err Then MakeOpaque = 2 End Function 8. Module1 Option Explicit Public gadoconn As ADODB.Connection Public rc As New ADODB.Recordset Public Function SQLSafe(strValue As String) As String Dim strtemp1 As String strtemp1 = Replace(strValue, "'", "''") SQLSafe = strtemp1 End Function

18 L A M P I R A N

19 KEMENTERIAN PENDIDIKAN NASIONAL UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM Jl. Bioteknologi No. 1 Kampus USU Telp. (061) , , Fax. (061) Medan Kartu Bimbingan Tugas Akhir Mahasiswa Nama : ANDRIYANI BR GINTING Nomor Induk Mahasiswa : Judul Tugas Akhir : PROGRAM APLIKASI KAMUS DIGITAL ISTILAH BIDANG KOMPUTER Dosen Pembimbing : Drs. Suyanto, M.Kom Tanggal Mulai Bimbingan : 15 Maret 2010 Tanggal Selesai Bimbingan : 27 Mei 2010 No Tanggal Asistensi Bimbingan 1 15 Maret 2010 ACC Proposal Pembahasan Pada Asistensi Mengenai, Pada Bab : 2 20 April 2010 Pegajuan Laporan 3 26 April 2010 Perbaikan Laporan I 4 20 Mei 2010 Perbaikan Laporan II 5 26 Mei 2010 Uji Program 6 27 Mei 2010 ACC Laporan Paraf Dosen Pembimbing Keterangan *Kartu ini harap dikembalikan ke Departemen Matematika bila bimbingan mahasiswa telah selesai Diketahui, Departemen Matematika FMIPA USU Ketua Disetujui, Pembimbing Utama/ Penanggung Jawab Dr. Saib Suwilo, M.Sc NIP Drs. Suyanto, M.Kom NIP

20 SURAT KETERANGAN Hasil uji program tugas akhir Yang bertanda tangan di bawah ini, menerangkan bahwa Tugas Akhir Mahasiswa Program D-III Ilmu Komputer : Nama : ANDRIYANI BR GINTING Nomor Induk Mahasiswa : Program Studi : D-3 ILMU KOMPUTER Judul Tugas Akhir : PROGRAM APLIKASI KAMUS DIGITAL ISTILAH BIDANG KOMPUTER Telah melaksanakan tes program Tugas Akhir dari mahasiswa tersebut yang dilaksanakan pada tanggal Mei Dengan hasil : Sukses / Gagal Demikian diterangkan untuk digunakan melengkapi syarat pendaftaran Ujian Meja Hijau Tugas Akhir Mahasiswa yang bersangkutan di Departemen Matematika FMIPA USU Medan. Medan, Mei 2010 Dosen Pembimbing Drs.Suyanto, M.Kom NIP

LISTING PROGRAM. Form Splash

LISTING PROGRAM. Form Splash LISTING PROGRAM Form Splash Private Sub Form_Load() lblversion.caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision lblproductname.caption = App.Title lblcopyright.caption = App.LegalCopyright

More information

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

KARTU BIMBINGAN TUGAS AKHIR MAHASISWA PEMBAHASAN PADA ASISTENSI MENGENAI, PADA BAB 62 KEMENTERIAN PENDIDIKAN NASIONAL UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM Jl. Bioteknologi No.1 Kampus USU Padang Bulan Medan 20155 Telp. (061) 8211050, 8214290, Fax (061)

More information

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

LAMPIRAN 1. Kode Program Splash Screen

LAMPIRAN 1. Kode Program Splash Screen LAMPIRAN 1 Kode Program Splash Screen Private Sub Form_Load() lblversion.caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision lblproductname.caption = App.Title lblcopyright.caption

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 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

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

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

LISTING PROGRAM. 1. Menu Utama

LISTING PROGRAM. 1. Menu Utama LISTING PROGRAM 1. Menu Utama Dim rsupdate As Recordset Dim rscari As Recordset Dim strusername As String * 10 Dim Status As String * 1 Dim JumUser As Integer Public system_mon As String Public service_mon

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

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

بسن اهلل الزمحن الزحين اكواد الفيجوال بيسك تأليف : أمحد صادق

بسن اهلل الزمحن الزحين اكواد الفيجوال بيسك تأليف : أمحد صادق بسن اهلل الزمحن الزحين اكواد الفيجوال بيسك تأليف : أمحد صادق مقذمح : يضم هذا انكرية انصغيز اكثز اكىاد انثيسك اهميح تانىسثح نهمثرذئيه وانهغاخ انثسيطح انر قذ يصعة انحصىل عهيها نرشرد مىضىعاذها وقذ قمد تجمعها

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

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

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

LISTING PROGRAM. 1. Form Menu Utama. Universitas Sumatera Utara

LISTING PROGRAM. 1. Form Menu Utama. Universitas Sumatera Utara LISTING PROGRAM 1. Form Menu Utama Dim LenTemp As Integer Dim SrtTemp As String Dim n As Integer Private Sub Form_Load() Call Tengah(Me) lhsysmenu = GetSystemMenu(Me.hwnd, False) lretval = RemoveMenu(lhSysMenu,

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

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

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

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

VISUAL BASIC SERVER INTERFACE CODE. Visual Basic 6 Graphical Interface 103. Visual Basic Module rtsscomm.bas Code.115

VISUAL BASIC SERVER INTERFACE CODE. Visual Basic 6 Graphical Interface 103. Visual Basic Module rtsscomm.bas Code.115 APPENDIX E VISUAL BASIC SERVER INTERFACE CODE Page E.1: E.2: E.3: E.4: E.5: Visual Basic 6 Graphical Interface 103 Visual Basic Form gyrofront.frm Code.....104 Visual Basic Module mydatatypes.bas Code..114

More information

22. VB Programming Fundamentals Data Access with Data Objects

22. VB Programming Fundamentals Data Access with Data Objects 22. VB Programming Fundamentals Data Access with Data Objects 22.1 Data Access Object MS Data Access Object (DAO) enables you to use a programming language to access and manipulate data in local or remote

More information

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6 HARP_VB projet en VB6 Option Explicit Dim Value As Integer Dim i As Integer Dim il As Long Dim LL, L1S, L250µS, L500µS, L1mS, L2mS, L5mS, L10mS As Single Dim offsetdepart As Long Dim police(256, 8) As

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

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

SURAT KETERANGAN Hasil Uji Program Tugas Akhir

SURAT KETERANGAN Hasil Uji Program Tugas Akhir SURAT KETERANGAN Hasil Uji Program Tugas Akhir Yang bertanda tangan dibawah ini, menerangkan bahwa Tugas Akhir Mahasiswa Program Diploma 3 Teknik Informatika : Nama : FADILLA MAHARANI NIM : 112406159 Program

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

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

Programming with visual Basic:

Programming with visual Basic: Programming with visual Basic: 1-Introdution to Visual Basics 2-Forms and Control tools. 3-Project explorer, properties and events. 4-make project, save it and its applications. 5- Files projects and exercises.

More information

PROGRAM BASCOM AVR. ' inisialisasi '

PROGRAM BASCOM AVR. ' inisialisasi ' PROGRAM BASCOM AVR '--------------------------------------- inisialisasi '----------------------- $prog &HFF, &HC4, &HD9, &H00 ' generated. Take care that the chip supports all fuse bytes. $regfile = "m8def.dat"

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

Function: function procedures and sub procedures share the same characteristics, with

Function: function procedures and sub procedures share the same characteristics, with Function: function procedures and sub procedures share the same characteristics, with one important difference- function procedures return a value (e.g., give a value back) to the caller, whereas sub procedures

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

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 Form 1 '====================================================== 'SUHU FLUIDA : ' Suhu 10 C Const a1 = 0.9998 Const B1 = 1.307 Const C1 = 0.01251 ' Suhu 20 C Const a2 = 0.9983 Const B2 =

More information

Information Hiding In Images Using Randomly Selected Points

Information Hiding In Images Using Randomly Selected Points Republic of Iraq Ministry Of Higher Education And Scientific Research University Of Baghdad College Of Science Department Of Computer Science Information Hiding In Images Using Randomly Selected Points

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

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

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

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

IS 320 Spring 96 Page 1 Exam 1. Please use your own paper to answer the following questions. Point values are shown in parentheses.

IS 320 Spring 96 Page 1 Exam 1. Please use your own paper to answer the following questions. Point values are shown in parentheses. IS 320 Spring 96 Page 1 Please use your own paper to answer the following questions. Point values are shown in parentheses. 1. (10) Consider the following segment of code: If txtansicode.text < "0" Or

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

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

PERU BAHAN PERKHIDMATAN KREDIT DAN PERBANKAN ARAHAN KERJA UNIT KOMPUTER. Tatacara Proses AGM03. BPKP/KJAK-104 Bilangan Semakan : 0 Tarikh :

PERU BAHAN PERKHIDMATAN KREDIT DAN PERBANKAN ARAHAN KERJA UNIT KOMPUTER. Tatacara Proses AGM03. BPKP/KJAK-104 Bilangan Semakan : 0 Tarikh : ARAHAN KERJA UNIT KOMPUTER Tatacara Proses AGM03 BPKP/KJAK-104 Bilangan Semakan : 0 Tarikh : 30.09.13 Disediakan oleh :- Disahkan oleh ;- Pengurus PERU BAHAN Ubahan Muka surat Tarikh Keterangan Diluluskan

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

CARA-CARA UNTUK MEMBUAT POSTER MELALUI PERISIAN PHOTOSHOP. Untuk membuat poster sediakan beberapa bahan seperti berikut:

CARA-CARA UNTUK MEMBUAT POSTER MELALUI PERISIAN PHOTOSHOP. Untuk membuat poster sediakan beberapa bahan seperti berikut: CARA-CARA UNTUK MEMBUAT POSTER MELALUI PERISIAN PHOTOSHOP Untuk membuat poster sediakan beberapa bahan seperti berikut: Pastikan anda telah memindahkan gambar-gambar yang di ambil ke dalam komputer Pastikan

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

HELP - VB TIPS. ANIMATE AN IMAGE BOX Insert a module. In this module, create a global variable: Global x

HELP - VB TIPS. ANIMATE AN IMAGE BOX Insert a module. In this module, create a global variable: Global x HELP - VB TIPS Load an image to an image box from a certain folder If you use this method, won t work on N:\ To load an image to a image control Image1.Picture = LoadPicture("H:\MyVBfolder\stop.gif") Load

More information

Universitas Sumatera Utara

Universitas Sumatera Utara Option Explicit DefLng A-Z '--------------------------------------------------------------------------------------------- #Const Test = False '---------------------------------------------------------------------------------------------

More information

Universitas Sumatera Utara

Universitas Sumatera Utara 43 L A M P I R A N 44 Penulisan Kode Program Aplikasi Game Tetris A. Kode program aplikasi game tetris untuk form1 ( MainF.frm ) adalah sebagai berikut. Dim BANK As Database Dim RS As DAO.Recordset Private

More information

MANAGE COURSE RESOURCES LABEL TEXT PAGE URL BOOK FILE FOLDER IMS CONTENT PACKAGE

MANAGE COURSE RESOURCES LABEL TEXT PAGE URL BOOK FILE FOLDER IMS CONTENT PACKAGE MANAGE COURSE RESOURCES LABEL TEXT PAGE URL BOOK FILE FOLDER IMS CONTENT PACKAGE Edit summary Edit tajuk Ke kanan Ke atas/bawah NOTA: Klik untuk sembunyikan isi kandungan. Klik untuk padam/menghapus isi

More information

Visual Basic ,

Visual Basic , Visual Basic 6.0..!"# !"# $#%$$"& ( ( 6.0) 2 $, -&, - 1.,. Caption Hello, On O ff. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm. 2/59 !"# $#%$$"& ( ( 6.0) 3 $, -&, - 3/59 !"# $#%$$"&

More information

1. Menu Utama. Private Sub abt_click() frmabout.show End Sub. Private Sub dafabsenhar_click() frmdafabsensihar.show End Sub

1. Menu Utama. Private Sub abt_click() frmabout.show End Sub. Private Sub dafabsenhar_click() frmdafabsensihar.show End Sub 1. Menu Utama Private Sub abt_click() frmabout.show Private Sub dafabsenhar_click() frmdafabsensihar.show Private Sub dafpeg_click() frmdafpegawai.show Private Sub dafuser_click() frmdaftaruser.show Private

More information

TEKNOLOGI, GADJET & KEIBUBAPAAN

TEKNOLOGI, GADJET & KEIBUBAPAAN TEKNOLOGI, GADJET & KEIBUBAPAAN Kandungan YouTube Google Chrome Android Device Manager Google Keep Call recorder KeePassDroid K9 protection TeamViewer Zulkifli Alang Mahat A. YouTube 1. Klik apps youtube

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

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

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

Visual Basic , ,. Caption Hello, On Off. * + +, -. 1-Arrow, , 2- Cross. - project1.vbp, 4-form1.frm.

Visual Basic , ,. Caption Hello, On Off. * + +, -. 1-Arrow, , 2- Cross. - project1.vbp, 4-form1.frm. Visual Basic 6.0 1.,. Caption Hello, On Off. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm...!"# 2/59 3...

More information

Project : Version : Date : 11/04/2016 Author : Freeware, for evaluation and non-commercial use only Company : Comments:

Project : Version : Date : 11/04/2016 Author : Freeware, for evaluation and non-commercial use only Company : Comments: Lampiran 1 Listing program dari seluruh sistem. /***************************************************** This program was produced by the CodeWizardAVR V2.04.9 Evaluation Automatic Program Generator Copyright

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 KEMENTERIAN PENDIDIKAN NASIONAL UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM PROGRAM STUDI D III TEKNIK INFORMATIKA Jl. Bioteknologi No. 1 Kampus USU MEDAN Telp/FAX.

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

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

Panduan Pengguna Autodesk Education Community

Panduan Pengguna Autodesk Education Community Panduan Pengguna Autodesk Education Community ISI KANDUNGAN 1. Mendaftar Akaun Autodesk Education bagi Pelajar, Kakitangan dan Institusi Akademik...1 2. Muat Turun Perisian dan Lesen Autodesk Education

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

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

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

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6)

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) AGENDA 3. Executing VBA

More information

LAMPIRAN A PROGRAM FLOWSTONE

LAMPIRAN A PROGRAM FLOWSTONE LAMPIRAN A PROGRAM FLOWSTONE A-1 Tampilan GUI pada FlowStone A-2 Program Tambahan yang Dibuat Untuk Membaca Frekuensi A-3 Program Tambahan yang Dibuat Untuk Menyimpan Data A-4 LAMPIRAN B PROGRAM VISUAL

More information

An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is

An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is InputBox( ) Function An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is A = InputBox ( Question or Phrase, Window Title, ) Example1: Integer:

More information

LISTING PROGRAM. 1. Menu Utama

LISTING PROGRAM. 1. Menu Utama LISTING PROGRAM 1. Menu Utama Option Explicit Dim rssms As Recordset Dim stopen As String * 1 Dim IDSms As Integer Dim rspesan As Recordset Dim Kode As String * 1 Dim rspaket As Recordset Dim NmPaket As

More information

'... '... '... Module created: unknown '... Proj finished: March 21, 2012 '... '...

'... '... '... Module created: unknown '... Proj finished: March 21, 2012 '... '... ThisWorkbook - 1 If g_bdebugmode Then '... Module created: unknown '... Proj finished: March 21, 2012 '************************* CLASS-LEVEL DECLARATIONS ************************** Option Explicit Option

More information

Visual Basic ,

Visual Basic , Visual Basic 6.0 1.,. Caption Hello, On O ff. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm...!"# 2/59 3...

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

M2U MANUAL PENGGUNA USER MANUAL M2UNHJ. 0 P a g e BAHAGIAN SIMPANAN DAN PENGELUARAN JABATAN KHIDMAT PENDEPOSIT DAN OPERASI LEMBAGA TABUNG HAJI

M2U MANUAL PENGGUNA USER MANUAL M2UNHJ. 0 P a g e BAHAGIAN SIMPANAN DAN PENGELUARAN JABATAN KHIDMAT PENDEPOSIT DAN OPERASI LEMBAGA TABUNG HAJI M2U MANUAL PENGGUNA USER MANUAL M2UNHJ 0 P a g e BAHAGIAN SIMPANAN DAN PENGELUARAN JABATAN KHIDMAT PENDEPOSIT DAN OPERASI LEMBAGA TABUNG HAJI KANDUNGAN (TABLE OF CONTENTS) BIL PERKARA HALAMAN 1 TERMA DAN

More information

ISI KANDUNGAN. Tarikh akhir kemaskini: 9 November 2016 Hakcipta Pusat Komputer, UTeM ms 2

ISI KANDUNGAN. Tarikh akhir kemaskini: 9 November 2016 Hakcipta Pusat Komputer, UTeM ms 2 ISI KANDUNGAN UTeM RESEARCH INFORMATION SYSTEM... 3 Pengenalan... 4 Sub Modul Short Term Grant Application... 8 Sub Menu Application... 9 Sub Menu Personel Particulars... 14 Sub Menu List Of Previous Project...

More information

DroidBasic Syntax Contents

DroidBasic Syntax Contents DroidBasic Syntax Contents DroidBasic Syntax...1 First Edition...3 Conventions Used In This Book / Way Of Writing...3 DroidBasic-Syntax...3 Variable...4 Declaration...4 Dim...4 Public...4 Private...4 Static...4

More information

CMPT 110 MIDTERM OCTOBER 18, 2001

CMPT 110 MIDTERM OCTOBER 18, 2001 CMPT 110 MIDTERM OCTOBER 18, 2001 1 What will be displayed when the command button is clicked? 7% Level of difficulty 7 (out of 10) Assume there is a command button called cmdbutton Assume there is a picturebox

More information

'... '... '... Developer: William H. White (consultant) '... With: TEKsystems Inc. '... For: AIG. Financial Information Systems

'... '... '... Developer: William H. White (consultant) '... With: TEKsystems Inc.   '... For: AIG. Financial Information Systems ThisWorkbook - 1 Developer: William H. White (consultant) With: TEKsystems Inc. www.teksystems.com For: AIG Financial Information Systems 1 NY Plaza, 15th floor Current contact: william.white@aig.com (212)

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

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

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

NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY

NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY UNESCO-NIGERIA TECHNICAL & VOCATIONAL EDUCATION REVITALISATION PROJECT-PHASE II NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY OOBASIC/VISUAL BASIC PROGRAMMING COURSE CODE: COM 211 YEAR I SEMESTER II PRACTICAL

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

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

Please answer questions in the space provided. Question point values are shown in parentheses.

Please answer questions in the space provided. Question point values are shown in parentheses. IS 320 Spring 99 Page 1 Please answer questions in the space provided. Question point values are shown in parentheses. 1. (15) Assume you have the following variable declarations and assignments: Dim A

More information

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. SECTION B : 50 MARKS BAHAGIAN B : 50 MARKAH INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan berstruktur. Jawab

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

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

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

ONLINE RAILWAY RESERVATION SYSTEM

ONLINE RAILWAY RESERVATION SYSTEM Ex. No: Date: ONLINE RAILWAY RESERVATION SYSTEM AIM: methodologies To develop a software for online railway reservation system project by using software ALGORITHM: Step1: Open a VB project. Step2: Design

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

IMBASAN KEMBALI BENGKEL SELF RELIANCE 1

IMBASAN KEMBALI BENGKEL SELF RELIANCE 1 MALAYSIAN PUBLIC SECTOR OSS MASTER PL FASA III SELF RELIANCE IMBASAN KEMBALI BENGKEL SELF RELIANCE 1 Self Reliance Workshop 2 1 Objektif Pembentangan Mengimbas kembali Tema, Objektif dan Hasil Bengkel

More information

LAMPIRAN 1 TATA CARA PENGGUNAAN SOFTWARE ALGORITMA GENETIKA

LAMPIRAN 1 TATA CARA PENGGUNAAN SOFTWARE ALGORITMA GENETIKA LAMPIRAN 1 TATA CARA PENGGUNAAN SOFTWARE ALGORITMA GENETIKA Langkah-langkah penggunaan Software Algoritma Genetika Job Shop : 1. Buka program Algoritma Genetika Job Shop 2. Masukkan data-data yang dibutuhkan

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

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

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

Remainder Cordial Labeling of Graphs

Remainder Cordial Labeling of Graphs Journal of Algorithms and Computation journal homepage: http://jac.ut.ac.ir Remainder Cordial Labeling of Graphs R. Ponraj 1, K. Annathurai and R. Kala 3 1 Department of Mathematics, Sri Paramakalyani

More information

Chapter 1. Block Diagram. Text .. 1

Chapter 1. Block Diagram. Text .. 1 Chapter 1 ก Visual Basic Scilab ก ก Visual Basic Scilab ก ก (Temporary File) ก ก ก ก ก ก Visual Basic ก (Interface) ก Scilab Text File ก Visual Basic ก ก ก ก Block Diagram ก ก Visual Basic ก Scilab ก.sce

More information

Angel International School - Manipay 1 st Term Examination November, 2015

Angel International School - Manipay 1 st Term Examination November, 2015 Grade 10 Angel International School - Manipay 1 st Term Examination November, 2015 Information & Communication Technology Duration: 3.00 Hours Part 1 Choose the appropriate answer 1) Find the correct type

More information

UNIVERSITI SAINS MALAYSIA. CST232 Operating Systems [Sistem Pengendalian]

UNIVERSITI SAINS MALAYSIA. CST232 Operating Systems [Sistem Pengendalian] UNIVERSITI SAINS MALAYSIA First Semester Examination 2014/2015 Academic Session December 2014/January 2015 CST232 Operating Systems [Sistem Pengendalian] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS

More information