LAMPIRAN : LISTING PROGRAM

Size: px
Start display at page:

Download "LAMPIRAN : LISTING PROGRAM"

Transcription

1 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 = False SkinLabel2.Visible = False SkinLabel3.Visible = False If cbolevel.text = "Pakar" Then txtlogin.enabled = True txtpass.enabled = True txtlogin.text = "" txtpass.text = "" txtlogin.setfocus If cbolevel.text = "Administrator" Then txtlogin.enabled = True txtpass.enabled = True txtlogin.text = "" txtpass.text = "" txtlogin.setfocus cmdmasuk.enabled = True Private Sub cmdkeluar_click() Unload Me Private Sub cmdmasuk_click() On Error GoTo login_err If cbolevel.text = "Pengguna" Then userid = "Pengguna" levelid = "Pengguna" frmutama.show Unload Me If txtlogin.text = "" Then MsgBox "Masukkan User ID!", vbcritical txtlogin.setfocus If Not validity(txtlogin, "User ID") Then txtlogin.setfocus If txtpass.text = "" Then MsgBox "Masukkan Password!", vbcritical txtpass.setfocus

2 If Not validity(txtpass, "Password") Then txtpass.setfocus konek_db Dim sql As String Set adors = New ADODB.Recordset sql = "select * from list_user where user_id = '" & txtlogin.text_ & "' and pass = '" & Crypt(txtPass.Text) & "'" adors.open sql, Conn, adopendynamic, adlockoptimistic If (adors.eof) Then MsgBox "User ID dan Password salah! Coba Lagi!", vbcritical, txtlogin.text = "" txtpass.text = "" txtlogin.setfocus Call closeconn levelid = adors!level Call closeconn userid = txtlogin.text Unload Me frmutama.show login_err: MsgBox Err.Description Private Sub Label6_Click() frmuserbaru.show vbmodal Private Sub Label7_Click() frmgantipass.show vbmodal Private Sub Label9_Click() frmhapususer.show vbmodal Private Sub Form_Load() Skin1.LoadSkin App.Path & "\SKIN\green.skn" Skin1.ApplySkin hwnd cbolevel.additem "Pengguna" cbolevel.additem "Pakar" cbolevel.additem "Administrator" cmdmasuk.enabled = False Private Sub Timer1_Timer() Label6.ForeColor = RGB(Rnd * 255, Rnd * 255, Rnd * 255)

3 Kode Program Form Utama Private Sub cmddiagnosis_click() frmpilihpenyakit.show vbmodal Private Sub cmdpengetahuan_click() frmpengetahuan.show vbmodal Private Sub Form_Activate() Call Form_Load Private Sub Form_Load() Skin1.LoadSkin App.Path & "\SKIN\green.skn" Skin1.ApplySkin hwnd konek_db StatusBar1.Panels(1) = userid StatusBar1.Panels(2) = levelid If levelid = "Pengguna" Then cmdpengetahuan.visible = False mnbasis.visible = False cmdpengetahuan.visible = True mnbasis.visible = True Private Sub Form_Unload(Cancel As Integer) diskonek_db Unload Me End Private Sub mndiagnosispenyakit_click() frmpilihpenyakit.show vbmodal Private Sub mnedit_click() frmpengetahuan.show vbmodal Private Sub mnkeluar_click() Dim pesan pesan = MsgBox("Anda yakin mau keluar dari program?", vbquestion + vbyesno + vbdefaultbutton2, "Konfirmasi") If pesan = vbyes Then Unload Me Private Sub mnlogoff_click() Dim pesan pesan = MsgBox("Anda yakin mau Log-Off dari sistem?", vbquestion + vbyesno + vbdefaultbutton2, "Konfirmasi") If pesan = vbyes Then frmlogin.show Me.Hide

