LAMPIRAN A: Listing Program

Size: px
Start display at page:

Download "LAMPIRAN A: Listing Program"

Transcription

1 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 conn = koneksi.konek() ' variabel global conn yg dipanggil dari fungi koneksi 'sql query Dim myadapter As New MySql.Data.MySqlClient.MySqlDataAdapter Dim sqlquery = "SELECT id, password FROM user Where id='" & TxtAdmin.Text & "' and password='" & TxtPass.Text & "'" Dim mycommand As New MySql.Data.MySqlClient.MySqlCommand mycommand.connection = conn mycommand.commandtext = sqlquery 'start query myadapter.selectcommand = mycommand Dim mydata As MySql.Data.MySqlClient.MySqlDataReader mydata = mycommand.executereader() 'see if user exits. If mydata.hasrows = 0 Then MessageBox.Show("Data Pengguna tidak benar, silahkan coba lagi", "Login Gagal", MessageBoxButtons.OK, MessageBoxIcon.Error) Else mydata.close() MDIParent1.Show() TxtAdmin.Text = "" TxtPass.Text = "" Me.Visible = False Private Sub Command1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Command1.Click Me.Close() Private Sub TxtPass_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TxtPass.KeyUp If e.keyvalue = 13 Then Call CmdLogin_Click(sender, e) End Class

2 79 2. Form Menu Utama Imports System.Windows.Forms Public Class MDIParent1 Private Sub InformasiSistemToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles InformasiSistemToolStripMenuItem.Click tentangsistem.mdiparent = Me tentangsistem.show() Private Sub ProfilePenulisToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ProfilePenulisToolStripMenuItem.Click tentangpenulis.mdiparent = Me tentangpenulis.show() Private Sub DaftarInvestorToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DaftarInvestorToolStripMenuItem.Click frminvestor.mdiparent = Me frminvestor.show() Private Sub KeluarToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles KeluarToolStripMenuItem.Click FrmLogin.Show() Me.Close() Private Sub LogoutToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LogoutToolStripMenuItem.Click System.Environment.Exit(0) Private Sub MDIParent1_FormClosed(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed System.Environment.Exit(0) Private Sub MDIParent1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load StatusStrip.Name = "sabrina" Private Sub StatusStrip_ItemClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ToolStripItemClickedEventArgs) Handles StatusStrip.ItemClicked End Class

