LISTING PROGRAM. Form Splash

Size: px
Start display at page:

Download "LISTING PROGRAM. Form Splash"

Transcription

1 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 lblcompany.caption = App.CompanyName ImgSplash.Picture = LoadPicture(App.Path & "\img\splash.jpg") Private Sub Frame1_Click() bar.value = bar.value + 4 Screen.MousePointer = vbhourglass If bar.value = 8 Then lbbar.caption = "Loading..." ElseIf bar.value = 28 Then lbbar.caption = "Waiting database..." ElseIf bar.value = 40 Then lbbar.caption = "Initializing..." ElseIf bar.value = 68 Then lbbar.caption = "Please wait..." ElseIf bar.value = 100 Then If bar.value = 100 Then If Timer1.Interval >= 1 Then Screen.MousePointer = vbdefault main_menu.show Form Main Menu Private Sub cmdadmin_click() Admin.Show Private Sub cmdcari_click() CariData.Show Private Sub cmdgaleribahan_click() galeribahan.show Private Sub cmdindeks_click() Daftar.Show

2 Private Sub cmdout_click() End Private Sub cmdsimpan_click() inputobat.show Private Sub Form_Load() Me.Width = 10 Me.Width = Me.Width If Me.Width >= 9360 Then Timer1.Enabled = False Public Sub () Me.Left = (Screen.Width - Me.Width) / 2 Me.Top = (Screen.Height - Me.Height) / 2 Private Sub Form_Unload(Cancel As Integer) Do Me.Left = Me.Left + 40 Me.Move Me.Left, Me.Top DoEvents Loop Until Me.Left > Screen.Width Private Sub Timer3_Timer() '========= setting waktu ========== lbljam.caption = Format(Now, "hh:mm:ss") lbltanggal.caption = Format(Date, "dd mmm yyyy") Form Daftar Obat Private Sub cmdedit_click() namacross = txtid.text editdata.show Private Sub cmdhapus_click() Dim strdelete As String tanya = MsgBox("Apakah Anda yakin akan menghapus data dengan nama : " & txtid.text & "?", vbquestion + vbyesno, "Konfirmasi hapus") If tanya = vbyes Then

3 strdelete = "Delete from tblobat Where namaobat = '" & txtid.text & "'" adokonek.execute strdelete PopData lblnama.caption = "" lblindikasi.caption = "" lblbahan.caption = "" lblcara.caption = "" lblpakai.caption = "" lblkat.caption = "" imgobat.picture = LoadPicture() MsgBox "Data Berhasil dihapus! ", vbexclamation, "Alert" Else Private Sub cmdkembali_click() main_menu.show Private Sub cmdtambah_click() inputobat.show Private Sub Form_Load() InitConnection PopData Me.Width = 10 Private Sub InitConnection() Dim condbstring As String condbstring = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & App.Path & "\dbherbal.mdb" Set adokonek = New ADODB.Connection adokonek.connectionstring = condbstring adokonek.open Private Sub PopData() Dim lstx As ListItem Dim strsql As String Dim intcounter As Integer strsql = "select * from tblobat order by ID" Set rs = New ADODB.Recordset rs.open strsql, adokonek, 3, 1 listherbal.listitems.clear With rs If.RecordCount > 0 Then.MoveFirst intcounter = 1 While Not.EOF

4 Set lstx = listherbal.listitems.add(,, intcounter) lstx.listsubitems.add = Trim(!namaObat) lstx.listsubitems.add = Trim(!indikasi) lstx.listsubitems.add = Trim(!bahan) lstx.listsubitems.add = Trim(!caraBuat) lstx.listsubitems.add = Trim(!caraPakai) lstx.listsubitems.add = Trim(!kategori) lstx.listsubitems.add = Trim(!Path) lstx.listsubitems.add = Trim(!ID) intcounter = intcounter + 1.MoveNext Wend End With Private Sub listherbal_itemclick(byval Item As MSComctlLib.ListItem) Dim intselitem As Integer intselitem = Item txtid = listherbal.listitems(intselitem).listsubitems(1).text lblnama.caption = listherbal.listitems(intselitem).listsubitems(1).text lblindikasi.caption = listherbal.listitems(intselitem).listsubitems(2).text lblbahan.caption = listherbal.listitems(intselitem).listsubitems(3).text lblcara.caption = listherbal.listitems(intselitem).listsubitems(4).text lblpakai.caption = listherbal.listitems(intselitem).listsubitems(5).text lblkat.caption = listherbal.listitems(intselitem).listsubitems(6).text imgobat.picture = LoadPicture(App.Path & listherbal.listitems(intselitem).listsubitems(7).text) Me.Width = Me.Width If Me.Width >= Then Timer1.Enabled = False Public Sub () Me.Left = (Screen.Width - Me.Width) / 2 Me.Top = (Screen.Height - Me.Height) / 2 Private Sub Form_Unload(Cancel As Integer) Do Me.Top = Me.Top + 40 Me.Move Me.Left, Me.Top DoEvents Loop Until Me.Top > Screen.Height - 500

