LAMPIRAN LIST PROGRAM

Size: px
Start display at page:

Download "LAMPIRAN LIST PROGRAM"

Transcription

1 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 As ADODB.Recordset Public rstb_user As ADODB.Recordset Public Sub konek_db() On Error GoTo konekerr If conn.state = 1 Then conn.close Set conn = New ADODB.Connection Set rstb_pendekatan = New ADODB.Recordset Set rstb_solusi = New ADODB.Recordset Set rstb_alasan = New ADODB.Recordset Set rstb_piliham = New ADODB.Recordset Set rstb_user = New ADODB.Recordset conn.open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + App.Path + "\hukumfiqih.mdb;persist Security Info=False" Exit Sub konekerr: MsgBox "Terdapat kesalahan! " & Err.Description, vbcritical, "Peringatan" Public Sub diskonek_db() conn.close 2. Form Admin

2 Public baru As Boolean Dim rspilih As ADODB.Recordset Private Sub cboedit_click() If cboedit.text = "Pilihan" Then frmtambahpilihan.show vbmodal frmsolusi.show vbmodal Me.Hide Private Sub cmdbatal_click() KunciTeks True tombolawal True Adodc1.Recordset.Cancel KosongkanForm Private Sub cmdhapus_click() On Error GoTo hapuserr Dim pil pil = MsgBox("Apakah anda yakin data ini akan dihapus?", vbquestion + vbyesno + vbdefaultbutton2, "Konfirmasi") If pil = vbyes Then Adodc1.Recordset.Delete Adodc1.Recordset.MoveLast MsgBox "Data Berhasil Dihapus!", vbinformation, "Informasi" Exit Sub hapuserr: MsgBox "Terdapat kesalahan! " & Err.Description, vbcritical, "Peringatan"

3 Private Sub cmdkeluar_click() Me.Hide Private Sub cmdrefresh_click() DataGrid1.Refresh Private Sub cmdsimpan_click() konek_db On Error GoTo simpanerr Dim rscek As ADODB.Recordset If txtidpendekatan.text = "" Or txtidpilihan.text = "" Or txtpertanyaan.text = "" Then MsgBox "Informasi belum lengkap! Lengkapi terlebih dahulu!", vbexclamation, "Peringatan" txtidpendekatan.setfocus Set rscek = New ADODB.Recordset rscek.open "select * from tb_pendekatan where Id_pendekatan='" & txtidpendekatan.text & "'", conn, 1, 2 If Not rscek.eof And baru Then MsgBox "Data dengan kode " & txtidpendekatan.text & " sudah ada, silahkan ganti dengan kode yang lain!", vbexclamation, "Peringatan" txtidpendekatan.setfocus: SendKeys "{HOME}+{END}" With Adodc1.Recordset Set rstb_pendekatan = New ADODB.Recordset rstb_pendekatan.open "insert into tb_pendekatan values ('" & txtidpendekatan.text & "', '" & txtpertanyaan.text & "', '" & txtfya.text & "', '" & cboya.text & "', '" & txtidpilihan.text & "')", conn, 1, 2 If rstb_pendekatan.bof Then.AddNew

4 .Update MsgBox "Data berhasil disimpan!", vbinformation, "Informasi" KunciTeks True tombolawal True KosongkanForm End With Exit Sub diskonek_db simpanerr: MsgBox "Terdapat kesalahan! " & Err.Description, vbcritical, "Peringatan" Private Sub cmdtambah_click() baru = True KunciTeks False tombolawal False txtidpendekatan.setfocus Sub tombolawal(kunci As Boolean) cmdtambah.enabled = kunci cmdsimpan.enabled = Not kunci cmdbatal.enabled = Not kunci cmdubah.enabled = kunci cmdhapus.enabled = kunci cmdkeluar.enabled = kunci Private Sub cmdubah_click() On Error GoTo ubaherr KunciTeks False

5 tombolawal False With Adodc1.Recordset Set rstb_pendekatan = New ADODB.Recordset rstb_pendekatan.open "select *from tb_pendekatan", conn, 1, 2 txtidpendekatan.text = rstb_pendekatan!id_pendekatan txtidpilihan.text = rstb_pendekatan!id_pilihan txtpertanyaan.text = rstb_pendekatan!pertanyaan txtfya.text = rstb_pendekatan!faktaya cboya.text = rstb_pendekatan!ya End With txtidpendekatan.setfocus baru = False Exit Sub ubaherr: MsgBox "Terdapat kesalahan! " & Err.Description, vbcritical, "Peringatan" Private Sub form_load() KunciTeks True tombolawal True Adodc1.ConnectionString = conn.connectionstring Adodc1.RecordSource = "select * from tb_pendekatan" 'Adodc1.Refresh Set DataGrid1.DataSource = Adodc1 DataGrid1.Columns(0).Width = 400 cboedit.additem "Solusi" cboedit.additem "Pilihan"