4 Private Sub mnpembuat_click() frmpembuat.show vbmodal Private Sub mnprogram_click() frmprogram.show vbmodal Kode Program Form Diagnosis Private Sub cmdselesai_click() Me.Hide Private Sub cmdya_click() On Error Resume Next rstemp.addnew rstemp!id_temp = rsknowledge!id rstemp!fakta = rsknowledge!faktaya rstemp.update jwb = rsknowledge!ya If Left(jwb, 1) = "T" Then rsknowledge.movefirst rsknowledge.find " ID= '" & jwb & "' " rssolusi.movefirst rssolusi.find " ID_solusi= '" & jwb & "' " frmhasildiagnosis.label1.caption = rssolusi!solusi frmhasildiagnosis.image1.picture = LoadPicture(App.Path & "\xfoto\" & rssolusi!foto) frmhasildiagnosis.label2.caption = rssolusi!diagnosis frmhasildiagnosis.show vbmodal Private Sub cmdtidak_click() On Error Resume Next rstemp.addnew rstemp!id_temp = rsknowledge!id rstemp!fakta = rsknowledge!faktatidak rstemp.update jwb = rsknowledge!tidak If Left(jwb, 1) = "T" Then rsknowledge.movefirst rsknowledge.find " ID= '" & jwb & "' " rssolusi.movefirst rssolusi.find " ID_solusi= '" & jwb & "' " frmhasildiagnosis.label1.caption = rssolusi!solusi frmhasildiagnosis.image1.picture = LoadPicture(App.Path & "\xfoto\" & rssolusi!foto) frmhasildiagnosis.label2.caption = rssolusi!diagnosis frmhasildiagnosis.show vbmodal

5 Private Sub Form_Activate() Call Form_Load Private Sub Form_Load() Skin1.LoadSkin App.Path & "\SKIN\green.skn" Skin1.ApplySkin hwnd rstemp.requery While Not rstemp.eof rstemp.delete rstemp.movenext Wend rsknowledge.movefirst Select Case frmpilihpenyakit.cbopenyakit.listindex Case 0 rsknowledge.find " ID='T1' " Case 1 rsknowledge.find " ID='T15' " Case 2 rsknowledge.find " ID='T8' " Case 3 rsknowledge.find " ID='T1' " Case 4 rsknowledge.find " ID='T22' " Case 5 rsknowledge.find " ID='T20' " Case 6 rsknowledge.find " ID='T22' " End Select Private Sub Form_Unload(Cancel As Integer) Call cmdselesai_click Kode Program Form Pengetahuan Public baru As Boolean Dim rsrusak As New ADODB.Recordset Private Sub cbocari_click() txtcari.text = "" txtcari.setfocus Private Sub cmdbatal_click() Adodc1.Recordset.Cancel

6 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" hapuserr: Private Sub cmdinputpenyakit_click() frmpenyakit.show vbmodal Private Sub cmdinputsolusi_click() frmsolusi.show vbmodal Private Sub cmdkeluar_click() Me.Hide Private Sub cmdsimpan_click() On Error GoTo simpanerr If txtidknowledge.text = Empty Or _ cbopenyakit.text = "" Or _ txtpertanyaan.text = Empty Or _ txtfaktaya.text = Empty Or _ txtfaktatidak.text = Empty Or _ cboya.text = Empty Or _ cbotidak.text = Empty Then MsgBox "Informasi belum lengkap! Lengkapi terlebih dahulu!", vbexclamation, txtidknowledge.setfocus Dim rscek As ADODB.Recordset Set rscek = New ADODB.Recordset rscek.open "select * from knowledge where ID='" & txtidknowledge.text & "'", Conn If Not rscek.eof And baru Then MsgBox "Aturan dengan kode " & txtidknowledge.text & " sudah ada, silahkan ganti dengan kode yang lain!", vbexclamation, txtidknowledge.setfocus: SendKeys "{HOME}+{END}" With Adodc1.Recordset If baru Then.AddNew!ID = txtidknowledge.text

7 !ID_penyakit = txtidpenyakit.text!pertanyaan = txtpertanyaan.text!faktaya = txtfaktaya.text!faktatidak = txtfaktatidak.text!ya = cboya.text!tidak = cbotidak.text.update MsgBox "Data berhasil disimpan!", vbinformation, "Informasi" KosongkanForm End With simpanerr: Private Sub cmdtambah_click() baru = True KunciTeks False tombolawal False txtidknowledge.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 txtidknowledge.text =!ID txtidpenyakit.text =!ID_penyakit txtpertanyaan.text =!pertanyaan txtfaktaya.text =!faktaya txtfaktatidak.text =!faktatidak cboya.text =!Ya cbotidak.text =!Tidak Set rsrusak = New ADODB.Recordset rsrusak.open "select * from penyakit where ID_Penyakit='" & txtidpenyakit.text & "'", Conn cbopenyakit.text = rsrusak!jenis_penyakit End With

8 txtidknowledge.setfocus baru = False ubaherr: Private Sub Form_Activate() Dim i As Integer For i = 0 To 6 gridknowledge.columns(i).locked = True Next i For i = 0 To 1 gridpenyakit.columns(i).locked = True gridsolusi.columns(i).locked = True Next i cbocari.additem "ID Pengetahuan" cbocari.additem "Pertanyaan" cbocari.additem "ID Penyakit" 'If Not rspenyakit.eof Then cbopenyakit.clear rspenyakit.movefirst While Not rspenyakit.eof cbopenyakit.additem rspenyakit!jenis_penyakit rspenyakit.movenext Wend ' 'If Not rsknowledge.eof Then cboya.clear cbotidak.clear rsknowledge.movefirst While Not rsknowledge.eof cboya.additem rsknowledge!id cbotidak.additem rsknowledge!id rsknowledge.movenext Wend ' 'If Not rssolusi.eof Then rssolusi.movefirst While Not rssolusi.eof cboya.additem rssolusi!id_solusi cbotidak.additem rssolusi!id_solusi rssolusi.movenext Wend ' Private Sub Form_Load() Adodc1.ConnectionString = Conn.ConnectionString Adodc1.RecordSource = "select * from knowledge"

9 Adodc1.Refresh Set gridknowledge.datasource = Adodc1 Adodc3.ConnectionString = Conn.ConnectionString Adodc3.RecordSource = "select * from penyakit" Adodc3.Refresh Set gridpenyakit.datasource = Adodc3 Adodc2.ConnectionString = Conn.ConnectionString Adodc2.RecordSource = "select * from solusi" Adodc2.Refresh Set gridsolusi.datasource = Adodc2 gridpenyakit.columns(0).width = 400 gridpenyakit.columns(1).width = 5000 gridsolusi.columns(0).width = 400 gridsolusi.columns(1).width = 5000 gridknowledge.columns(0).width = 400 gridknowledge.columns(4).width = 400 gridknowledge.columns(5).width = 400 gridknowledge.columns(6).width = 400 Skin1.LoadSkin App.Path & "\SKIN\green.skn" Skin1.ApplySkin hwnd Sub KosongkanForm() txtidknowledge.text = Empty txtidpenyakit.text = Empty cbopenyakit.text = Empty txtpertanyaan.text = Empty txtfaktaya.text = Empty txtfaktatidak.text = Empty cboya.text = Empty cbotidak.text = Empty Sub KunciTeks(kunci As Boolean) txtidknowledge.locked = kunci cbopenyakit.locked = kunci txtpertanyaan.locked = kunci txtfaktaya.locked = kunci txtfaktatidak.locked = kunci cboya.locked = kunci cbotidak.locked = kunci Private Sub cbopenyakit_click() On Error GoTo rusakerr Set rsrusak = New ADODB.Recordset rsrusak.open "select * from penyakit where jenis_penyakit='" & cbopenyakit.text & "'", Conn txtidpenyakit.text = rsrusak!id_penyakit

10 rusakerr: Sub DaftarCari() On Error GoTo pesan Dim adofilter As New ADODB.Recordset Set adofilter = New ADODB.Recordset Dim sqlc As String adofilter.cursorlocation = aduseclient Select Case cbocari.text Case "ID Pengetahuan" sqlc = "SELECT * FROM knowledge where ID like " & "'%" & txtcari.text & "%'" & _ "ORDER BY ID" Case "Pertanyaan" sqlc = "SELECT * FROM knowledge where pertanyaan like " & "'%" & txtcari.text & "%'" & _ "ORDER BY ID" Case "ID Penyakit" sqlc = "SELECT * FROM knowledge where ID_Penyakit like " & "'%" & txtcari.text & "%'" & _ "ORDER BY ID" Case MsgBox "Pilih dulu mau mencari berdasarkan apa!", vbexclamation, 'txtcari.text = "" cbocari.setfocus End Select adofilter.open sqlc, Conn, adopendynamic, adlockoptimistic If Not adofilter.eof Then Set gridknowledge.datasource = adofilter Set Adodc1.Recordset = adofilter MsgBox "Maaf, data yang anda cari tidak terdapat pada database!", vbinformation, "Informasi" txtcari.text = "" pesan: Private Sub txtcari_change() DaftarCari

11 Kode Program Form Penyakit Public baru As Boolean Private Sub cmdbatal_click() 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" hapuserr: Private Sub cmdkeluar_click() Me.Hide Private Sub cmdsimpan_click() On Error GoTo simpanerr If txtidpenyakit.text = Empty Or _ txtjenispenyakit.text = Empty Then MsgBox "Informasi belum lengkap! Lengkapi terlebih dahulu!", vbexclamation, txtidpenyakit.setfocus Dim rscek As ADODB.Recordset Set rscek = New ADODB.Recordset rscek.open "select * from penyakit where ID_penyakit='" & txtidpenyakit.text & "'", Conn If Not rscek.eof And baru Then MsgBox "Penyakit dengan kode " & txtidpenyakit.text & " sudah ada, silahkan ganti dengan kode yang lain!", vbexclamation, txtidpenyakit.setfocus: SendKeys "{HOME}+{END}" With Adodc1.Recordset If baru Then.AddNew!ID_penyakit = txtidpenyakit.text!jenis_penyakit = txtjenispenyakit.text.update

12 Adodc1.Refresh MsgBox "Data berhasil disimpan!", vbinformation, "Informasi" KosongkanForm End With simpanerr: Private Sub cmdtambah_click() baru = True KunciTeks False tombolawal False txtidpenyakit.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 txtidpenyakit.text =!ID_penyakit txtjenispenyakit.text =!jenis_penyakit End With txtidpenyakit.setfocus baru = False ubaherr: Private Sub Form_Activate() Dim i As Integer For i = 0 To 1 gridpenyakit.columns(i).locked = True Next i txtcari.text = ""

13 Private Sub Form_Load() Adodc1.ConnectionString = Conn.ConnectionString Adodc1.RecordSource = "select * from penyakit" Adodc1.Refresh Set gridpenyakit.datasource = Adodc1 gridpenyakit.columns(0).width = 400 gridpenyakit.columns(1).width = 5000 Skin1.LoadSkin App.Path & "\SKIN\green.skn" Skin1.ApplySkin hwnd Sub KosongkanForm() txtidpenyakit.text = Empty txtjenispenyakit.text = Empty Sub KunciTeks(kunci As Boolean) txtidpenyakit.locked = kunci txtjenispenyakit.locked = kunci Sub DaftarCari() On Error GoTo pesan Dim adofilter As New ADODB.Recordset Set adofilter = New ADODB.Recordset Dim sqlc As String adofilter.cursorlocation = aduseclient Select Case cbocari.text Case "ID Penyakit" sqlc = "SELECT * FROM penyakit where ID_penyakit like " & "'%" & txtcari.text & "%'" & _ "ORDER BY ID_penyakit" Case "Jenis penyakit" sqlc = "SELECT * FROM penyakit where jenis_penyakit like " & "'%" & txtcari.text & "%'" & _ "ORDER BY ID_penyakit" Case MsgBox "Pilih dulu mau mencari berdasarkan apa!", vbexclamation, cbocari.setfocus End Select adofilter.open sqlc, Conn, adopendynamic, adlockoptimistic If Not adofilter.eof Then Set gridpenyakit.datasource = adofilter Set Adodc1.Recordset = adofilter MsgBox "Maaf, data yang anda cari tidak terdapat pada database!", vbinformation, "Informasi" txtcari.text = ""

14 pesan: Private Sub cbocari_click() txtcari.text = "" txtcari.setfocus Private Sub txtcari_change() DaftarCari Kode Program Form Solusi Public baru As Boolean Private Sub cmdbatal_click() 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" hapuserr: Private Sub cmdkeluar_click() Me.Hide Private Sub cmdsimpan_click() On Error GoTo simpanerr If txtidsolusi.text = Empty Or _ txtsolusi.text = Empty Then MsgBox "Informasi belum lengkap! Lengkapi terlebih dahulu!", vbexclamation, txtidsolusi.setfocus Dim rscek As ADODB.Recordset Set rscek = New ADODB.Recordset

15 rscek.open "select * from solusi where ID_solusi='" & txtidsolusi.text & "'", Conn If Not rscek.eof And baru Then MsgBox "Solusi dengan kode " & txtidsolusi.text & " sudah ada, silahkan ganti dengan kode yang lain!", vbexclamation, txtidsolusi.setfocus: SendKeys "{HOME}+{END}" With Adodc1.Recordset If baru Then.AddNew!ID_solusi = txtidsolusi.text!solusi = txtsolusi.text.update MsgBox "Data berhasil disimpan!", vbinformation, "Informasi" KosongkanForm End With simpanerr: 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 With Adodc1.Recordset txtidsolusi.text =!ID_solusi txtsolusi.text =!solusi End With txtidsolusi.setfocus baru = False

16 ubaherr: Private Sub Form_Activate() Dim i As Integer For i = 0 To 1 gridsolusi.columns(i).locked = True Next i txtcari.text = "" Private Sub Form_Load() Adodc1.ConnectionString = Conn.ConnectionString Adodc1.RecordSource = "select * from solusi" Adodc1.Refresh Set gridsolusi.datasource = Adodc1 gridsolusi.columns(0).width = 400 gridsolusi.columns(1).width = 5000 Skin1.LoadSkin App.Path & "\SKIN\green.skn" Skin1.ApplySkin hwnd Sub KosongkanForm() txtidsolusi.text = Empty txtsolusi.text = Empty Sub KunciTeks(kunci As Boolean) txtidsolusi.locked = kunci txtsolusi.locked = kunci Sub DaftarCari() On Error GoTo pesan Dim adofilter As New ADODB.Recordset Set adofilter = New ADODB.Recordset Dim sqlc As String adofilter.cursorlocation = aduseclient Select Case cbocari.text Case "ID Solusi" sqlc = "SELECT * FROM solusi where ID_Solusi like " & "'%" & txtcari.text & "%'" & _ "ORDER BY ID_Solusi" Case "Solusi" sqlc = "SELECT * FROM solusi where solusi like " & "'%" & txtcari.text & "%'" & _ "ORDER BY ID_Solusi" Case MsgBox "Pilih dulu mau mencari berdasarkan apa!", vbexclamation, cbocari.setfocus End Select

17 adofilter.open sqlc, Conn, adopendynamic, adlockoptimistic If Not adofilter.eof Then Set gridsolusi.datasource = adofilter Set Adodc1.Recordset = adofilter MsgBox "Maaf, data yang anda cari tidak terdapat pada database!", vbinformation, "Informasi" txtcari.text = "" pesan: Private Sub cbocari_click() txtcari.text = "" txtcari.setfocus Private Sub txtcari_change() DaftarCari Kode Program Form Hasil Diagnosis Private Sub cmdalasan_click() frmpenanganan.label2.text = "" rstemp.movefirst While Not rstemp.eof frmpenanganan.label2.text = frmpenanganan.label2.text + _ rstemp!fakta + vbcrlf rstemp.movenext Wend frmpenanganan.label2.text = frmpenanganan.label2.text + vbcrlf + vbcrlf + _ "Maka Solusinya : " + vbcrlf + rssolusi!solusi frmpenanganan.show vbmodal Private Sub cmdselesai_click() Me.Hide frmdiagnosis.hide Private Sub Form_Unload(Cancel As Integer) Call cmdselesai_click Private Sub Form_Load() Skin1.LoadSkin App.Path & "\SKIN\green.skn" Skin1.ApplySkin hwnd

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

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

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

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

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

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

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

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

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

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

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

More information

LAMPIRAN 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

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

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

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

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

LAMPIRAN. Universitas Sumatera Utara

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

More information

LISTING PROGRAM. 1. 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

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

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

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

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

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

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

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

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

Pengenalan Sistem Maklumat Dalam Pendidikan

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

More information

PANDUAN PENGGUNA (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

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

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

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

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

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

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

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

Universitas Sumatera Utara

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

11-1 11-1.1 11-1.2 11-2 11-2.1 11-2.2 108 II 11-1 Timer 11-1.1 Windows 11-1 11-1 Visual Basic Animation Animation 11 109 Animation Animation RLE AVI AVI 11-2 Visual Basic Animation / Microsoft Windows

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

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

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

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

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

More information

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

L A M P I R A N. Universitas Sumatera Utara L A M P I R A N 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

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

DETECTION OF WORMHOLE ATTACK IN MOBILE AD-HOC NETWORKS MOJTABA GHANAATPISHEH SANAEI

DETECTION OF WORMHOLE ATTACK IN MOBILE AD-HOC NETWORKS MOJTABA GHANAATPISHEH SANAEI ii DETECTION OF WORMHOLE ATTACK IN MOBILE AD-HOC NETWORKS MOJTABA GHANAATPISHEH SANAEI A project report submitted in partial fulfillment of the requirements for the award of the degree of Master of Computer

More information

PART A SULIT (EKT 221) BAHAGIAN A. Answer ALL questions. Question 1. a) Briefly explain the concept of Clock Gating.

PART A SULIT (EKT 221) BAHAGIAN A. Answer ALL questions. Question 1. a) Briefly explain the concept of Clock Gating. PART A BAHAGIAN A Answer ALL questions. Jawab SEMUA soalan. Question Soalan a) Briefly explain the concept of Clock Gating. [Terangkan secara ringkas konsep Selakan Denyut.] [2 Marks/Markah] b) Define

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

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