5 Input Obat Dim alamat As String Private Sub mnuexit_click() Private Sub cmdbrowse_click() cdi.showopen imgobat.picture = LoadPicture(cdi.FileName) alamat = "\gambar\gbrobat\" & txtnamaobat.text & ".jpg" Private Sub cmdhome_click() main_menu.show Private Sub cmdsave_click() Dim kat As String Dim strsql As String If obatluar.value = True Then kat = "Obat Luar" ElseIf obatdalam.value = True Then kat = "Obat Dalam" If txtnamaobat.text = "" Then MsgBox "Masukkan Nama Obat ", vbexclamation, "Alert" txtnamaobat.setfocus If txtindikasi.text = "" Then MsgBox "Masukkan Indikasi obat ", vbexclamation, "Alert" txtindikasi.setfocus If txtbahan.text = "" Then MsgBox "Masukkan Bahan Obat ", vbexclamation, "Alert" If obatluar.value = False And obatdalam.value = False Then MsgBox "Kategori Obat Belum dipilih!" If txtcara.text = "" Then MsgBox "Masukkan Cara membuat obat ", vbexclamation, "Alert" If txtpakai.text = "" Then

6 MsgBox "Masukkan Cara Pakai Obat ", vbexclamation, "Alert" 'strsql = "Insert into tblobat(namaobat,indikasi,bahan,carabuat,carapakai,kategori,path)valu es('" & SQLSafe(txtNamaObat.Text) & "','" & SQLSafe(txtIndikasi.Text) & "','" & SQLSafe(txtBahan.Text) & "','" & SQLSafe(txtCara.Text) & "','" & SQLSafe(txtPakai.Text) & "','" & SQLSafe(kat) & "','" & SQLSafe(alamat) & "')" 'adokonek.execute strsql Set rs = New ADODB.Recordset rs.open "Select * from tblobat", adokonek, adopenkeyset, adlockoptimistic, adcmdtext rs.addnew rs!namaobat = txtnamaobat.text rs!indikasi = txtindikasi.text rs!bahan = txtbahan.text rs!carabuat = txtcara.text rs!carapakai = txtpakai.text rs!kategori = kat rs!path = alamat rs.update MsgBox "Data dengan nama " & txtnamaobat.text & " Berhasil disimpan! " ' simpan gambar ke folder SavePicture imgobat.picture, App.Path & "\gambar\gbrobat\" & txtnamaobat.text & ".jpg" txtnamaobat.text = "" txtindikasi.text = "" txtbahan.text = "" txtcara.text = "" txtpakai.text = "" kat = "" obatdalam.value = False obatluar.value = False alamat = "" imgobat.picture = LoadPicture(alamat) txtnamaobat.setfocus Daftar.Show Private Sub InitConnection() Dim condbstring As String condbstring = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & App.Path & "\dbherbal.mdb" Set adokonek = New ADODB.Connection adokonek.connectionstring = condbstring adokonek.open