6 Sub KosongkanForm() txtidpendekatan.text = " " txtidpilihan.text = Empty txtpertanyaan.text = Empty txtfya.text = Empty cboya.text = Empty Sub KunciTeks(kunci As Boolean) txtidpendekatan.locked = kunci txtpertanyaan.locked = kunci txtfya.locked = kunci cboya.locked = kunci 3. Form Alasan Private Sub Command1_Click() End Sub tampil() konek_db LabelAlas.Caption = "" Set rstb_alasan = New ADODB.Recordset rstb_alasan.open "select *from tb_alasan", conn, 1, 2 rstb_alasan.movefirst Select Case frmpilihan.cbopilih.listindex Case 0 rstb_alasan.find "Id_alasan='A1'" LabelAlas.Caption = rstb_alasan!alasan Case 1

7 rstb_alasan.find "Id_alasan='A2'" LabelAlas.Caption = rstb_alasan!alasan Case 2 rstb_alasan.find "Id_alasan='A3'" LabelAlas.Caption = rstb_alasan!alasan Case 3 rstb_alasan.find "Id_alasan='A4'" LabelAlas.Caption = rstb_alasan!alasan Case 4 rstb_alasan.find "Id_alasan='A5'" LabelAlas.Caption = rstb_alasan!alasan Case 5 rstb_alasan.find "Id_alasan='A6'" LabelAlas.Caption = rstb_alasan!alasan Case 6 rstb_alasan.find "Id_alasan='A7'" LabelAlas.Caption = rstb_alasan!alasan Case 7 rstb_alasan.find "Id_alasan='A8'" LabelAlas.Caption = rstb_alasan!alasan End Select Private Sub form_load() tampil 4. Form Hasil Pendekatan Private Sub cmdalasan_click() frmalasan.show vbmodal Private Sub cmdsiap_click()

8 Me.Hide frmpendekatan.hide frmpilihan.hide Private Sub form_load() tampil Sub tampil() konek_db Set rstb_pendekatan = New ADODB.Recordset rstb_pendekatan.open "select *from tb_pendekatan", conn, 1, 2 rstb_pendekatan.movefirst Select Case frmpilihan.cbopilih.listindex Case 0 rstb_pendekatan.find "Id_pendekatan='PD1'" Labelhasil.Caption = rstb_pendekatan!faktaya Case 1 rstb_pendekatan.find "Id_pendekatan='PD4'" Labelhasil.Caption = rstb_pendekatan!faktaya Case 2 rstb_pendekatan.find "Id_pendekatan='PD7'" Labelhasil.Caption = rstb_pendekatan!faktaya Case 3 rstb_pendekatan.find "Id_pendekatan='PD10'" Labelhasil.Caption = rstb_pendekatan!faktaya Case 4 rstb_pendekatan.find "Id_pendekatan='PD13'" Labelhasil.Caption = rstb_pendekatan!faktaya Case 5 rstb_pendekatan.find "Id_pendekatan='PD14'"

9 Labelhasil.Caption = rstb_pendekatan!faktaya Case 6 rstb_pendekatan.find "Id_pendekatan='PD15'" Labelhasil.Caption = rstb_pendekatan!faktaya Case 7 rstb_pendekatan.find "Id_pendekatan='PD18'" Labelhasil.Caption = rstb_pendekatan!faktaya End Select rstb_pendekatan.close diskonek_db 5. Form Login Private Sub cmdkeluar_click() Unload Me Private Sub cmdmasuk_click() On Error GoTo login_err If cbolevel.text = "Pengguna" Then txtuser = "Pengguna" frmpilihan.show vbmodal Unload Me Exit Sub Set rstb_user = New ADODB.Recordset rstb_user.open "select *from tb_user where " & "username='" & txtuser.text & "' and " & "password='" & txtpass.text & "'", conn, 1, 2 If Not rstb_user.eof Then MsgBox "login berhasil" frmadmin.show vbmodal Unload Me

10 MsgBox "login gagal" rstb_user.close login_err: MsgBox Err.Description Private Sub form_load() cbolevel.additem "Administrator" cbolevel.additem "Pengguna" 6. Form Me Private Sub Command1_Click() Unload Me 7. Form Pendekatan Private Sub cmdselesai_click() Unload Me Private Sub cmdya_click() On Error Resume Next Set rstb_pertanyaan = New ADODB.Recordset If cbopilihpertanyaan = "" Then MsgBox "Maaf, Anda harus memilih kategori Permasalahan", vbokcancel, "Peringatan" cbopilihpertanyaan.text = rstb_pertanyaan Set rstb_alasan = New ADODB.Recordset rstb_alasan.addnew

11 rstb_alasan!id_alasan = rstb_pendekatan!id_pendekatan rstb_alasan!alasan = rstb_pendekatan!faktaya rstb_pendekatan.update jwb = rstb_pendekatan!ya If Left(jwb, 1) = "T" Then rstb_pendekatan.movefirst rstb_pendekatan.find " Id_pendekatan= '" & jwb & "' " Label1.Caption = rstb_pendekatan!pertanyaan rstb_solusi.movefirst rstb_solusi.find " Id_solusi= '" & jwb & "' " frmhasilpendekatan.label1.caption = rstb_solusi!solusi frmhasilpendekatan.show vbmodal Private Sub Label1_Click() Label1.Caption = cbopilihpertanyaan.text Private Sub cmdtidak_click() Label1.Caption = "" cbopilihpertanyaan.text = "" cbopilihpertanyaan.setfocus Private Sub form_load() tampil Sub tampil() konek_db