Lampiran A : Listing Program

Lampiran A : Listing Program Lampiran A : Listing Program 1. Server Private Declare Sub InitCommonControls Lib "comctl32.dll" () Dim InData(10) As String, InLayar(10) As String, InTk(10) As String, NoRM As String Private Sub Command1_Click()

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

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

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

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

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

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

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

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

More information

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

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

CREATING USER ID AND PASSWORD : NOTA PENTING NOTA PENTING SEBELUM MEMULAKAN PROSES CREATE USER ID & PASSWORD

CREATING USER ID AND PASSWORD : NOTA PENTING NOTA PENTING SEBELUM MEMULAKAN PROSES CREATE USER ID & PASSWORD CREATING USER ID AND PASSWORD : NOTA PENTING NOTA PENTING SEBELUM MEMULAKAN PROSES CREATE USER ID & PASSWORD Sebelum meneruskan proses untuk Create User ID & Password sila pastikan anda menggunakan Internet

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

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

UNIVERSITI SAINS MALAYSIA

UNIVERSITI SAINS MALAYSIA UNIVERSITI SAINS MALAYSIA Peperiksaan Semester Pertama Sidang Akademik 2004/2005 Oktober 2004 CPT103/CPM211- Struktur Data & Paradigma Pengaturcaraan Masa : 2 jam ARAHAN KEPADA CALON : Sila pastikan bahawa