7 Private Sub Form_Load() InitConnection Me.Width = 10 '========= setting waktu ========== lbljam.caption = Format(Now, "hh:mm:ss") lbltanggal.caption = Format(Date, "dd mmm yyyy") Private Sub Timer2_Timer() Me.Width = Me.Width If Me.Width >= Then Timer2.Enabled = False Public Sub () Me.Left = (Screen.Width - Me.Width) / 2 Me.Top = (Screen.Height - Me.Height) / 2 Private Sub Form_Unload(Cancel As Integer) Do Me.Top = Me.Top + 40 Me.Move Me.Left, Me.Top DoEvents Loop Until Me.Top > Screen.Height Input Bahan Dim alamat As String Private Sub cmdbrowse_click() cdi.showopen imgbahan.picture = LoadPicture(cdi.FileName) alamat = "\gambar\gbrbahan\" & txtnama.text & ".jpg" Private Sub cmdexit_click() Private Sub cmdreset_click() txtnama.text = Empty txtlatin.text = Empty cmbbentuk.text = "---- pilih bentuk ----" imgbahan.picture = LoadPicture() Private Sub cmdsimpan_click() If txtnama.text = "" Then MsgBox "Masukkan Nama Bahan ", vbexclamation, "Alert" txtnama.setfocus

8 If txtlatin.text = "" Then MsgBox "Masukkan Nama Latin ", vbexclamation, "Alert" txtlatin.setfocus If cmbbentuk.text = "---- pilih bentuk ----" Or cmbbentuk.text = "" Then MsgBox "Pilih Bentuk Bahan", vbexclamation, "Alert" Set rs = New ADODB.Recordset rs.open "Select * from tblbahan", adokonek, adopenkeyset, adlockoptimistic, adcmdtext rs.addnew rs!namabahan = txtnama.text rs!namalatin = txtlatin.text rs!bentuk = cmbbentuk.text rs!path = alamat rs.update SavePicture imgbahan.picture, App.Path & "\gambar\gbrbahan\" & txtnama.text & ".jpg" " MsgBox "Data dengan nama " & txtnama.text & " Berhasil disimpan! ' simpan gambar ke folder cmdreset_click Private Sub Form_Load() InitConnection cmbbentuk.additem "Daun" cmbbentuk.additem "Batang" cmbbentuk.additem "akar" cmbbentuk.additem "Biji" cmbbentuk.additem "Buah" cmbbentuk.text = "---- pilih bentuk ----" Me.Width = 10 Private Sub InitConnection() Dim condbstring As String condbstring = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & App.Path & "\dbherbal.mdb" Set adokonek = New ADODB.Connection adokonek.connectionstring = condbstring

9 adokonek.open Me.Width = Me.Width If Me.Width >= 8340 Then Timer1.Enabled = False Public Sub () Me.Left = (Screen.Width - Me.Width) / 2 Me.Top = (Screen.Height - Me.Height) / 2 Private Sub Form_Unload(Cancel As Integer) Do Me.Top = Me.Top + 40 Me.Move Me.Left, Me.Top DoEvents Loop Until Me.Top > Screen.Height Galeri Bahan Dim alamat As String Private Sub mnuexit_click() Private Sub cmdbrowse_click() cdi.showopen imgobat.picture = LoadPicture(cdi.FileName) alamat = "\gambar\gbrobat\" & txtnamaobat.text & ".jpg" Private Sub cmdhome_click() main_menu.show Private Sub cmdsave_click() Dim kat As String Dim strsql As String If obatluar.value = True Then kat = "Obat Luar" ElseIf obatdalam.value = True Then kat = "Obat Dalam" If txtnamaobat.text = "" Then MsgBox "Masukkan Nama Obat ", vbexclamation, "Alert" txtnamaobat.setfocus If txtindikasi.text = "" Then

10 MsgBox "Masukkan Indikasi obat ", vbexclamation, "Alert" txtindikasi.setfocus If txtbahan.text = "" Then MsgBox "Masukkan Bahan Obat ", vbexclamation, "Alert" If obatluar.value = False And obatdalam.value = False Then MsgBox "Kategori Obat Belum dipilih!" If txtcara.text = "" Then MsgBox "Masukkan Cara membuat obat ", vbexclamation, "Alert" If txtpakai.text = "" Then MsgBox "Masukkan Cara Pakai Obat ", vbexclamation, "Alert" 'strsql = "Insert into tblobat(namaobat,indikasi,bahan,carabuat,carapakai,kategori,path)valu es('" & SQLSafe(txtNamaObat.Text) & "','" & SQLSafe(txtIndikasi.Text) & "','" & SQLSafe(txtBahan.Text) & "','" & SQLSafe(txtCara.Text) & "','" & SQLSafe(txtPakai.Text) & "','" & SQLSafe(kat) & "','" & SQLSafe(alamat) & "')" 'adokonek.execute strsql Set rs = New ADODB.Recordset rs.open "Select * from tblobat", adokonek, adopenkeyset, adlockoptimistic, adcmdtext rs.addnew rs!namaobat = txtnamaobat.text rs!indikasi = txtindikasi.text rs!bahan = txtbahan.text rs!carabuat = txtcara.text rs!carapakai = txtpakai.text rs!kategori = kat rs!path = alamat rs.update MsgBox "Data dengan nama " & txtnamaobat.text & " Berhasil disimpan! " ' simpan gambar ke folder SavePicture imgobat.picture, App.Path & "\gambar\gbrobat\" & txtnamaobat.text & ".jpg" txtnamaobat.text = "" txtindikasi.text = "" txtbahan.text = "" txtcara.text = ""