12 cbopilihpertanyaan.clear Set rstb_pendekatan = New ADODB.Recordset rstb_pendekatan.open "select *from tb_pendekatan", conn, 1, 2 rstb_pendekatan.movefirst Select Case frmpilihan.cbopilih.listindex Case 0 rstb_pendekatan.find "Id_pendekatan='PD1'" cbopilihpertanyaan.text = rstb_pendekatan!pertanyaan Case 1 rstb_pendekatan.find "Id_pendekatan='PD4'" cbopilihpertanyaan.text = rstb_pendekatan!pertanyaan Case 2 rstb_pendekatan.find "Id_pendekatan='PD8'" cbopilihpertanyaan.text = rstb_pendekatan!pertanyaan Case 3 rstb_pendekatan.find "Id_pendekatan='PD12'" cbopilihpertanyaan.text = rstb_pendekatan!pertanyaan Case 4 rstb_pendekatan.find "Id_pendekatan='PD13'" cbopilihpertanyaan.text = rstb_pendekatan!pertanyaan Case 5 rstb_pendekatan.find "Id_pendekatan='PD14'" cbopilihpertanyaan.text = rstb_pendekatan!pertanyaan Case 6 rstb_pendekatan.find "Id_pendekatan='PD15'" cbopilihpertanyaan.text = rstb_pendekatan!pertanyaan Case 7 rstb_pendekatan.find "Id_pendekatan='PD18'" cbopilihpertanyaan.text = rstb_pendekatan!pertanyaan End Select rstb_pendekatan.close

13 diskonek_db 8. Form Pilihan Private Sub cmdpilih_click() If cbopilih.text = " " Then MsgBox "Pilihan Kategori permasalahan tidak boleh kosong.", vbcritical + vbokonly, "Peringatan" frmpendekatan.show vbmodal Sub tampil() konek_db Dim i As Integer i = 0 cbopilih.clear Set rstb_pilihan = New ADODB.Recordset rstb_pilihan.open "select *from tb_pilihan", conn, 1, 2 rstb_pilihan.movefirst While Not rstb_pilihan.eof cbopilih.additem rstb_pilihan!pilihan, i i = i + 1 rstb_pilihan.movenext Wend diskonek_db cmdpilih.enabled = True Private Sub form_load() tampil

14 Private Sub Command2_Click() cbopilih.text = " " cbopilih.setfocus Private Sub Command3_Click() Unload Me 9. Form ProgramIni Private Sub Command1_Click() Unload Me 10. Form Solusi Public baru As Boolean Dim rspilih As ADODB.Recordset Private Sub cmdbatal_click() KunciTeks True tombolawal True Adodc1.Recordset.Cancel KosongkanForm Private Sub cmdhapus_click() On Error GoTo hapuserr Dim pil pil = MsgBox("Apakah anda yakin data ini akan dihapus?", vbquestion + vbyesno + vbdefaultbutton2, "Konfirmasi") If pil = vbyes Then Adodc1.Recordset.Delete Adodc1.Recordset.MoveLast MsgBox "Data Berhasil Dihapus!", vbinformation, "Informasi"

15 Exit Sub hapuserr: MsgBox "Terdapat kesalahan! " & Err.Description, vbcritical, "Peringatan" Private Sub cmdkeluar_click() Me.Hide Private Sub cmdsimpan_click() konek_db On Error GoTo simpanerr Dim rscek As ADODB.Recordset If txtidsolusi.text = "" Or txtsolusi.text = "" Then MsgBox "Informasi belum lengkap! Lengkapi terlebih dahulu!", vbexclamation, "Peringatan" txtidsolusi.setfocus Set rscek = New ADODB.Recordset rscek.open "select * from tb_solusi where Id_solusi='" & txtidsolusi.text & "'", conn, 1, 2 If Not rscek.eof And baru Then MsgBox "Solusi dengan kode " & txtidsolusi.text & " sudah ada, silahkan ganti dengan kode yang lain!", vbexclamation, "Peringatan" txtidsolusi.setfocus: SendKeys "{HOME}+{END}" With Adodc1.Recordset Set rstb_solusi = New ADODB.Recordset rstb_solusi.open "insert into tb_solusi values ('" & txtidsolusi.text & "', '" & txtsolusi.text & "')", conn, 1, 2 If rstb_solusi.bof Then.AddNew.Update

16 MsgBox "Data berhasil disimpan!", vbinformation, "Informasi" KunciTeks True tombolawal True KosongkanForm End With Exit Sub diskonek_db simpanerr: MsgBox "Terdapat kesalahan! " & Err.Description, vbcritical, "Peringatan" Private Sub cmdtambah_click() baru = True KunciTeks False tombolawal False txtidsolusi.setfocus Sub tombolawal(kunci As Boolean) cmdtambah.enabled = kunci cmdsimpan.enabled = Not kunci cmdbatal.enabled = Not kunci cmdubah.enabled = kunci cmdhapus.enabled = kunci cmdkeluar.enabled = kunci Private Sub cmdubah_click() On Error GoTo ubaherr KunciTeks False tombolawal False