More information

SEMANTICS ORIENTED APPROACH FOR IMAGE RETRIEVAL IN LOW COMPLEX SCENES WANG HUI HUI

SEMANTICS ORIENTED APPROACH FOR IMAGE RETRIEVAL IN LOW COMPLEX SCENES WANG HUI HUI SEMANTICS ORIENTED APPROACH FOR IMAGE RETRIEVAL IN LOW COMPLEX SCENES WANG HUI HUI A thesis submitted in fulfilment of the requirements for the award of the degree of Doctor of Philosophy (Computer Science)

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. Threats bermaksud ancaman, atau lebih dikenali sebagai malware (malicious

1. Threats bermaksud ancaman, atau lebih dikenali sebagai malware (malicious Definisi Threats Dan Backup 1. Threats bermaksud ancaman, atau lebih dikenali sebagai malware (malicious software), yang merupakan sejenis perisian yang berniat jahat dan dengki yang bertujuan mengganggu,

More information

LAMPIRAN A. Universitas Sumatera Utara

LAMPIRAN A. Universitas Sumatera Utara 63 LAMPIRAN A Rangkaian Lengkap Perangkat Keras Rangkaian ini terdiri dari Rangkaian Power Supply (PSA), Mikrokontroller atmega8535, RFID Reader ID 12, Rangkaian Infra Merah Fotodioda, driver max232 dan

More information

Cara Instal Driver Printer Hp Deskjet 1010 Di Windows Xp

Cara Instal Driver Printer Hp Deskjet 1010 Di Windows Xp Cara Instal Driver Printer Hp Deskjet 1010 Di Windows Xp Nah pada kesempatan ini admin akan share driver Printer HP Deskjet 1010. Windows Vista Ultimate, Microsoft Windows Vista, Microsoft Windows XP Professional,

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 : 55 MARKS BAHAGIAN B : 55 MARKAH INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi TWO (2) soalan berstruktur. Jawab

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

ENHANCING TIME-STAMPING TECHNIQUE BY IMPLEMENTING MEDIA ACCESS CONTROL ADDRESS PACU PUTRA SUARLI

ENHANCING TIME-STAMPING TECHNIQUE BY IMPLEMENTING MEDIA ACCESS CONTROL ADDRESS PACU PUTRA SUARLI ENHANCING TIME-STAMPING TECHNIQUE BY IMPLEMENTING MEDIA ACCESS CONTROL ADDRESS PACU PUTRA SUARLI A project report submitted in partial fulfillment of the requirements for the award of the degree of Master

More information

Lab Sheet 4.doc. Visual Basic. Lab Sheet 4: Non Object-Oriented Programming Practice

Lab Sheet 4.doc. Visual Basic. Lab Sheet 4: Non Object-Oriented Programming Practice Visual Basic Lab Sheet 4: Non Object-Oriented Programming Practice This lab sheet builds on the basic programming you have done so far, bringing elements of file handling, data structuring and information

More information