11 txtpakai.text = "" kat = "" obatdalam.value = False obatluar.value = False alamat = "" imgobat.picture = LoadPicture(alamat) txtnamaobat.setfocus Daftar.Show Private Sub InitConnection() Dim condbstring As String condbstring = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & App.Path & "\dbherbal.mdb" Set adokonek = New ADODB.Connection adokonek.connectionstring = condbstring adokonek.open Private Sub Form_Load() InitConnection Me.Width = 10 '========= setting waktu ========== lbljam.caption = Format(Now, "hh:mm:ss") lbltanggal.caption = Format(Date, "dd mmm yyyy") Private Sub Timer2_Timer() Me.Width = Me.Width If Me.Width >= Then Timer2.Enabled = False Public Sub () Me.Left = (Screen.Width - Me.Width) / 2 Me.Top = (Screen.Height - Me.Height) / 2 Private Sub Form_Unload(Cancel As Integer) Do Me.Top = Me.Top + 40 Me.Move Me.Left, Me.Top DoEvents Loop Until Me.Top > Screen.Height Cari Data Private Sub cmdcari_click() PopData (txtindikasi)

12 Private Sub PopData(strTextSearch As String) Dim lstx As ListItem Dim strsql As String 'Dim rs As ADODB.Recordset Dim intcounter As Integer asc" strsql = "Select * from tblobat indikasi " & _ "where indikasi like '%" & strtextsearch & "%' order by ID Set rs = New ADODB.Recordset rs.open strsql, adokonek, 3, 1 listcari.listitems.clear With rs If.RecordCount > 0 Then.MoveFirst intcounter = 1 While Not.EOF Set lstx = listcari.listitems.add(,, intcounter) lstx.listsubitems.add = Trim(!namaObat) lstx.listsubitems.add = Trim(!indikasi) intcounter = intcounter + 1.MoveNext Wend End With Private Sub cmddetail_click() namacari = txtnamacari.text cmddetail.enabled = False detailobat.show Private Sub cmdkembali_click() main_menu.show Private Sub Form_Load() InitConnection Private Sub InitConnection() Dim condbstring As String condbstring = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & App.Path & "\dbherbal.mdb" Set adokonek = New ADODB.Connection adokonek.connectionstring = condbstring adokonek.open Private Sub listcari_dblclick()

13 cmddetail_click Private Sub listcari_itemclick(byval Item As MSComctlLib.ListItem) Dim intselitem As Integer intselitem = Item cmddetail.enabled = True txtnamacari.text = listcari.listitems(intselitem).listsubitems(1).text Me.Width = Me.Width If Me.Width >= 4260 Then Timer1.Enabled = False Public Sub () Me.Left = (Screen.Width - Me.Width) / 2 Me.Top = (Screen.Height - Me.Height) / 2 Private Sub Form_Unload(Cancel As Integer) Do Me.Top = Me.Top + 40 Me.Move Me.Left, Me.Top DoEvents Loop Until Me.Top > Screen.Height Edit Obat Dim alamatedit As String Private Sub cmdsimpan_click() Dim kat As String Dim rscmd2 As ADODB.Recordset Dim strupdate As String If obatluar.value = True Then kat = "Obat Luar" ElseIf obatdalam.value = True Then kat = "Obat Dalam" Dim rsedit As ADODB.Recordset Set rsedit = New ADODB.Recordset rsedit.open "SELECT * FROM tblobat WHERE namaobat = '" & lbljudul.caption & "'", adokonek, adopendynamic, adlockoptimistic, adcmdtext rsedit.update rsedit!namaobat = txtnamaobat.text rsedit!indikasi = txtindikasi.text rsedit!bahan = txtbahan.text rsedit!carabuat = txtcara.text rsedit!carapakai = txtpakai.text rsedit!kategori = kat