17 With Adodc1.Recordset Set rstb_solusi = New ADODB.Recordset rstb_solusi.open "select *from tb_solusi", conn, 1, 2 txtidsolusi.text = rstb_solusi!id_solusi txtsolusi.text = rstb_solusi!solusi End With txtidsolusi.setfocus baru = False Exit Sub ubaherr: MsgBox "Terdapat kesalahan! " & Err.Description, vbcritical, "Peringatan" Private Sub form_load() KunciTeks True tombolawal True Adodc1.ConnectionString = conn.connectionstring Adodc1.RecordSource = "select * from tb_solusi" Set DataGrid1.DataSource = Adodc1 DataGrid1.Columns(0).Width = 400 Sub KosongkanForm() txtidsolusi.text = " " txtsolusi.text = "" Sub KunciTeks(kunci As Boolean) txtidsolusi.locked = kunci txtsolusi.locked = kunci

18 11. Form Tambah Pilihan Public baru As Boolean Dim rspilih As ADODB.Recordset Private Sub cmdbatal_click() KunciTeks True tombolawal True Adodc1.Recordset.Cancel KosongkanForm Private Sub cmdhapus_click() On Error GoTo hapuserr Dim pil pil = MsgBox("Apakah anda yakin data ini akan dihapus?", vbquestion + vbyesno + vbdefaultbutton2, "Konfirmasi") If pil = vbyes Then Adodc1.Recordset.Delete Adodc1.Recordset.MoveLast MsgBox "Data Berhasil Dihapus!", vbinformation, "Informasi" Exit Sub hapuserr: MsgBox "Terdapat kesalahan! " & Err.Description, vbcritical, "Peringatan" Private Sub cmdkeluar_click() Me.Hide Private Sub cmdsimpan_click() konek_db On Error GoTo simpanerr Dim rscek As ADODB.Recordset

19 If txtidpilihan.text = "" Or txtpilihan.text = "" Then MsgBox "Informasi belum lengkap! Lengkapi terlebih dahulu!", vbexclamation, "Peringatan" txtidpilihan.setfocus Set rscek = New ADODB.Recordset rscek.open "select * from tb_pilihan where Id_pilihan='" & txtidpilihan.text & "'", conn, 1, 2 If Not rscek.eof And baru Then MsgBox "Data dengan kode " & txtidsolusi.text & " sudah ada, silahkan ganti dengan kode yang lain!", vbexclamation, "Peringatan" txtidpilihan.setfocus: SendKeys "{HOME}+{END}" With Adodc1.Recordset Set rstb_pilihan = New ADODB.Recordset rstb_pilihan.open "insert into tb_pilihan values ('" & txtidpilihan.text & "', '" & txtpilihan.text & "')", conn, 1, 2 If rstb_pilihan.bof Then.AddNew.Update MsgBox "Data berhasil disimpan!", vbinformation, "Informasi" KunciTeks True tombolawal True KosongkanForm End With Exit Sub diskonek_db simpanerr: MsgBox "Terdapat kesalahan! " & Err.Description, vbcritical, "Peringatan"

20 Private Sub cmdtambah_click() baru = True KunciTeks False tombolawal False txtidpilihan.setfocus Sub tombolawal(kunci As Boolean) cmdtambah.enabled = kunci cmdsimpan.enabled = Not kunci cmdbatal.enabled = Not kunci cmdubah.enabled = kunci cmdhapus.enabled = kunci cmdkeluar.enabled = kunci Private Sub cmdubah_click() On Error GoTo ubaherr KunciTeks False tombolawal False With Adodc1.Recordset Set rstb_pilihan = New ADODB.Recordset rstb_pilihan.open "select *from tb_pilihan", conn, 1, 2 txtidpilihan.text = rstb_pilihan!id_pilihan txtpilihan.text = rstb_pilihan!pilihan End With txtidpilihan.setfocus baru = False Exit Sub ubaherr:

21 MsgBox "Terdapat kesalahan! " & Err.Description, vbcritical, "Peringatan" Private Sub form_load() KunciTeks True tombolawal True Adodc1.ConnectionString = conn.connectionstring Adodc1.RecordSource = "select * from tb_pilihan" Set DataGrid1.DataSource = Adodc1 DataGrid1.Columns(0).Width = 400 Sub KosongkanForm() txtidpilihan.text = " " txtpilihan.text = "" Sub KunciTeks(kunci As Boolean) txtidpilihan.locked = kunci txtpilihan.locked = kunci 12. Form Utama Private Sub close_click() Dim pesan pesan = MsgBox("Anda yakin mau keluar dari program?", vbquestion + vbyesno + vbdefaultbutton2, "Konfirmasi") If pesan = vbyes Then Unload Me

22 Private Sub cmdlogin_click() Dim pesan pesan = MsgBox("Selamat Datang, Silakan Login", vbyes, "Konfirmasi") frmlogin.show vbmodal Private Sub cmdme_click() frmme.show vbmodal Private Sub edda_click() frmlogin.show vbmodal Private Sub form_load() konek_db Private Sub form_activate() Call form_load Private Sub Form_Unload(Cancel As Integer) diskonek_db Unload Me End Private Sub mati_click() Dim pesan pesan = MsgBox("Anda yakin mau Log-Off dari sistem?", vbquestion + vbyesno + vbdefaultbutton2, "Konfirmasi") If pesan = vbyes Then frmlogin.show Me.Hide