3 80 3. Form Investor Public Class frminvestor Private Sub Data() record dari tabel pegawai 'Untuk mengisi objek lisview dengan Dim conn = koneksi.konek() ' variabel global conn yg dipanggil dari fungi koneksi 'buat objek adapter Dim myadp As MySql.Data.MySqlClient.MySqlDataAdapter 'buat perintah query disini Dim query As String query = "Select * from daftarinvestor ORDER BY ID" Try 'jalankan perintah baca myadp = New MySql.Data.MySqlClient.MySqlDataAdapter(query, conn) Catch ex As Exception MsgBox(ex.Message) End Try IsiInvestor.Items.Clear() conn) 'buat objek command Dim mycmd As New MySql.Data.MySqlClient.MySqlCommand(query, 'buat objek pembaca Dim myread As MySql.Data.MySqlClient.MySqlDataReader 'jalankan query dan isi ke reader myread = mycmd.executereader() 'cek keberadaan data If myread.hasrows = True Then While myread.read Dim daftar As ListViewItem = IsiInvestor.Items.Add(myread.GetString(0)) daftar.subitems.add(myread.getstring(1)) daftar.subitems.add(myread.getstring(2)) daftar.subitems.add(myread.getstring(3)) daftar.subitems.add(myread.getstring(4)) daftar.subitems.add(myread.getstring(5)) daftar.subitems.add(myread.getstring(6)) daftar.subitems.add(myread.getstring(7)) End While 'tutup myread myread.close()

4 81 Private Sub frminvestor_load(byval sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ToolTip1.SetToolTip(IsiInvestor, "Double Klik untuk melihat Hasil Survei") cmbkelamin.items.add("pria") cmbkelamin.items.add("wanita") cmbkelamin.selectedindex = 0 Data() Private Sub CmdTambah_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmdTambah.Click If (txtid.text = "" Or txtnama.text = "") Then MessageBox.Show("ID dan Nama Investor tidak boleh kosong", "Gagal menambah data", MessageBoxButtons.OK, MessageBoxIcon.Error) Exit Sub Dim conn = koneksi.konek() ' variabel global conn yg dipanggil dari fungi koneksi Dim mycmd As New MySql.Data.MySqlClient.MySqlCommand("Insert Into daftarinvestor Values('" & Trim(txtID.Text) & "', '" & Trim(txtNama.Text) & "', '" & Trim(cmbKelamin.Text) & "', '" & Trim(txtTmptLahir.Text) & "', '" & Trim(txtTnglLahir.Text) & "', '" & Trim(txtAlamat.Text) & "', '" & Trim(txtAlamatKantor.Text) & "', '" & Trim(txtLokasiPerumahan.Text) & "')", conn) Try 'jalankan mycmd.executenonquery() Catch ex As MySql.Data.MySqlClient.MySqlException MsgBox(ex.Message, "insert data gagal") End Try CmdClear_Click() txtid.focus() Data() CmdTambah.Enabled = False GroupBox1.Enabled = False Private Sub CmdClear_Click() txtid.text = "" TxtNama.Text = "" TxtAlamat.Text = "" cmbkelamin.selectedindex = 0 txttmptlahir.text = "" txttngllahir.text = "" txtalamatkantor.text = "" txtlokasiperumahan.text = "" Private Sub CmbEdit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbSimpan.Click

5 82 Dim conn = koneksi.konek() ' variabel global conn yg dipanggil dari fungi koneksi Dim mycmd As New MySql.Data.MySqlClient.MySqlCommand("Update daftarinvestor Set id='" & Trim(txtID.Text) & _ "',nama='" & Trim(txtNama.Text) & _ "',jeniskelamin='" & Trim(cmbKelamin.Text) & _ "',tanggallahir='" & Trim(txtTnglLahir.Text) & _ "',alamatrumah='" & Trim(txtAlamat.Text) & _ "',alamatkantor='" & Trim(txtAlamatKantor.Text) & _ "',lokasiperumahan='" & Trim(txtLokasiPerumahan.Text) & _ "',tempatlahir='" & Trim(txtTmptLahir.Text) & "' Where id='" & Trim(txtID.Text) & "'", conn) Try 'jalankan mycmd.executenonquery() Catch ex As MySql.Data.MySqlClient.MySqlException MsgBox(ex.Message, "insert data gagal") End Try CmdClear_Click() txtid.focus() Data() CmbSimpan.Enabled = False GroupBox1.Enabled = False Private Sub IsiInvestor_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles IsiInvestor.DoubleClick If IsiInvestor.SelectedItems.Count > 0 Then txtid.text = IsiInvestor.SelectedItems(0).Text txtnama.text = IsiInvestor.SelectedItems(0).SubItems(1).Text cmbkelamin.text = IsiInvestor.SelectedItems(0).SubItems(2).Text txttmptlahir.text = IsiInvestor.SelectedItems(0).SubItems(3).Text txttngllahir.text = IsiInvestor.SelectedItems(0).SubItems(4).Text txtalamat.text = IsiInvestor.SelectedItems(0).SubItems(5).Text txtalamatkantor.text = IsiInvestor.SelectedItems(0).SubItems(6).Text txtlokasiperumahan.text = IsiInvestor.SelectedItems(0).SubItems(7).Text With frmhasilsurvei.show().txtid.text = txtid.text.txtnama.text = txtnama.text.mdiparent = MDIParent1 End With Me.Close() Private Sub IsiInvestor_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles IsiInvestor.SelectedIndexChanged If IsiInvestor.SelectedItems.Count > 0 Then txtid.text = IsiInvestor.SelectedItems(0).Text

6 83 txtnama.text = IsiInvestor.SelectedItems(0).SubItems(1).Text cmbkelamin.text = IsiInvestor.SelectedItems(0).SubItems(2).Text txttmptlahir.text = IsiInvestor.SelectedItems(0).SubItems(3).Text txttngllahir.text = IsiInvestor.SelectedItems(0).SubItems(4).Text txtalamat.text = IsiInvestor.SelectedItems(0).SubItems(5).Text txtalamatkantor.text = IsiInvestor.SelectedItems(0).SubItems(6).Text txtlokasiperumahan.text = IsiInvestor.SelectedItems(0).SubItems(7).Text Private Sub CmdHapus_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmdHapus.Click Dim Q As String Q = MsgBox("Apakah Anda yakin untuk menghapusnya?", MsgBoxStyle.YesNo) If Q = vbno Then Exit Sub If Q = vbyes Then Dim conn = koneksi.konek() ' variabel global conn yg dipanggil dari fungi koneksi Dim mycmd As New MySql.Data.MySqlClient.MySqlCommand("Delete From daftarinvestor Where id = '" & Trim(txtID.Text) & "' ", conn) Try 'jalankan mycmd.executenonquery() Catch ex As MySql.Data.MySqlClient.MySqlException MsgBox(ex.Message, "insert data gagal") End Try CmdClear_Click() txtid.focus() Data() Private Sub CmdCari_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmdCari.Click Dim conn = koneksi.konek() ' variabel global conn yg dipanggil dari fungi koneksi 'buat objek adapter Dim myadp As MySql.Data.MySqlClient.MySqlDataAdapter 'buat data tabel (agar data disusun tabel) Dim dt As New DataTable

7 84 'buat perintah query disini Dim query As String query = "Select * from daftarinvestor where Nama like '%" & Trim(TxtCari.Text) & "%'" Try 'jalankan perintah baca myadp = New MySql.Data.MySqlClient.MySqlDataAdapter(query, conn) Catch ex As Exception MsgBox(ex.Message) End Try IsiInvestor.Items.Clear() conn) 'buat objek command Dim mycmd As New MySql.Data.MySqlClient.MySqlCommand(query, 'buat objek pembaca Dim myread As MySql.Data.MySqlClient.MySqlDataReader 'jalankan query dan isi ke reader myread = mycmd.executereader() 'cek keberadaan data If myread.hasrows = True Then While myread.read Dim daftar As ListViewItem = IsiInvestor.Items.Add(myread.GetString(0)) daftar.subitems.add(myread.getstring(1)) daftar.subitems.add(myread.getstring(2)) daftar.subitems.add(myread.getstring(3)) daftar.subitems.add(myread.getstring(4)) daftar.subitems.add(myread.getstring(5)) daftar.subitems.add(myread.getstring(6)) daftar.subitems.add(myread.getstring(7)) End While 'tutup myread myread.close() Private Sub TxtCari_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TxtCari.TextChanged Call CmdCari_Click(sender, e) Private Sub txtid_keypress(byval sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtid.keypress If Not Char.IsDigit(e.KeyChar) And Not Char.IsControl(e.KeyChar) Then e.handled = True Beep() Private Sub txtid_textchanged(byval sender As System.Object, ByVal e As System.EventArgs) Handles txtid.textchanged

8 85 If txtid.text.length > 6 Then MsgBox("maksimal 6 karakter", MsgBoxStyle.OkOnly) txtid.text = "" Private Sub txtnama_keypress(byval sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtnama.keypress If Not Char.IsLetter(e.KeyChar) And Not Char.IsControl(e.KeyChar) And Not Microsoft.VisualBasic.Asc(e.KeyChar) = 32 Then e.handled = True Beep() Private Sub txtnama_textchanged(byval sender As System.Object, ByVal e As System.EventArgs) Handles txtnama.textchanged If txtnama.text.length > 50 Then MsgBox("maksimal 50 karakter", MsgBoxStyle.OkOnly) txtnama.text = "" Private Sub CmdClear_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmdClear.Click CmdClear_Click() CmdTambah.Enabled = True txtid.focus() GroupBox1.Enabled = True Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Me.Close() Private Sub txttngllahir_selectedindexchanged(byval sender As System.Object, ByVal e As System.EventArgs) If txttngllahir.text > 31 Then txttngllahir.text = "" Private Sub lbltmpttgllahir_click(byval sender As System.Object, ByVal e As System.EventArgs) Handles lbltmpttgllahir.click Private Sub txttmptlahir_textchanged(byval sender As System.Object, ByVal e As System.EventArgs) Handles txttmptlahir.textchanged Private Sub cmbedit_click_1(byval sender As System.Object, ByVal e As System.EventArgs) Handles cmbedit.click CmbSimpan.Enabled = True GroupBox1.Enabled = True End Class

9 86 4. Form Hasil Survei Public Class frmhasilsurvei Private Sub Data() record dari tabel pegawai 'Untuk mengisi objek lisview dengan Dim conn = koneksi.konek() ' variabel global conn yg dipanggil dari fungi koneksi 'buat objek adapter Dim myadp As MySql.Data.MySqlClient.MySqlDataAdapter Dim id_q As String id_q = frminvestor.txtid.text 'buat perintah query disini Dim query As String query = "Select * from hasilsurvei where ID='" + id_q + "' " Try 'jalankan perintah baca myadp = New MySql.Data.MySqlClient.MySqlDataAdapter(query, conn) Catch ex As Exception MsgBox(ex.Message) End Try isihasilsurvei.items.clear() conn) 'buat objek command Dim mycmd As New MySql.Data.MySqlClient.MySqlCommand(query, 'buat objek pembaca Dim myread As MySql.Data.MySqlClient.MySqlDataReader 'jalankan query dan isi ke reader myread = mycmd.executereader() 'cek keberadaan data If myread.hasrows = True Then While myread.read Dim daftar As ListViewItem = isihasilsurvei.items.add(myread.getstring(0)) daftar.subitems.add(myread.getstring(1)) daftar.subitems.add(myread.getstring(2)) daftar.subitems.add(myread.getstring(3)) daftar.subitems.add(myread.getstring(4)) daftar.subitems.add(myread.getstring(5)) daftar.subitems.add(myread.getstring(6)) daftar.subitems.add(myread.getstring(7)) daftar.subitems.add(myread.getstring(8)) daftar.subitems.add(myread.getstring(9)) End While

10 87 'tutup myread myread.close() Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label2.Click, Label7.Click, Label6.Click, Label5.Click, Label4.Click, Label3.Click, Label1.Click Private Sub CmdClear_Click() txtluaslahan.text = "" txtbangunan.text = "" txthargajual.text = "" txtradiuspencapaiankesaranapendidikan.text = "" txtradiuspencapaiankesaranakesehatan.text = "" txtradiuspencapaiankesaranaperdagangandanniaga.text = "" txtradiuspencapaiankesaranaruangterbuka.text = "" Private Sub frmhasilsurvei_formclosed(byval sender As Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed With frminvestor.show().mdiparent = MDIParent1 End With Private Sub frmhasilsurvei_load(byval sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Data() Private Sub CmdTambah_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmdTambah.Click If (txtbangunan.text = "" Or txtluaslahan.text = "" Or txthargajual.text = "" Or txtradiuspencapaiankesaranakesehatan.text = "" Or txtradiuspencapaiankesaranapendidikan.text = "" Or txtradiuspencapaiankesaranaperdagangandanniaga.text = "" Or txtradiuspencapaiankesaranaruangterbuka.text = "") Then MessageBox.Show("tidak boleh ada yang kosong", "Gagal menambah data", MessageBoxButtons.OK, MessageBoxIcon.Error) Exit Sub Dim LB As Double Dim LL As Double LB = txtbangunan.text LL = txtluaslahan.text If (LB > LL) Then MessageBox.Show("Luas Bangunan tidak boleh lebih besar dari Luas Lahan", "Gagal menambah data", MessageBoxButtons.OK, MessageBoxIcon.Error) Exit Sub Dim conn = koneksi.konek() ' variabel global conn yg dipanggil dari fungi koneksi

11 88 Dim mycmd As New MySql.Data.MySqlClient.MySqlCommand("Insert Into hasilsurvei Values('" & Trim(txtID.Text) & "', '" & Trim(txtNama.Text) & "', '" & Trim(txtBangunan.Text) & "', '" & Trim(txtLuasLahan.Text) & "', '" & Trim(txtHargaJual.Text) & "', '" & Trim(txtRadiusPencapaiankeSaranaPendidikan.Text) & "', '" & Trim(txtRadiusPencapaiankeSaranaKesehatan.Text) & "', '" & Trim(txtRadiusPencapaiankeSaranaRuangTerbuka.Text) & "', '" & Trim(txtRadiusPencapaiankeSaranaPerdagangandanNiaga.Text) & "', '""')", conn) Try 'jalankan mycmd.executenonquery() Catch ex As MySql.Data.MySqlClient.MySqlException MsgBox(ex.Message, "insert data gagal") End Try Data() CmdClear_Click() Private Sub isihasilsurvei_selectedindexchanged(byval sender As System.Object, ByVal e As System.EventArgs) Handles isihasilsurvei.selectedindexchanged If isihasilsurvei.selecteditems.count > 0 Then txtid.text = isihasilsurvei.selecteditems(0).text txtnama.text = isihasilsurvei.selecteditems(0).subitems(1).text txtbangunan.text = isihasilsurvei.selecteditems(0).subitems(2).text txtluaslahan.text = isihasilsurvei.selecteditems(0).subitems(3).text txthargajual.text = isihasilsurvei.selecteditems(0).subitems(4).text txtradiuspencapaiankesaranapendidikan.text = isihasilsurvei.selecteditems(0).subitems(5).text txtradiuspencapaiankesaranakesehatan.text = isihasilsurvei.selecteditems(0).subitems(6).text txtradiuspencapaiankesaranaruangterbuka.text = isihasilsurvei.selecteditems(0).subitems(7).text txtradiuspencapaiankesaranaperdagangandanniaga.text = isihasilsurvei.selecteditems(0).subitems(8).text id_data.text = isihasilsurvei.selecteditems(0).subitems(9).text Private Sub CmdHapus_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmdHapus.Click Dim Q As String Q = MsgBox("Apakah Anda yakin untuk menghapusnya?", MsgBoxStyle.YesNo) If Q = vbno Then Exit Sub If Q = vbyes Then Dim conn = koneksi.konek() ' variabel global conn yg dipanggil dari fungi koneksi

12 89 Dim mycmd As New MySql.Data.MySqlClient.MySqlCommand("Delete From hasilsurvei Where id_data = '" & Trim(id_data.Text) & "' ", conn) Data() Try 'jalankan mycmd.executenonquery() Catch ex As MySql.Data.MySqlClient.MySqlException MsgBox(ex.Message, "insert data gagal") End Try CmdClear_Click() Private Sub CmbEdit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Private Sub cmbproses_click(byval sender As System.Object, ByVal e As System.EventArgs) Handles cmbproses.click If (txtbangunan.text = "" Or txtluaslahan.text = "" Or txthargajual.text = "" Or txtradiuspencapaiankesaranakesehatan.text = "" Or txtradiuspencapaiankesaranapendidikan.text = "" Or txtradiuspencapaiankesaranaperdagangandanniaga.text = "" Or txtradiuspencapaiankesaranaruangterbuka.text = "") Then MessageBox.Show("tidak boleh ada yang kosong", "Gagal menambah data", MessageBoxButtons.OK, MessageBoxIcon.Error) Exit Sub Dim LB As Double Dim LL As Double Dim HJ As Double Dim RPSP As Double Dim RPSK As Double Dim RPSRT As Double Dim RPSPN As Double Dim rendahlb As Double Dim sedanglb As Double Dim tinggilb As Double Dim sangat_tinggilb As Double Dim rendahll As Double Dim sedangll As Double Dim tinggill As Double Dim sangat_tinggill As Double Dim rendahhj As Double Dim sedanghj As Double Dim tinggihj As Double Dim sangat_tinggihj As Double Dim rendahrpsp As Double Dim sedangrpsp As Double Dim tinggirpsp As Double Dim sangat_tinggirpsp As Double Dim rendahrpsk As Double Dim sedangrpsk As Double Dim tinggirpsk As Double

13 90 Dim sangat_tinggirpsk As Double Dim rendahrpsrt As Double Dim sedangrpsrt As Double Dim tinggirpsrt As Double Dim sangat_tinggirpsrt As Double Dim rendahrpspn As Double Dim sedangrpspn As Double Dim tinggirpspn As Double Dim sangat_tinggirpspn As Double Dim p1 As Double Dim p2 As Double Dim p3 As Double Dim p4 As Double Dim p5 As Double Dim p6 As Double Dim p7 As Double Dim p8 As Double Dim p9 As Double Dim p10 As Double Dim p11 As Double Dim p12 As Double Dim p13 As Double Dim p14 As Double Dim p15 As Double Dim p16 As Double Dim p17 As Double Dim p18 As Double Dim p19 As Double Dim p20 As Double Dim p21 As Double Dim p22 As Double Dim p23 As Double Dim p24 As Double Dim p25 As Double Dim p26 As Double Dim p27 As Double Dim p28 As Double Dim p29 As Double Dim p30 As Double Dim p31 As Double Dim p32 As Double Dim p33 As Double Dim p34 As Double Dim p35 As Double Dim p36 As Double Dim p37 As Double Dim p38 As Double Dim p39 As Double Dim p40 As Double Dim p41 As Double Dim p42 As Double Dim total_predikat As Double Dim indeks_rendah As Double Dim indeks_sedang As Double Dim indeks_tinggi As Double Dim indeks_sangat_tinggi As Double Dim weight_average As Double Dim kurang As Double Dim sedang As Double Dim baik As Double

14 91 Dim sangatbaik As Double Dim p_rendah As Double Dim p_sedang As Double Dim p_tinggi As Double Dim p_sangattinggi As Double Dim kateg_persentasi As String Dim printlb As String Dim printll As String Dim printhj As String Dim printrpsp As String Dim printrpsk As String Dim printrpsrt As String Dim printrpspn As String Dim nilaip As Double LB = txtbangunan.text LL = txtluaslahan.text HJ = txthargajual.text RPSP = txtradiuspencapaiankesaranapendidikan.text RPSK = txtradiuspencapaiankesaranakesehatan.text RPSRT = txtradiuspencapaiankesaranaruangterbuka.text RPSPN = txtradiuspencapaiankesaranaperdagangandanniaga.text If (LB > LL) Then MessageBox.Show("Luas Bangunan tidak boleh lebih besar dari Luas Lahan", "Gagal menambah data", MessageBoxButtons.OK, MessageBoxIcon.Error) Exit Sub If LB <= 25 Then rendahlb = 1 sedanglb = 0 If LB >= 25 And LB <= 35 Then rendahlb = (35 - LB) / 10 sedanglb = (LB - 25) / 10 If LB >= 35 Then rendahlb = 0 If LB > 35 And LB <= 65 Then sedanglb = 1 If LB > 65 And LB <= 75 Then sedanglb = (75 - LB) / 10 tinggilb = (LB - 65) / 10 If LB >= 75 Then sedanglb = 0 If LB <= 65 Then tinggilb = 0 If LB <= 75 And LB >= 95 Then tinggilb = 1 If LB >= 95 And LB <= 105 Then tinggilb = (105 - LB) / 10

15 92 sangat_tinggilb = (LB - 95) / 10 If LB >= 105 Then tinggilb = 0 sangat_tinggilb = 1 If LB <= 95 Then sangat_tinggilb = 0 If LB < 30 Then printlb = "Sempit" If LB >= 30 And LB < 70 Then printlb = "Normal" If LB >= 70 And LB < 90 Then printlb = "Luas" If LB >= 90 Then printlb = "Sangat Luas" If LL <= 45 Then rendahll = 1 If LL >= 45 And LL <= 55 Then rendahll = (55 - LB) / 10 sedangll = (LB - 45) / 10 If LL >= 55 Then rendahll = 0 If LL >= 55 And LL <= 95 Then sedangll = 1 If LL >= 95 And LL <= 105 Then sedangll = (105 - LL) / 10 tinggill = (LL - 95) / 10 If LL >= 105 Then sedangll = 0 If LL <= 95 Then tinggill = 0 If LL >= 105 And LL <= 145 Then tinggill = 1 If LL >= 145 And LL <= 155 Then tinggill = (155 - LL) / 10 sangat_tinggill = (LL - 145) / 10 If LL <= 145 Then sangat_tinggill = 0 If LL >= 155 Then tinggill = 0 sangat_tinggill = 1 If LL < 50 Then

16 93 printll = "Sempit" If LL >= 50 And LL < 100 Then printll = "Normal" If LL >= 100 And LL < 150 Then printll = "Luas" If LL >= 150 Then printll = "Sangat Luas" If HJ <= 95 Then rendahhj = 1 sedanghj = 0 If HJ >= 95 And HJ <= 145 Then rendahhj = (145 - HJ) / 50 sedanghj = (HJ - 95) / 50 If HJ >= 105 Then rendahll = 0 If HJ >= 145 And HJ <= 255 Then sedanghj = 1 If HJ >= 255 And HJ <= 305 Then sedanghj = (305 - HJ) / 50 tinggihj = (HJ - 255) / 50 If HJ >= 305 Then sedanghj = 0 If HJ <= 255 Then tinggihj = 0 If HJ >= 305 And HJ <= 455 Then tinggihj = 1 If HJ >= 455 And HJ <= 505 Then tinggihj = (505 - HJ) / 50 sangat_tinggihj = (HJ - 455) / 50 If HJ >= 505 Then tinggihj = 0 sangat_tinggihj = 1 If HJ <= 455 Then sangat_tinggihj = 0 If HJ < 100 Then printhj = "Murah" If HJ >= 100 And HJ < 300 Then printhj = "Normal" If HJ >= 300 And HJ < 500 Then printhj = "Mahal"

17 94 If HJ >= 500 Then printhj = "Sangat Mahal" If RPSP <= 995 Then rendahrpsp = 1 sedangrpsp = 0 If RPSP >= 995 And RPSP <= 1995 Then rendahrpsp = ( RPSP) / 1000 sedangrpsp = (RPSP - 995) / 1000 If RPSP >= 1995 Then rendahrpsp = 0 If RPSP >= 1995 And RPSP <= 4005 Then sedangrpsp = 1 If RPSP >= 4005 And RPSP <= 5005 Then sedangrpsp = ( RPSP) / 1000 tinggirpsp = (RPSP ) / 1000 If RPSP >= 5005 Then sedangrpsp = 0 If RPSP >= 4005 Then tinggirpsp = 0 If RPSP >= 5005 And RPSP <= 9005 Then tinggirpsp = 1 If RPSP >= 9005 And RPSP <= Then tinggirpsp = ( RPSP) / 1000 sangat_tinggirpsp = (RPSP ) / 1000 If RPSP >= Then tinggirpsp = 0 sangat_tinggirpsp = 1 If RPSP <= 9005 Then sangat_tinggirpsp = 0 If RPSP < 1000 Then printrpsp = "Dekat" If RPSP >= 1000 And RPSP < 5000 Then printrpsp = "Normal" If RPSP >= 5000 And RPSP < Then printrpsp = "Jauh" If RPSP >= Then printrpsp = "Sangat Jauh" If RPSK < 495 Then rendahrpsk = 1 sedangrpsk = 0

18 95 If RPSK >= 495 And RPSK <= 1495 Then rendahrpsk = ( RPSK) / 1000 sedangrpsk = (RPSK - 495) / 1000 If RPSK >= 1495 Then rendahrpsk = 0 If RPSK >= 1495 And RPSK <= 2495 Then sedangrpsk = 1 If RPSK >= 2495 And RPSK <= 3495 Then sedangrpsk = ( RPSK) / 1000 tinggirpsk = (RPSK ) / 1000 If RPSK >= 3495 Then sedangrpsk = 0 If RPSK <= 2495 Then tinggirpsk = 0 If RPSK >= 3495 And RPSK <= 4495 Then tinggirpsk = 1 If RPSK >= 4495 And RPSK <= 5495 Then tinggirpsk = ( RPSK) / 1000 sangat_tinggirpsk = (RPSK ) / 1000 If RPSK >= 5495 Then tinggirpsk = 0 sangat_tinggirpsk = 1 If RPSK <= 4495 Then sangat_tinggirpsk = 0 If RPSK < 500 Then printrpsk = "Dekat" If RPSK >= 500 And RPSK < 2000 Then printrpsk = "Normal" If RPSK >= 2000 And RPSK < 4000 Then printrpsk = "Jauh" If RPSK >= 4000 Then printrpsk = "Sangat Jauh" If RPSRT <= 95 Then rendahrpsrt = 1 sedangrpsrt = 0 If RPSRT >= 95 And RPSRT <= 195 Then rendahrpsrt = (195 - RPSRT) / 100 sedangrpsrt = (RPSRT - 95) / 100 If RPSRT >= 195 Then rendahrpsrt = 0 If RPSRT >= 195 And RPSRT <= 405 Then

19 96 sedangrpsrt = 1 If RPSRT >= 405 And RPSRT <= 505 Then sedangrpsrt = (505 - RPSRT) / 100 tinggirpsrt = (RPSRT - 405) / 100 If RPSRT >= 505 Then sedangrpsrt = 0 If RPSRT <= 405 Then tinggirpsrt = 0 If 505 <= RPSRT <= 905 Then tinggirpsrt = 1 If RPSRT >= 905 And RPSRT <= 1005 Then tinggirpsrt = ( RPSRT) / 100 sangat_tinggirpsrt = (RPSRT - 905) / 100 If RPSRT >= 1005 Then tinggirpsrt = 0 sangat_tinggirpsrt = 1 If RPSRT <= 905 Then sangat_tinggirpsrt = 0 If RPSRT < 100 Then printrpsrt = "Dekat" If RPSRT >= 100 And RPSRT < 500 Then printrpsrt = "Normal" If RPSRT >= 500 And RPSRT < 1000 Then printrpsrt = "Jauh" If RPSRT >= 1000 Then printrpsrt = "Sangat Jauh" If RPSPN <= 295 Then rendahrpspn = 1 sedangrpspn = 0 If 295 <= RPSPN <= 1295 Then rendahrpspn = ( RPSPN) / 1000 sedangrpspn = (RPSPN - 295) / 1000 If RPSPN >= 1295 Then rendahrpspn = 0 If 1295 <= RPSPN <= 2005 Then sedangrpspn = 1 If 2005 <= RPSPN <= 3005 Then sedangrpspn = ( RPSPN) / 1000 tinggirpspn = (RPSPN ) / 1000 If RPSPN >= 3005 Then sedangrpspn = 0

20 97 If RPSPN <= 2005 Then tinggirpspn = 0 If 3005 <= RPSPN <= 4005 Then tinggirpspn = 1 If 4005 <= RPSPN <= 5005 Then tinggirpspn = ( RPSPN) / 1000 sangat_tinggirpspn = (RPSPN ) / 1000 If RPSPN >= 5005 Then tinggirpspn = 0 sangat_tinggirpspn = 1 If RPSPN <= 4005 Then sangat_tinggirpspn = 0 If RPSPN < 300 Then printrpspn = "Dekat" If RPSPN >= 300 And RPSPN < 3000 Then printrpspn = "Normal" If RPSPN >= 3000 And RPSPN < 5000 Then printrpspn = "Jauh" If RPSPN >= 5000 Then printrpspn = "Sangat Jauh" With frmhasilproses.lblrendahlb.text = rendahlb.lblsedanglb.text = sedanglb.lbltinggilb.text = tinggilb.lblsangattinggilb.text = sangat_tinggilb.lblrendahll.text = rendahll.lblsedangll.text = sedangll.lbltinggill.text = tinggill.lblsangattinggill.text = sangat_tinggill.lblrendahhj.text = rendahhj.lblsedanghj.text = sedanghj.lbltinggihj.text = tinggihj.lblsangattinggihj.text = sangat_tinggihj.lblrendahrpsp.text = rendahrpsp.lblsedangrpsp.text = sedangrpsp.lbltinggirpsp.text = tinggirpsp.lblsangattinggirpsp.text = sangat_tinggirpsp.lblrendahrpsk.text = rendahrpsk.lblsedangrpsk.text = sedangrpsk.lbltinggirpsk.text = tinggirpsk.lblsangattinggirpsk.text = sangat_tinggirpsk.lblrendahrpsrt.text = rendahrpsrt.lblsedangrpsrt.text = sedangrpsrt.lbltinggirpsrt.text = tinggirpsrt.lblsangattinggirpsrt.text = sangat_tinggirpsrt.lblrendahrpspn.text = rendahrpspn.lblsedangrpspn.text = sedangrpspn.lbltinggirpspn.text = tinggirpspn.lblsangattinggirpspn.text = sangat_tinggirpspn

21 98 End With p1 = Math.Min(tinggiLB, rendahll) p2 = Math.Min(sedangLB, rendahll) p3 = Math.Min(rendahLB, sangat_tinggihj) p4 = Math.Min(rendahLB, rendahll) p5 = Math.Min(sedangLB, sangat_tinggihj) p6 = Math.Min(rendahLL, sangat_tinggihj) p7 = Math.Min(tinggiLL, rendahhj) p8 = Math.Min(tinggiHJ, tinggirpsp) p9 = Math.Min(tinggiHJ, tinggirpsk) p10 = Math.Min(tinggiHJ, tinggirpsrt) p11 = Math.Min(tinggiHJ, tinggirpspn) p12 = Math.Min(tinggiHJ, sangat_tinggirpsp) p13 = Math.Min(tinggiHJ, sangat_tinggirpsk) p14 = Math.Min(tinggiHJ, sangat_tinggirpsrt) p15 = Math.Min(tinggiHJ, sangat_tinggirpspn) p16 = Math.Min(sangat_tinggiHJ, sangat_tinggirpsp) p17 = Math.Min(sangat_tinggiHJ, sangat_tinggirpsk) p18 = Math.Min(sangat_tinggiHJ, sangat_tinggirpsrt) p19 = Math.Min(sangat_tinggiHJ, sangat_tinggirpspn) p20 = Math.Min(rendahLB, sedangll) p21 = Math.Min(rendahLB, sedanghj) p22 = Math.Min(sedangLB, sangat_tinggill) p23 = Math.Min(rendahHJ, tinggirpsp) p24 = Math.Min(rendahHJ, tinggirpsk) p25 = Math.Min(rendahHJ, tinggirpsrt) p26 = Math.Min(rendahHJ, tinggirpspn) p27 = Math.Min(sedangLB, tinggill) p28 = Math.Min(sedangLB, tinggirpsp) p29 = Math.Min(sedangLB, tinggihj) p30 = Math.Min(sedangLL, tinggihj) p31 = Math.Min(sedangHJ, tinggirpsp) p32 = Math.Min(sedangHJ, tinggirpsk) p33 = Math.Min(sedangHJ, tinggirpsrt) p34 = Math.Min(tinggiLB, tinggirpsk) p35 = Math.Min(sedangLL, sedangrpsk) p36 = Math.Min(tinggiLB, tinggill) p37 = Math.Min(tinggiLB, tinggihj) p38 = Math.Min(tinggiLL, tinggihj) p39 = Math.Min(tinggiHJ, rendahrpsp) p40 = Math.Min(tinggiHJ, rendahrpsk) p41 = Math.Min(tinggiHJ, rendahrpsrt) p42 = Math.Min(tinggiHJ, rendahrpspn) total_predikat = p1 + p2 + p3 + p4 + p5 + p6 + p7 + p8 + p9 + p10 + p11 + p12 + p13 + p14 + p15 + p16 + p17 + p18 + p19 + p20 + p21 + p22 + p23 + p24 + p25 + p26 + p27 + p28 + p29 + p30 + p31 + p32 + p33 + p34 + p35 + p36 + p37 + p38 + p39 + p40 + p41 + p42 indeks_rendah = (p1 * 0.2) + (p2 * 0.2) + (p3 * 0.2) + (p4 * 0.2) + (p5 * 0.2) + (p6 * 0.2) + (p7 * 0.2) + (p8 * 0.2) + (p9 * 0.2) + (p10 * 0.2) + (p1 * 0.2) + (p2 * 0.2) + (p3 * 0.2) + (p4 * 0.2) + (p5 * 0.2) + (p6 * 0.2) + (p7 * 0.2) + (p8 * 0.2) + (p19 * 0.2) indeks_sedang = (p20 * 0.4) + (p21 * 0.4) + (p22 * 0.4) + (p23 * 0.4) + (p24 * 0.4) + (p25 * 0.4) + (p26 * 0.4) indeks_tinggi = (p27 * 0.6) + (p28 * 0.6) + (p29 * 0.6) + (p30 * 0.6) + (p31 * 0.6) + (p32 * 0.6) + (p33 * 0.6) + (p34 * 0.6)

22 99 indeks_sangat_tinggi = (p35 * 0.8) + (p36 * 0.8) + (p37 * 0.8) + (p38 * 0.8) + (p39 * 0.8) + (p40 * 0.8) + (p41 * 0.8) + (p42 * 0.8) weight_average = Math.Round(((indeks_rendah + indeks_sedang + indeks_tinggi + indeks_sangat_tinggi) / total_predikat), 2) kurang = Math.Sqrt(Math.Pow((0.2 - weight_average), 2)) sedang = Math.Sqrt(Math.Pow((0.4 - weight_average), 2)) baik = Math.Sqrt(Math.Pow((0.6 - weight_average), 2)) sangatbaik = Math.Sqrt(Math.Pow((0.8 - weight_average), 2)) p_rendah = (1 - kurang) * 100 p_sedang = (1 - sedang) * 100 p_tinggi = (1 - baik) * 100 p_sangattinggi = (1 - sangatbaik) * 100 If weight_average >= 0 And weight_average <= 0.39 Then kateg_persentasi = "KURANG" nilaip = p_rendah If weight_average >= 0.4 And weight_average <= 0.59 Then kateg_persentasi = "CUKUP" nilaip = p_sedang If weight_average >= 0.6 And weight_average <= 0.79 Then kateg_persentasi = "BAIK" nilaip = p_tinggi If weight_average >= 0.8 And weight_average <= 1 Then kateg_persentasi = "SANGAT BAIK" nilaip = p_sangattinggi With frmpersentase.lblkategoripersentasi.text = kateg_persentasi.nilai_p.text = nilaip & "%".lblsisalahan.text = LL - LB & " m²".lbllb.text = printlb.lblll.text = printll.lblhj.text = printhj.lblrpsp.text = printrpsp.lblrpsk.text = printrpsk.lblrpsrt.text = printrpsrt.lblrpspn.text = printrpspn.nilailb.text = LB.nilaiLL.Text = LL.nilaiHJ.Text = HJ.nilaiRPSP.Text = RPSP.nilaiRPSK.Text = RPSK.nilaiRPSRT.Text = RPSRT.nilaiRPSPN.Text = RPSPN.Show().MdiParent = MDIParent1 End With

23 100 Private Sub txtbangunan_keypress(byval sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtbangunan.keypress If Not Char.IsNumber(e.KeyChar) And Not Char.IsControl(e.KeyChar) Then e.handled = True Beep() Private Sub txtluaslahan_keypress(byval sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtluaslahan.keypress If Not Char.IsNumber(e.KeyChar) And Not Char.IsControl(e.KeyChar) Then e.handled = True Beep() Private Sub txthargajual_keypress(byval sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txthargajual.keypress If Not Char.IsNumber(e.KeyChar) And Not Char.IsControl(e.KeyChar) Then e.handled = True Beep() Private Sub txtradiuspencapaiankesaranapendidikan_keypress(byval sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtradiuspencapaiankesaranapendidikan.keypress If Not Char.IsNumber(e.KeyChar) And Not Char.IsControl(e.KeyChar) Then e.handled = True Beep() Private Sub txtradiuspencapaiankesaranakesehatan_keypress(byval sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtradiuspencapaiankesaranakesehatan.keypress If Not Char.IsNumber(e.KeyChar) And Not Char.IsControl(e.KeyChar) Then e.handled = True Beep() Private Sub txtradiuspencapaiankesaranaruangterbuka_keypress(byval sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtradiuspencapaiankesaranaruangterbuka.keypress If Not Char.IsNumber(e.KeyChar) And Not Char.IsControl(e.KeyChar) Then e.handled = True Beep()

LAMPIRAN A-2 : LAPORAN PENJUALAN DOKUMEN KELUARAN

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

More information

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

A-1 LISTING PROGRAM. 1. Module1

A-1 LISTING PROGRAM. 1. Module1 A-1 LISTING PROGRAM 1. Module1 Imports System.Data.Odbc Imports System.Data Imports System.Data.SqlClient Imports MySql.Data.MySqlClient Module Module1 Public userid As String Public level As String Public

More information

Lampiran 1 Kode Program

Lampiran 1 Kode Program 53 Lampiran 1 Kode Program Kode Program 1 Kode Menu Peminjaman Private Sub BT_Cari_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BT_Cari.Click Call CariKaset() Private Sub RB_CheckedChanged(ByVal

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

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

Member Management System

Member Management System Member Management System These codes are provided ONLY for reference / Help developers. And also SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUERMENT FOR THE AWARD OF BACHELOR OF COMPUTER APPLICATION (BCA)

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

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

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

More information

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

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

ภาคผนวก ก. Source Code

ภาคผนวก ก. Source Code ภาคผนวก ภาคผนวก ก. Source Code 154 155 Source Code ช อ Empbook Option Explicit On Option Strict On Imports System.data Imports System.Data.OleDb Public Class Empbook Dim Book_status As Integer = 1 'ęğŀşľłŀăăő

More information

'The following GUID is for the ID of the typelib if this project is exposed to COM <Assembly: Guid("8b a5-46bb-a6a9-87b4949d1f4c")>

'The following GUID is for the ID of the typelib if this project is exposed to COM <Assembly: Guid(8b a5-46bb-a6a9-87b4949d1f4c)> LAMPIRAN A : LISTING PROGRAM Imports System Imports System.Reflection Imports System.Runtime.InteropServices ' General Information about an assembly is controlled through the following ' set of attributes.

More information

ก Microsoft Visual Studio 2008

ก Microsoft Visual Studio 2008 ก 58 ก ก ก ก ก 58 59 ก Microsoft Visual Studio 2008 1. DVD ก MSVS2008 ก MSVS2008 ก ก MSVS2008 ก ก 180 DVD DVD ก MSVS2008 ก ก Install Visual Studio 2008 2. ก ก ก ก ก Next 3. ก ก Options Page ก Custom ก

More information

Send to: MM Irfan Subakti CC to Muhammad Ryanda Nugraha M with the. IF184401_DAA(F)_MID_NRP_Name.

Send to: MM Irfan Subakti CC to Muhammad Ryanda Nugraha M with the. IF184401_DAA(F)_MID_NRP_Name. IF184401 Design & Analysis of Algorithms (F) Midterm Exam Starting date: 9 March 2019 Deadline: 16 March 2019, 23:59 WIB. Exam type: Open Send to: MM Irfan Subakti CC to Muhammad Ryanda

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

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

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

โปรแกรมช วยทดสอบหม อแปลงกระแส

โปรแกรมช วยทดสอบหม อแปลงกระแส โปรแกรมช วยทดสอบหม อแปลงกระแส 1.เมน ของโปรแกรม ภาพท 1 หน าเมน ของโปรแกรม Public Class frmmain Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

More information

VISUAL BASIC PROGRAMMING (44) Technical Task KEY. Regional 2013 TOTAL POINTS (485)

VISUAL BASIC PROGRAMMING (44) Technical Task KEY. Regional 2013 TOTAL POINTS (485) 5 Pages VISUAL BASIC PROGRAMMING (44) Technical Task KEY Regional 2013 TOTAL POINTS (485) Graders: Please double-check and verify all scores! Property of Business Professionals of America. May be reproduced

More information

LAMPIRAN A : LISTING PROGRAM

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

More information

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

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

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 1 Listing Program 1. Form Menu Public Class frm_menu Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click frm_login.show() Me.Hide()

More information

Connection Example. Document ID : Connection_Example.PDF Author : Michele Harris Version : 1.1 Date :

Connection Example. Document ID : Connection_Example.PDF Author : Michele Harris Version : 1.1 Date : Connection Example Document ID : Connection_Example.PDF Author : Michele Harris Version : 1.1 Date : 2009-06-19 page 1 Table of Contents Connection Example... 2 Adding the Code... 2 Quick Watch myconnection...

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

Form Adapter Example. DRAFT Document ID : Form_Adapter.PDF Author : Michele Harris Version : 1.1 Date :

Form Adapter Example. DRAFT Document ID : Form_Adapter.PDF Author : Michele Harris Version : 1.1 Date : Form Adapter Example DRAFT Document ID : Form_Adapter.PDF Author : Michele Harris Version : 1.1 Date : 2009-06-19 Form_Adapter.doc DRAFT page 1 Table of Contents Creating Form_Adapter.vb... 2 Adding the

More information

FOR 240 Homework Assignment 4 Using DBGridView and Other VB Controls to Manipulate Database Introduction to Computing in Natural Resources

FOR 240 Homework Assignment 4 Using DBGridView and Other VB Controls to Manipulate Database Introduction to Computing in Natural Resources FOR 240 Homework Assignment 4 Using DBGridView and Other VB Controls to Manipulate Database Introduction to Computing in Natural Resources This application demonstrates how a DataGridView control can be

More information

Lab 3 The High-Low Game

Lab 3 The High-Low Game Lab 3 The High-Low Game LAB GOALS To develop a simple windows-based game named High-Low using VB.Net. You will use: Buttons, Textboxes, Labels, Dim, integer, arithmetic operations, conditionals [if-then-else],

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

Déclaration du module

Déclaration du module Déclaration du module Imports System.IO Module ModuleStagiaires Public Structure Stagiaire Private m_code As Long Private m_nom As String Private m_prenom As String Public Property code() As Long Get Return

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

C16 Visual Basic Net Programming

C16 Visual Basic Net Programming C16 Visual Basic Net Programming Student ID Student Name Date - Module Tutor - 1 P a g e Report Contents Introduction... 2 Software Development Process... 3 Self Reflection... 6 References... 6 Appendices...

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

Learning VB.Net. Tutorial 19 Classes and Inheritance

Learning VB.Net. Tutorial 19 Classes and Inheritance Learning VB.Net Tutorial 19 Classes and Inheritance Hello everyone welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple applications, hope you

More information

DO NOT COPY AMIT PHOTOSTUDIO

DO NOT COPY AMIT PHOTOSTUDIO AMIT PHOTOSTUDIO These codes are provided ONLY for reference / Help developers. And also SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUERMENT FOR THE AWARD OF BACHELOR OF COMPUTER APPLICATION (BCA) All rights

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

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

PROGRAMMING ASSIGNMENT: MOVIE QUIZ

PROGRAMMING ASSIGNMENT: MOVIE QUIZ PROGRAMMING ASSIGNMENT: MOVIE QUIZ For this assignment you will be responsible for creating a Movie Quiz application that tests the user s of movies. Your program will require two arrays: one that stores

More information

Learning VB.Net. Tutorial 10 Collections

Learning VB.Net. Tutorial 10 Collections Learning VB.Net Tutorial 10 Collections Hello everyone welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple applications, hope you enjoy it.

More information

"!#... )*! "!# )+, -./ 01 $

!#... )*! !# )+, -./ 01 $ Email engauday@hotmail.com! "!#... $ %&'... )*! "!# )+, -./ 01 $ ) 1+ 2#3./ 01 %.. 7# 89 ; )! 5/< 3! = ;, >! 5 6/.?

More information

Objectives. After completing this topic, the students will: Understand of the concept of polymorphism Know on How to implement 2 types of polymorphism

Objectives. After completing this topic, the students will: Understand of the concept of polymorphism Know on How to implement 2 types of polymorphism Polymorphism Objectives After completing this topic, the students will: Understand of the concept of polymorphism Know on How to implement 2 types of polymorphism Definition Polymorphism provides the ability

More information

LAMPIRAN A. LISTING PROGRAM

LAMPIRAN A. LISTING PROGRAM 78 LAMPIRAN A. LISTING PROGRAM Form Login.vb Imports MySql Imports MySql.Data Imports MySql.Data.MySqlClient Public Class FormLogIn Private Sub BtnLoginClick(ByVal sender As System.Object, ByVal e As System.EventArgs)

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

IMS1906: Business Software Fundamentals Tutorial exercises Week 5: Variables and Constants

IMS1906: Business Software Fundamentals Tutorial exercises Week 5: Variables and Constants IMS1906: Business Software Fundamentals Tutorial exercises Week 5: Variables and Constants These notes are available on the IMS1906 Web site http://www.sims.monash.edu.au Tutorial Sheet 4/Week 5 Please

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

C4.3, 4 Lab: Conditionals - Select Statement and Additional Input Controls Solutions

C4.3, 4 Lab: Conditionals - Select Statement and Additional Input Controls Solutions C4.3, 4 Lab: Conditionals - Select Statement and Additional Input Controls Solutions Between the comments included with the code and the code itself, you shouldn t have any problems understanding what

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

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

Data Verification and Validation Process in the Management System Development

Data Verification and Validation Process in the Management System Development Middle-East Journal of Scientific Research 25 (5): 902-911, 2017 ISSN 1990-9233 IDOSI Publications, 2017 DOI: 10.5829/idosi.mejsr.2017.902.911 Data Verification and Validation Process in the Management

More information

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

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

More information

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

Universitas Sumatera Utara

Universitas Sumatera Utara LAMPIRAN Listing Program FormUtama.vb Public Class FormUtama Dim uchome As UcHome Dim ucconnection As UcConnection Dim ucbook As UcBook Dim ucanggota As UcAnggota Dim ucpeminjaman As UcPeminjaman Dim ucpengembalian

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

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

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

LISTING PROGRAM. frmmenu.vb. frmlogin.vb. Universitas Sumatera Utara. Public Class frmmenu

LISTING PROGRAM. frmmenu.vb. frmlogin.vb. Universitas Sumatera Utara. Public Class frmmenu LISTING PROGRAM frmmenu.vb Public Class frmmenu Private Sub QuitToolStripMenuItem_Click(ByVal sender As QuitToolStripMenuItem.Click Close() Private Sub OtoritasToolStripMenuItem_Click(ByVal sender As OtoritasToolStripMenuItem.Click

More information

STRUKTUR PROGRAM JAVA: //Daftar paket yang digunakan dalam program import namapaket;

STRUKTUR PROGRAM JAVA: //Daftar paket yang digunakan dalam program import namapaket; STRUKTUR PROGRAM JAVA: //Daftar paket yang digunakan dalam program import namapaket; //Membuat Kelas public class namakelas //Metode Utama public static void main(string[] args) perintah-perintah;... LATIHAN

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

In this tutorial we will create a simple calculator to Add/Subtract/Multiply and Divide two numbers and show a simple message box result.

In this tutorial we will create a simple calculator to Add/Subtract/Multiply and Divide two numbers and show a simple message box result. Simple Calculator In this tutorial we will create a simple calculator to Add/Subtract/Multiply and Divide two numbers and show a simple message box result. Let s get started First create a new Visual Basic

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

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR STUDENT IDENTIFICATION NO MULTIMEDIA COLLEGE JALAN GURNEY KIRI 54100 KUALA LUMPUR THIRD, FOURTH, EIGHTH TRIMESTER FINAL EXAMINATION, 2013 SESSION MMD2193 MULTIMEDIA AUTHORING I DMTW-E-F-2/12, DMTW-E-F-1/12,

More information

How to Validate DataGridView Input

How to Validate DataGridView Input How to Validate DataGridView Input This example explains how to use DR.net to set validation criteria for a DataGridView control on a Visual Studio.NET form. Why You Should Use This To add extensible and

More information

LAMPIRAN. 1. Kode Program

LAMPIRAN. 1. Kode Program 1. Kode Program LAMPIRAN Kode Program 1. Kode program untuk Form Data Imports BusinessLib Public Class formdata #Region " Member " Dim _siswa As Siswa Dim _guru As Guru Dim _mapel As MataPelajaran Dim

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

CALIFORNIA STATE UNIVERSITY, SACRAMENTO College of Business Administration. MIS 15 Introduction to Business Programming. Programming Assignment 3 (P3)

CALIFORNIA STATE UNIVERSITY, SACRAMENTO College of Business Administration. MIS 15 Introduction to Business Programming. Programming Assignment 3 (P3) CALIFORNIA STATE UNIVERSITY, SACRAMENTO College of Business Administration MIS 15 Introduction to Business Programming Programming Assignment 3 (P3) Points: 50 Due Date: Tuesday, May 10 The purpose of

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

Revision for Final Examination (Second Semester) Grade 9

Revision for Final Examination (Second Semester) Grade 9 Revision for Final Examination (Second Semester) Grade 9 Name: Date: Part 1: Answer the questions given below based on your knowledge about Visual Basic 2008: Question 1 What is the benefit of using Visual

More information

LAMPIRAN A: Listing Program

LAMPIRAN A: Listing Program 67 1. Form Menu Utama LAMPIRAN A: Listing Program Public Class MScreen Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me.Hide() Form1.Show()

More information

My first game. 'function which adds objects with bug tag to bugarray array. Saturday, November 23, :06 AM

My first game. 'function which adds objects with bug tag to bugarray array. Saturday, November 23, :06 AM My first game Saturday, November 23, 2013 5:06 AM Public Class Form1 Dim moveright As Boolean = False Dim moveup As Boolean = False Dim moveleft As Boolean = False Dim movedown As Boolean = False Dim score

More information

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

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

More information

workshop clustering the world basic machine learning with R bernardus ari kuncoro V3.0

workshop clustering the world basic machine learning with R bernardus ari kuncoro V3.0 workshop clustering the world basic machine learning with R bernardus ari kuncoro V3.0 about me Hi, I am Ari! Work School quiz How many R letters written on my slide? A. 3 B. 6 C. 9 D. 12 http://arikuncoro.xyz/fff

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

How to work with data sources and datasets

How to work with data sources and datasets Chapter 14 How to work with data sources and datasets Objectives Applied Use a data source to get the data that an application requires. Use a DataGridView control to present the data that s retrieved

More information

System Analysis and Design

System Analysis and Design System Analysis and Design LAB RECORD-INFS -280/L Information Systems Department University of Nizwa, Sultanate of Oman Table of Contents Task. No: Title Page Nos. Date 1) VB Text box and Message Button

More information

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

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

More information

Herefordshire College of Technology Centre Edexcel BTEC Level 3 Extended Diploma in Information Technology (Assignment 1 of 3)

Herefordshire College of Technology Centre Edexcel BTEC Level 3 Extended Diploma in Information Technology (Assignment 1 of 3) Student: Candidate Number: Assessor: Len Shand Herefordshire College of Technology Centre 24150 Edexcel BTEC Level 3 Extended Diploma in Information Technology (Assignment 1 of 3) Course: Unit: Title:

More information

1. Create your First VB.Net Program Hello World

1. Create your First VB.Net Program Hello World 1. Create your First VB.Net Program Hello World 1. Open Microsoft Visual Studio and start a new project by select File New Project. 2. Select Windows Forms Application and name it as HelloWorld. Copyright

More information

1. We insert elements inside (CompoBox) tool through Items property ( ) 2. ComboBox tool use to choose just one item from the list ( )

1. We insert elements inside (CompoBox) tool through Items property ( ) 2. ComboBox tool use to choose just one item from the list ( ) st Q: Put ( ) or ( ) for the following sentence:. We insert elements inside (CompoBox) tool through Items property ( ) 2. ComboBox tool use to choose just one item from the list ( ) 3. VB.Net allows adding

More information

SECURE-SPIN WITH HASHING TO SUPPORT MOBILITY AND SECURITY IN WIRELESS SENSOR NETWORK MOHAMMAD HOSSEIN AMRI UNIVERSITI TEKNOLOGI MALAYSIA

SECURE-SPIN WITH HASHING TO SUPPORT MOBILITY AND SECURITY IN WIRELESS SENSOR NETWORK MOHAMMAD HOSSEIN AMRI UNIVERSITI TEKNOLOGI MALAYSIA SECURE-SPIN WITH HASHING TO SUPPORT MOBILITY AND SECURITY IN WIRELESS SENSOR NETWORK MOHAMMAD HOSSEIN AMRI UNIVERSITI TEKNOLOGI MALAYSIA SECURE-SPIN WITH HASHING TO SUPPORT MOBILITY AND SECURITY IN WIRELESS

More information

Visual Basic: Opdracht Structuur

Visual Basic: Opdracht Structuur Visual Basic: Opdracht Structuur HoofdMenu.vb SubMenu_Kwadraat.vb Form1.vb Form2.vb Submenu_Som.vb Form3.vb Form4.vb SubMenu_Gem.vb Form5.vb Form6.vb Form10.vb SubMenu_Naam.vb Form7.vb Form11.vb Form8.vb

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

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

Visual Basic 2008 The programming part

Visual Basic 2008 The programming part Visual Basic 2008 The programming part Code Computer applications are built by giving instructions to the computer. In programming, the instructions are called statements, and all of the statements that

More information

DRAWING AND MOVING IMAGES

DRAWING AND MOVING IMAGES DRAWING AND MOVING IMAGES Moving images and shapes in a Visual Basic application simply requires the user of a Timer that changes the x- and y-positions every time the Timer ticks. In our first example,

More information

Imports System.Data.SqlClient. Public Class Phonebook

Imports System.Data.SqlClient. Public Class Phonebook Imports System.Data.SqlClient Public Class Phonebook Dim vbdatabasedataset As New vbdatabasedataset() Dim PhonebookTableAdapter As New vbdatabasedatasettableadapters.phonebooktableadapter() Dim selection

More information

Learning VB.Net. Tutorial 17 Classes

Learning VB.Net. Tutorial 17 Classes Learning VB.Net Tutorial 17 Classes Hello everyone welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple applications, hope you enjoy it. If

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

IOS Plus Trade - Web Services Version 4 Walkthrough

IOS Plus Trade - Web Services Version 4 Walkthrough IOS Plus Trade - Web Services Version 4 Walkthrough Visual Basic 2008 sample to retrieve IOS Plus Trade information The purpose of this walkthrough is to build the following Windows Forms Application that

More information

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

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

More information

Design Of Human Computer Interfaces Assignment 1- Hello World. Compliance Report

Design Of Human Computer Interfaces Assignment 1- Hello World. Compliance Report Design Of Human Computer Interfaces Assignment 1- Hello World Compliance Report Prepared for: Skip Poehlman Prepared By: K C Course: SE 4D03 Date: September 30, 2008 Contents 1. Code Listing a. Module

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

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

LAMPIRAN DAFTAR PUBLIKASI ILMIAH PENULIS. No Judul Nama Seminar Tempat Tahun 1 Pemanfaatan Fuzzy Logic Dalam menakar Prestasi

LAMPIRAN DAFTAR PUBLIKASI ILMIAH PENULIS. No Judul Nama Seminar Tempat Tahun 1 Pemanfaatan Fuzzy Logic Dalam menakar Prestasi LAMPIRAN DAFTAR PUBLIKASI ILMIAH PENULIS No Judul Nama Seminar Tempat Tahun 1 Pemanfaatan Fuzzy Logic Dalam menakar Prestasi Konferensi Nasional Pengembangan Siswa Sesuai Standar Teknologi Informasi Kompetensi

More information

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

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

More information

To enter the number in decimals Label 1 To show total. Text:...

To enter the number in decimals Label 1 To show total. Text:... Visual Basic tutorial - currency converter We will use visual studio to create a currency converter where we can convert a UK currency pound to other currencies. This is the interface for the application.

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

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

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

More information

INSTRUCTION: This section consists of FOUR (4) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi EMPAT (4) soalan. Jawab SEMUA soalan.

INSTRUCTION: This section consists of FOUR (4) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi EMPAT (4) soalan. Jawab SEMUA soalan. SECTION B: 70 MARKS BAHAGIAN B: 70 MARKAH INSTRUCTION: This section consists of FOUR (4) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi EMPAT (4) soalan. Jawab SEMUA soalan. QUESTION

More information