14 rsedit.update rsedit.close MsgBox "Data Berhasil diupdate!" Private Sub Command1_Click() Daftar.Show Private Sub Form_Load() InitConnection PopData (iddatauniversal) Me.Width = 10 Private Sub InitConnection() Dim condbstring As String condbstring = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & App.Path & "\dbherbal.mdb" Set adokonek = New ADODB.Connection adokonek.connectionstring = condbstring adokonek.open Private Sub PopData(idData As Integer) 'Dim lstx As ListItem Dim strsql As String 'Dim intcounter As Integer "'" strsql = "select * from tblobat where namaobat = '" & namacross & Set rs = New ADODB.Recordset rs.open strsql, adokonek, 3, 1 With rs If.RecordCount > 0 Then.MoveFirst 'intcounter = 1 While Not.EOF lbljudul.caption = Trim(!namaObat) txtnamaobat.text = Trim(!namaObat) txtindikasi.text = Trim(!indikasi) txtbahan.text = Trim(!bahan) txtcara.text = Trim(!caraBuat) txtpakai.text = Trim(!caraPakai) If (Trim(!kategori) = "Obat Luar") Then obatluar.value = True ElseIf (Trim(!kategori) = "Obat Dalam") Then obatdalam.value = True alamatedit = Trim(!Path)

15 .MoveNext Wend End With Me.Width = Me.Width If Me.Width >= Then Timer1.Enabled = False imgobat.picture = LoadPicture(App.Path & alamatedit) Public Sub () Me.Left = (Screen.Width - Me.Width) / 2 Me.Top = (Screen.Height - Me.Height) / 2 Private Sub Form_Unload(Cancel As Integer) Do Me.Top = Me.Top + 40 Me.Move Me.Left, Me.Top DoEvents Loop Until Me.Top > Screen.Height Detail Obat Dim alamatedit As String Private Sub InitConnection() Dim condbstring As String condbstring = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & App.Path & "\dbherbal.mdb" Set adokonek = New ADODB.Connection adokonek.connectionstring = condbstring adokonek.open Private Sub cmdkembali_click() Private Sub Form_Load() InitConnection PopData (namacari) Me.Width = 10 Private Sub PopData(strTxtCari As String) 'Dim lstx As ListItem

16 Dim strsql As String 'Dim intcounter As Integer strsql = "select * from tblobat where namaobat = '" & strtxtcari & "'" Set rs = New ADODB.Recordset rs.open strsql, adokonek, 3, 1 With rs If.RecordCount > 0 Then.MoveFirst 'intcounter = 1 While Not.EOF.MoveNext Wend End With Me.Width = Me.Width If Me.Width >= 9165 Then Timer1.Enabled = False lbljudul.caption = Trim(!namaObat) lblnama.caption = Trim(!namaObat) lblindikasi.caption = Trim(!indikasi) lblbahan.caption = Trim(!bahan) lblcara.caption = Trim(!caraBuat) lblpakai.caption = Trim(!caraPakai) lblkat.caption = Trim(!kategori) alamatedit = Trim(!Path) imgobat.picture = LoadPicture(App.Path & alamatedit) Public Sub () Me.Left = (Screen.Width - Me.Width) / 2 Me.Top = (Screen.Height - Me.Height) / 2 Private Sub Form_Unload(Cancel As Integer) Do Me.Top = Me.Top + 40 Me.Move Me.Left, Me.Top DoEvents Loop Until Me.Top > Screen.Height - 500

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

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

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

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

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

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

More information

LAMPIRAN A LISTING PROGRAM. Universitas Sumatera Utara

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

More information

LAMPIRAN FORM 1 Universitas Sumatera Universitas Utara

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

More information

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

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

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

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

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

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

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

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

More information

LAMPIRAN A : LISTING PROGRAM

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

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

Remainder Cordial Labeling of Graphs

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