23 Private Sub me_click() frmprogramini.show vbmodal Private Sub saya_click() frmme.show vbmodal

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

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

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

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

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

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

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

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

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

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

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

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

Understanding the MsgBox command in Visual Basic

Understanding the MsgBox command in Visual Basic Understanding the MsgBox command in Visual Basic This VB2008 tutorial explains how to use the MsgBox function in Visual Basic. This also works for VBS MsgBox. The MsgBox function displays a message in

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

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

Nilai Input (Peringkat Alternatif Fuzzy dan Crisp Terhadap Kriteria)

Nilai Input (Peringkat Alternatif Fuzzy dan Crisp Terhadap Kriteria) LAMPIRAN-A PENYELESAIAN DENGAN METODE FUZZY TOPSIS Secara umum, prosedur Fuzzy TOPSIS mengikuti langkah-langkah sebagai berikut: 1. Membuat matriks keputusan yang ternormalisasi, 2. Menentukan matriks

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

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

ต วอย างการสร างฟอร ม เมน การใช งาน ต วอย างการสร างฟอร ม เมน การใช งาน 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

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

LAMPIRAN A: Listing Program

LAMPIRAN A: Listing Program 78 LAMPIRAN A: Listing Program 1. Form Login Public Class FrmLogin Public user As String Private Sub CmdLogin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmdLogin.Click Dim

More information

Excel & Visual Basic for Applications (VBA)

Excel & Visual Basic for Applications (VBA) Class meeting #18 Monday, Oct. 26 th GEEN 1300 Introduction to Engineering Computing Excel & Visual Basic for Applications (VBA) user interfaces o on-sheet buttons o InputBox and MsgBox functions o userforms

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. PrivateSub KeluarToolStripMenuItem_Click(sender AsObject, e AsEventArgs) Handles KeluarToolStripMenuItem.Click Close() EndSub

LISTING PROGRAM. PrivateSub KeluarToolStripMenuItem_Click(sender AsObject, e AsEventArgs) Handles KeluarToolStripMenuItem.Click Close() EndSub LISTING PROGRAM 1.Tampilan awal PublicClassmm PrivateSub InputDataGuruToolStripMenuItem_Click(sender AsObject, e AsEventArgs) Handles InputDataGuruToolStripMenuItem.Click guru.show() Me.Hide() EndSub PrivateSub

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

Programming Concepts and Skills. Arrays continued and Functions

Programming Concepts and Skills. Arrays continued and Functions Programming Concepts and Skills Arrays continued and Functions Fixed-Size vs. Dynamic Arrays A fixed-size array has a limited number of spots you can place information in. Dim strcdrack(0 to 2) As String

More information

6/14/2010. VBA program units: Subroutines and Functions. Functions: Examples: Examples:

6/14/2010. VBA program units: Subroutines and Functions. Functions: Examples: Examples: VBA program units: Subroutines and Functions Subs: a chunk of VBA code that can be executed by running it from Excel, from the VBE, or by being called by another VBA subprogram can be created with the

More information

Lookup Project. frmlookup (Name: object is a combo box, style 2); use 4 labels: 2 for phone, 2 for mail. MsgBox Function:

Lookup Project. frmlookup (Name: object is a combo box, style 2); use 4 labels: 2 for phone, 2 for mail. MsgBox Function: Lookup Project frmlookup (Name: object is a combo box, style 2); use 4 labels: 2 for phone, 2 for mail. MsgBox Function: Help About, in a Message Box lookup.vbp programmed by C.Gribble Page 2 Code for

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

Rooftop Industries Pvt. Ltd.

Rooftop Industries Pvt. Ltd. Rooftop Industries Pvt. Ltd. Production and inventory management system A level Computing Project Shritesh Bhattarai Little Angels' College 1 Table of Contents Definition, investigation and analysis...

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

LAMPIRAN A PROGRAM ADMINISTRASI

LAMPIRAN A PROGRAM ADMINISTRASI LAMPIRAN A PROGRAM ADMINISTRASI Program Administrasi FORM HOME ==load form tarif yang berlaku== Private Sub Cmd_DftrTarif_Click() End Sub Load Frm_Tarif Frm_Tarif.Show ==load form isi ulang kartu== Private

More information

Financial Functions (all with subtypes: Normal, Stairs, Points, Height, Hollow, Colors, Marks, No Border except where indicated):

Financial Functions (all with subtypes: Normal, Stairs, Points, Height, Hollow, Colors, Marks, No Border except where indicated): Financial Charting in TeeChart Pro TeeChart Pro has always been at the cutting edge of Financial Charting and the ActiveX v6 makes this very clear; with three distinct financial series and fourteen dedicated

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

EMPLOYEE PAYROLL SYSTEM

EMPLOYEE PAYROLL SYSTEM EX.NO:1 DATE: EMPLOYEE PAYROLL SYSTEM AIM: To develop a Employee Payroll System using visual Basic. PROCEDURE: 1. Problem statement Software is to be designed for supporting a computerized employee payroll

More information

LAMPIRAN. Universitas Sumatera Utara

LAMPIRAN. Universitas Sumatera Utara LAMPIRAN 1. Modul Imports System.Data Imports System.Data.OleDb Module Module1 Public conn As OleDbConnection Public CMD As OleDbCommand Public DS As New DataSet Public DA As OleDbDataAdapter Public RD