More information

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

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

Contents Introduction Getting Started Visual Basic Form Configuration Entering the VB Code

Contents Introduction Getting Started Visual Basic Form Configuration Entering the VB Code Your comments and suggestions on the operation of this software are welcome. Please address them to: ICONICS 100 Foxborough Blvd. Foxborough, MA 02035 Tel: 508-543-8600 Fax: 508-543-1503 E-mail: support@iconics.com

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

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

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

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

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

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

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

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

Chapter 1. Block Diagram. Text .. 1

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

More information

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

PROGRAM 1: SIMPLE CALCULATOR

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

More information

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

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

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

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

Visual Basic 6 Lecture 7. The List Box:

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

More information

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

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

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

Private Sub MenuUtamaToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Me.ShowDialog() End Sub

Private Sub MenuUtamaToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Me.ShowDialog() End Sub LISTING PROGRAM Menu_Utama.vb Public Class FrmUtama Private Sub DataMovieToolStripMenuItem_Click(ByVal sender As DataMovieToolStripMenuItem.Click FrmMovie.ShowDialog() Private Sub DataPeminjamToolStripMenuItem_Click(ByVal

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

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

NE1R EAST UNIVERSITY, FA-CULTYOF ENGINEERING DEPARTMENT OF COMPUTER ENGINEERING COM400 GRADUATION PROJECT LIBRARY AND BOOKSTORE AND DATABASE

NE1R EAST UNIVERSITY, FA-CULTYOF ENGINEERING DEPARTMENT OF COMPUTER ENGINEERING COM400 GRADUATION PROJECT LIBRARY AND BOOKSTORE AND DATABASE NE1R EAST UNIVERSITY, FA-CULTYOF ENGINEERING DEPARTMENT OF COMPUTER ENGINEERING COM400 GRADUATION PROJECT LIBRARY AND BOOKSTORE AND DATABASE SUBMITTED TO MRS BESiME ERIN SUBMITTED BY IMRAN SOHAIL & BEDRiYE

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

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

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

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

NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY

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

More information

NIDEK AUTO REFRACTOMETER ARK-710A INTERFACE MANUAL

NIDEK AUTO REFRACTOMETER ARK-710A INTERFACE MANUAL NIDEK AUTO REFRACTOMETER ARK-710A INTERFACE MANUAL MRK4D*RTZ001B/E TOTAL PAGE: 32 2005. 2. 8 NIDEK CO., LTD. : 34-14, Maehama, Hiroishi-cho, Gamagori, Aichi 443-0038, Japan (Manufacturer) Telephone: (0533)

More information

Information Hiding In Images Using Randomly Selected Points

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

More information

Manual Vba Access 2010 Recordset Findfirst

Manual Vba Access 2010 Recordset Findfirst Manual Vba Access 2010 Recordset Findfirst The Recordset property returns the recordset object that provides the data being browsed in a form, report, list box control, or combo box control. If a form.

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

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

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

More information

Else. End If End Sub End Class. PDF created with pdffactory trial version

Else. End If End Sub End Class. PDF created with pdffactory trial version Dim a, b, r, m As Single Randomize() a = Fix(Rnd() * 13) b = Fix(Rnd() * 13) Label1.Text = a Label3.Text = b TextBox1.Clear() TextBox1.Focus() Private Sub Button2_Click(ByVal sender As System.Object, ByVal

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

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

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

More information

Customizable Progress Bar for VB6 Based on graphics in picture boxes dec 23, 2017 by Gerard Hageman

Customizable Progress Bar for VB6 Based on graphics in picture boxes dec 23, 2017 by Gerard Hageman Customizable Progress Bar for VB6 Based on graphics in picture boxes dec 23, 2017 by Gerard Hageman 3 Versions Select in demo window: version 1 version 2 version 3 version 1 version 2 version 3 Version

More information

Stamps In the Lab Part 2

Stamps In the Lab Part 2 Column #64, August 2000 by Jon Williams: Stamps In the Lab Part 2 Last month we had some fun by keeping our PC connected to the Stamp and displaying information with a neat little program from SelmaWare

More information

LAMPIRAN A: LISTING PROGRAM

LAMPIRAN A: LISTING PROGRAM LAMPIRAN A: LISTING PROGRAM 1. Form Home Private Sub Command1_Click() frmhome.hide frmnavigasi.show Private Sub Command2_Click() End Private Sub Timer1_Timer() If Picture1.Visible = False Then Picture1.Visible

More information

2Practicals Visual Basic 6.0

2Practicals Visual Basic 6.0 2Practicals Visual Basic 6.0 Practical 1: 1. Navigation of Visual Basic Integrated Development Environment The Visual Basic IDE is made up of a number of components Menu Bar Tool Bar Project Explorer Properties

More information

151 Mixed bag of HOTS questions from VB 15 A VB program accepts a number in a text box and rounds the number to 0 decimal places. Write the VB code under the button cmdround to achieve this feature. Do

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

The Control Properties

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

More information

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

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

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

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

Mr.Khaled Anwar ( )

Mr.Khaled Anwar ( ) The Rnd() function generates random numbers. Every time Rnd() is executed, it returns a different random fraction (greater than or equal to 0 and less than 1). If you end execution and run the program

More information

UJIAN AKHIR SEMESTER TEKNIK INFORMATIKA SEKOLAH TINGGI TEKNOLOGI DUTA BANGSA

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

More information

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

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

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

More information

Generated by Foxit PDF Creator Foxit Software For evaluation only. ภาคผนวก ก

Generated by Foxit PDF Creator Foxit Software  For evaluation only. ภาคผนวก ก ภาคผนวก ก โปรแกรม SQL Server โปรแกรม SQL Server เป นโปรแกรมจ ดการฐานข อม ล ท จะการจ ดเก บข อม ลต างๆลงใน ตาราง เพ อช วยในการจ ดเก บข อม ลได ง ายข นและสามารถน าข อม ลข อม ลออกมาได อย างรวดเร ว ข นตอนการต

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

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

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

More information

NOTES: Procedures (module 15)

NOTES: Procedures (module 15) Computer Science 110 NAME: NOTES: Procedures (module 15) Introduction to Procedures When you use a top-down, structured program design, you take a problem, analyze it to determine what the outcome should

More information

OUR company has recognized that forms design is

OUR company has recognized that forms design is User Interface Standards for Forms Smart Access 2000 2002 Dennis Schumaker User interface standards are critical for both programmer and end-user productivity. An important part of any application is Application

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

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

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

More information

Model. November 2009 Pages in total: 52 XRKT2*RTZ001D/E

Model. November 2009 Pages in total: 52 XRKT2*RTZ001D/E AUTO REF/KERATO/TONOMETER Model TONOREFII INTERFACE MANUAL November 2009 Pages in total: 52 XRKT2*RTZ001D/E NIDEK CO., LTD. : 34-14, Maehama, Hiroishi-cho, Gamagori, Aichi 443-0038, Japan (Manufacturer)

More information

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

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

More information

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

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

LAMPIRAN LISTING PROGRAM

LAMPIRAN LISTING PROGRAM LAMPIRAN LISTING PROGRAM Imports System Imports System.IO Imports System.Math Public Class frmutama Dim dicari As DirectoryInfo Dim flpath As String, srcpath As String Dim asnode As Double, dsnode As Double,

More information

Introduction to Microsoft Message Queuing Services (MSMQ)

Introduction to Microsoft Message Queuing Services (MSMQ) 3 Introduction to Microsoft Message Queuing Services (MSMQ) Distributed applications run on two or more computers. They communicate with one another by passing data over machine boundaries through appropriate

More information

Kartu Bimbingan Tugas Akhir Mahasiswa

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

More information

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

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

More information

Panduan 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

Advanced Visual Basic

Advanced Visual Basic Lab Excercises and Solutions Advanced Visual Basic LAB EXERCISES AND SOLUTIONS Ex1 - TextBoxDemo Create a standard exe Open a new form and change the name of the form as example & change the caption as

More information

Exercise 6. Controlling of a bipolar stepper motor with the help of eprodas SCI module and program language Visual Basic

Exercise 6. Controlling of a bipolar stepper motor with the help of eprodas SCI module and program language Visual Basic 1 Exercise 6 Controlling of a bipolar stepper motor with the help of eprodas SCI module and program language Visual Basic A bipolar stepper motor fundamentally consists of two windings and a magnetic anchorless

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