More information

A Back-End Link Checker for Your Access Database

A Back-End Link Checker for Your Access Database A Back-End for Your Access Database Published: 30 September 2018 Author: Martin Green Screenshots: Access 2016, Windows 10 For Access Versions: 2007, 2010, 2013, 2016 Working with Split Databases When

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

variables programming statements

variables programming statements 1 VB PROGRAMMERS GUIDE LESSON 1 File: VbGuideL1.doc Date Started: May 24, 2002 Last Update: Dec 27, 2002 ISBN: 0-9730824-9-6 Version: 0.0 INTRODUCTION TO VB PROGRAMMING VB stands for Visual Basic. Visual

More information

TABLE OF CONTENTS ADVANCED VISUAL BASIC

TABLE OF CONTENTS ADVANCED VISUAL BASIC TABLE OF CONTENTS ADVANCED VISUAL BASIC TABLE OF CONTENTS ADVANCED VISUAL BASIC...1 REVIEW OF IMPORTANT PROGRAMMING CONCEPTS...4 OVERVIEW...4 EXCERPT FROM WIKIPEDIA ARTICLE ON CAMELCASE...5 REVIEW QUESTIONS...6

More information

Pengguna akan diberikan Username dan Password oleh Administrator untuk login sebagai admin/conference Manager bagi conference yang akan diadakan.

Pengguna akan diberikan Username dan Password oleh Administrator untuk login sebagai admin/conference Manager bagi conference yang akan diadakan. Conference Manager Roles Guide - PENGGUNA MANUAL Login. Pengguna akan diberikan Username dan Password oleh Administrator untuk login sebagai admin/conference Manager bagi conference yang akan diadakan.

More information

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB Visual Programming 1. What is Visual Basic? Visual Basic is a powerful application development toolkit developed by John Kemeny and Thomas Kurtz. It is a Microsoft Windows Programming language. Visual

More information

Universitas Sumatera Utara

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

More information

Private Sub Command2_Click() End End Sub. Private Sub Command3_Click() frmchangepassword.show End Sub. Private Sub Form_Activate() check_db End Sub

Private Sub Command2_Click() End End Sub. Private Sub Command3_Click() frmchangepassword.show End Sub. Private Sub Form_Activate() check_db End Sub Private Sub Command1_Click() On Error Resume If rs.state = adstateopen Then rs.close rs.open "select * from login where UserName='" & txtusername & "' And Log_Password='" & txtpassword & "'", conn, 1,

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

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

IFA/QFN VBA Tutorial Notes prepared by Keith Wong

IFA/QFN VBA Tutorial Notes prepared by Keith Wong Chapter 2: Basic Visual Basic programming 2-1: What is Visual Basic IFA/QFN VBA Tutorial Notes prepared by Keith Wong BASIC is an acronym for Beginner's All-purpose Symbolic Instruction Code. It is a type

More information

LAMPIRAN Lampiran Utama. a. Struktur Organisasi

LAMPIRAN Lampiran Utama. a. Struktur Organisasi LAMPIRAN 5.1. Lampiran Utama a. Struktur Organisasi b. Flowchart Prosedur Penggajian PT Timatex c. Coding List Class Koneksi package ta_552012010_aprilia; import java.sql.*; public class koneksi { private

More information

AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software

AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software Ex. No.1 Date: ONLINE COURSE RESERVATION AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software PROBLEM STATEMENT As the head of information systems for

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

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

How-To Guide. SigIDp (With Microsoft Access) Demo. Copyright Topaz Systems Inc. All rights reserved.

How-To Guide. SigIDp (With Microsoft Access) Demo. Copyright Topaz Systems Inc. All rights reserved. How-To Guide SigIDp (With Microsoft Access) Demo Copyright Topaz Systems Inc. All rights reserved. For Topaz Systems, Inc. trademarks and patents, visit www.topazsystems.com/legal. Table of Contents Overview...

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

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

Revisions: jee Initial jee SW Version 1.1 now includes the leave type Other

Revisions: jee Initial jee SW Version 1.1 now includes the leave type Other Memorandum To: From: File John Effland Date: 2005-03-10 Revisions: 2005-03-10 jee Initial 2006-02-24 jee SW Version 1.1 now includes the leave type Other Subject: Leave Calendar Program Architecture and

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

MgtOp 470 Business Modeling with Spreadsheets Sample Midterm Exam. 1. Spreadsheets are known as the of business analysis.

MgtOp 470 Business Modeling with Spreadsheets Sample Midterm Exam. 1. Spreadsheets are known as the of business analysis. Section 1 Multiple Choice MgtOp 470 Business Modeling with Spreadsheets Sample Midterm Exam 1. Spreadsheets are known as the of business analysis. A. German motor car B. Mexican jumping bean C. Swiss army

More information

MICROSOFT EXCEL. Membina Hamparan Elektronik Fungsi Hamparan Elektronik

MICROSOFT EXCEL. Membina Hamparan Elektronik Fungsi Hamparan Elektronik MICROSOFT EXCEL Membina Hamparan Elektronik Fungsi Hamparan Elektronik Microsoft Excel 2010 Kandungan Penggunaan Asas Excel Memformat Sel, Lembaran dan Buku Kerja (Work Book) Penggunaan Asas Excel Fail

More information

Cara Login Ke CPanel Hosting.

Cara Login Ke CPanel Hosting. Cara Login Ke CPanel Hosting. Perkara pertama yang perlu dibuat setelah mendapat akaun web hosting adalah anda perlu log masuk ke web hosting cpanel bagi membuat proses instalasi. Pengguna akan menerima

More information

Testing. ASP.NET MVC 2 Visual Studio Music Store

Testing. ASP.NET MVC 2 Visual Studio Music Store VERIFIKASI DAN VALIDASI PERANGKAT LUNAK SEMESTER GENAP TAHUN AKADEMIK 2009 2010 Testing ASP.NET MVC 2 Visual Studio 2010 Music Store Oleh: Alexander Rahardjo (5107100117) Fajar Dwi Nugroho (5107100137)

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

LAMPIRAN A-2 : LAPORAN PENJUALAN DOKUMEN KELUARAN

LAMPIRAN A-2 : LAPORAN PENJUALAN DOKUMEN KELUARAN LAMPIRAN A-2 : LAPORAN PENJUALAN DOKUMEN KELUARAN LAMPIRAN A-1 : NOTA DOKUMEN KELUARAN LAMPIRAN B MASUKAN SISTEM BERJALAN LAMPIRAN B-1 : DATA BARANG DOKUMEN MASUKAN LAMPIRAN B-2 : DATA PELANGGAN DOKUMEN

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

Lab Manual Visual Basic 6.0

Lab Manual Visual Basic 6.0 Lab Manual Visual Basic 6.0 What is Visual Basic? VISUAL BASIC is a high level programming language evolved from the earlier DOS version called BASIC. BASIC means Beginners' All-purpose Symbolic Instruction

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

Registration of Supplier (ROS) TM Supplier Registration Renewal via SUS Portal (Pembaharuan Pendaftaran Pembekal TM melalui SUS Portal)

Registration of Supplier (ROS) TM Supplier Registration Renewal via SUS Portal (Pembaharuan Pendaftaran Pembekal TM melalui SUS Portal) TM SUPPLIER REGISTRATION RENEWAL VIA SUPPLIER SELF-SERVICE (SUS) PORTAL USER GUIDE PEMBAHARUAN PENDAFTARAN PEMBEKAL TM MELALUI SUPPLIER SELF-SERVICE (SUS) PORTAL PANDUAN PENGGUNA Getting Started Step by

More information

VBA. VBA at a glance. Lecture 61

VBA. VBA at a glance. Lecture 61 VBA VBA at a glance Lecture 61 1 Activating VBA within SOLIDWORKS Lecture 6 2 VBA Sub main() Function Declaration Dim A, B, C, D, E As Double Dim Message, Title, Default Message = "A : " ' Set prompt.

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

MICROSOFT EXCEL 2000 LEVEL 5 VBA PROGRAMMING INTRODUCTION

MICROSOFT EXCEL 2000 LEVEL 5 VBA PROGRAMMING INTRODUCTION MICROSOFT EXCEL 2000 LEVEL 5 VBA PROGRAMMING INTRODUCTION Lesson 1 - Recording Macros Excel 2000: Level 5 (VBA Programming) Student Edition LESSON 1 - RECORDING MACROS... 4 Working with Visual Basic Applications...

More information

Propose a mathematical formula to verify the authenticity of any product of the integers using a scale (9) and verified using computer

Propose a mathematical formula to verify the authenticity of any product of the integers using a scale (9) and verified using computer (9) Propose a mathematical formula to verify the authenticity of any product of the integers using a scale (9) and verified using computer. (9). Abstract This research aims to propose a mathematical formula

More information

Creating Macros David Giusto, Technical Services Specialist, Synergy Resources

Creating Macros David Giusto, Technical Services Specialist, Synergy Resources Creating Macros David Giusto, Technical Services Specialist, Synergy Resources Session Background Ever want to automate a repetitive function or have the system perform calculations that you may be doing

More information

VBA Macro for Micro Focus Reflections Face-to-Face Orlando March 2018

VBA Macro for Micro Focus Reflections Face-to-Face Orlando March 2018 VBA Macro for Micro Focus Reflections Face-to-Face Orlando March 2018 Christopher Guertin Pharm D, MBA, BCPS Clinical Analyst, Pharmacy Benefits Management Objectives Define what a Macro is Explain why

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

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

Definition, Investigation and Analysis

Definition, Investigation and Analysis Definition, Investigation and Analysis Introduction and Nature of the Problem Introduction Pradhan Store is a wholesale store located in Nakhipot, Lalitpur. It has been providing its service since the

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

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

Sub clear() lblidver.text = Nothing lblstatus.text = Nothing

Sub clear() lblidver.text = Nothing lblstatus.text = Nothing LAMPIRAN Berikut merupakan listing code dari Form Verifikasi: Imports System.IO Public Class FrmVerifikasi_vb Dim FPDatabase As New FingerspotETouchSDK.FinFPDatabase Dim WithEvents verifikasi As FingerspotETouchSDK.FinFPVerification

More information

Cara Install Windows 7 Service Pack 1 Offline

Cara Install Windows 7 Service Pack 1 Offline Cara Install Windows 7 Service Pack 1 Offline Windows 7 SP0 2009 Obsolete use Windows 7 SP1 media To install Windows you will need to prepare and load F6FLPY SATA drivers otherwise downloads.dell.com/published/pages/index.html

More information

W97_Bablas_AC. Attribute VB_Name = "Module1" 'Attribute VB_Name = "DJOK" 'Creative design by me, dj ->

W97_Bablas_AC. Attribute VB_Name = Module1 'Attribute VB_Name = DJOK 'Creative design by me, dj -> Attribute VB_Name = "Module1" W97_Bablas_AC 'Attribute VB_Name = "DJOK" 'Creative design by me, dj -> d-j-ok@plasa.com 'Don't try this at home..., its very dangerous...!!! :p 'Copyleft 2003 Bogor, Indonesia

More information

Design of Remote Health Monitoring System Client

Design of Remote Health Monitoring System Client Original Research Article Design of Remote Health Monitoring System Client Hengyong Jiang,Wei Chen,Yutao Sun School of Computer Science and Technology, Shiyan University of Science and Technology, Hubei,

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

DAFTAR PUSTAKA. Bojic, Paul, 2008, Business Information System. Pearson Education Ltd., England

DAFTAR PUSTAKA. Bojic, Paul, 2008, Business Information System. Pearson Education Ltd., England DAFTAR PUSTAKA Bojic, Paul, 2008, Business Information System. Pearson Education Ltd., England Elib.unikom.ac.id, SQL Server, 27 April 2014. Jogiyanto. 2005. Analisis & Desain Sistem Informasi : Pendekatan

More information

The design and implementation of UML-based students information management system

The design and implementation of UML-based students information management system The design and implementation of UML-based students information management system Abstract Yunli Cheng 1, a, ChuanQin Li 2, b 1 Guangzhou Nanyang Polytechnic, Guangzhou 510925, China 2 Guangzhou Huaxia

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

Password Protect an Access Database

Password Protect an Access Database Access a Password Protected Microsoft Access Database from within Visual Basic 6 Have you ever wanted to password protect an Access Database that is a Data Store (a repository of Data) used in one of your

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

JABATAN KIMIA Kategori Arahan Kerja

JABATAN KIMIA Kategori Arahan Kerja Mukasurat: 1 daripada 10 1. TUJUAN Tujuan prosedur ini ditubuhkan adalah untuk memberikan arahan yang jelas bagi langkah atau tatacara bagaimana menjalankan analisis sampel menggunakan peralatan JEOL NMR

More information

Respond to Data Entry Events

Respond to Data Entry Events Respond to Data Entry Events Callahan Chapter 4 Understanding Form and Control Events Developer s Goal make data entry easy, fast, complete, accurate Many form- and control-level events occur as user works

More information

Registration of Supplier (ROS) TM Supplier Registration Renewal via SUS Portal (Pembaharuan Pendaftaran Pembekal TM melalui SUS Portal)

Registration of Supplier (ROS) TM Supplier Registration Renewal via SUS Portal (Pembaharuan Pendaftaran Pembekal TM melalui SUS Portal) TM SUPPLIER REGISTRATION RENEWAL VIA SUPPLIER SELF-SERVICE (SUS) PORTAL USER GUIDE PEMBAHARUAN PENDAFTARAN PEMBEKAL TM MELALUI SUPPLIER SELF-SERVICE (SUS) PORTAL PANDUAN PENGGUNA Getting Started Step by

More information

Control Properties. Example: Program to change background color

Control Properties. Example: Program to change background color Control Properties Before writing an event procedure for the control to response to an event, you have to set certain properties for the control to determine its appearance and how will it work with the

More information

Leveraging MapInfo ProViewer with Microsoft Visual Basic to provide company-wide access to spatial data resources.

Leveraging MapInfo ProViewer with Microsoft Visual Basic to provide company-wide access to spatial data resources. Leveraging MapInfo ProViewer with Microsoft Visual Basic to provide company-wide access to spatial data resources. Find a way to make data stored in MapInfo Professional tables accessible to anyone in

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

Create a Login System in Visual Basic. Creating a login system. Start a new visual basic Windows Forms application project. Call it Login System

Create a Login System in Visual Basic. Creating a login system. Start a new visual basic Windows Forms application project. Call it Login System Creating a login system Start a new visual basic Windows Forms application project Call it Login System Change the form TITLE from Form1 to Login System Add the following to the form Component Text Name

More information

Information Security Management System ISO/IEC 27001:2013

Information Security Management System ISO/IEC 27001:2013 Information Security Management System ISO/IEC 27001:2013 POLISI PEMINDAHAN & PELUPUSAN For PTM Use Only Date: 25 th Nov 2014 Written By: Nor ain Mohamed Ketua Bahagian Infrastruktur ICT Verified By: Haslina

More information

ICT SPM 2011 SUGGESTION ANSWER. Section A

ICT SPM 2011 SUGGESTION ANSWER. Section A ICT SPM 2011 SUGGESTION ANSWER Section A NO SOALAN 1 i Computer ethic / ethic ii Computer law / law 2 ii 4 iv 2 3 Output 4 True 5 Gigabyte / GB 6 i Operating ii Application 7 B / D D / B 8 B 9 A 10 i Radio

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