LISTING PROGRAM. Source Code Tampilan Awal. Source Code Menu Utama

Size: px
Start display at page:

Download "LISTING PROGRAM. Source Code Tampilan Awal. Source Code Menu Utama"

Transcription

1 LISTING PROGRAM Source Code Tampilan Awal Private Sub cmdkeluar_click() MsgBox "Terima Kasih Telah Membuka Program Ini.", vbinformation, "Quick IP Ver 1.0" End Private Sub cmdmasuk_click() MenuUtama.Show Source Code Menu Utama Private Sub About_Click() AboutForm.Show Private Sub cmdabout_click() AboutForm.Show Private Sub cmdkeluar_click() MsgBox "Terima Kasih Telah Membuka Program Ini.", vbinformation, "Quick IP Ver 1.0" End Private Sub cmdkirimpesan_click() PesanForm.Show Private Sub cmdpingtracert_click() PerintahForm.Show Private Sub cmdhitungip_click() MainForm.Show Private Sub Keluar_Click() End Private Sub KirimPesan_Click() PesanForm.Show

2 Private Sub PingTracer_Click() PerintahForm.Show Source Code Hitung IP 'Sub Operasi Network Address Sub OperasiNa() lblna1.caption = txtip1.text And txtnet1.text lblna2.caption = txtip2.text And txtnet2.text lblna3.caption = txtip3.text And txtnet3.text lblna4.caption = txtip4.text And txtnet4.text 'Sub Reset Sub Reset() lblkelas.caption = "" lblna1.caption = "" lblna2.caption = "" lblna3.caption = "" lblna4.caption = "" lblba1.caption = "" lblba2.caption = "" lblba3.caption = "" lblba4.caption = "" lblth.caption = "" lblthv.caption = "" 'Masuk Form About Private Sub cmdabout_click() AboutForm.Show 'Ulangi Private Sub cmdcoba_click() lblkelas.caption = "" txtip1.text = "" txtip2.text = "" txtip3.text = "" txtip4.text = "" txtnet1.text = "" txtnet2.text = ""

3 txtnet3.text = "" txtnet4.text = "" lblna1.caption = "" lblna2.caption = "" lblna3.caption = "" lblna4.caption = "" lblba1.caption = "" lblba2.caption = "" lblba3.caption = "" lblba4.caption = "" lblth.caption = "" lblthv.caption = "" txtip1.setfocus 'Pesan Keluar Private Sub cmdkeluar_click() MenuUtama.Show Private Sub cmdperintah_click() PerintahForm.Show Private Sub cmdkembali_click() MenuUtama.Show Private Sub cmdprs_click() 'IP If txtip1.text = "" Then MsgBox "IP Address prefix 1 masih kosong", vbcritical, "Kesalahan IP Address" txtip1.setfocus If Not IsNumeric(txtIp1.Text) Then MsgBox "IP Address prefix 1 harus berisi angka", vbcritical, "Kesalahan Penulisan IP Adddress" txtip1.setfocus If txtip1.text < 1 Or txtip1.text > 255 Then MsgBox "IP Address prefix 1 diluar jangkauan", vbcritical, "Kesalahan IP Address"

4 txtip1.setfocus 'IP If txtip2.text = "" Then MsgBox "IP Address prefix 2 masih kosong", vbcritical, "Kesalahan IP Address" txtip2.setfocus If Not IsNumeric(txtIp2.Text) Then MsgBox "IP Address prefix 2 harus berisi angka", vbcritical, "Kesalahan Penulisan IP Adddress" txtip2.setfocus If txtip2.text < 0 Or txtip2.text > 255 Then MsgBox "IP Address prefix 2 diluar jangkauan", vbcritical, "Kesalahan IP Address" txtip2.setfocus 'IP If txtip3.text = "" Then MsgBox "IP Address prefix 3 masih kosong", vbcritical, "Kesalahan IP Address" txtip3.setfocus If Not IsNumeric(txtIp3.Text) Then MsgBox "IP Address prefix 3 harus berisi angka", vbcritical, "Kesalahan Penulisan IP Adddress" txtip3.setfocus If txtip3.text < 0 Or txtip3.text > 255 Then MsgBox "IP Address prefix 3 diluar jangkauan", vbcritical, "Kesalahan IP Address" txtip3.setfocus 'IP If txtip4.text = "" Then MsgBox "IP Address prefix 4 masih kosong", vbcritical, "Kesalahan IP Address"

5 txtip4.setfocus If Not IsNumeric(txtIp4.Text) Then MsgBox "IP Address prefix 4 harus berisi angka", vbcritical, "Kesalahan Penulisan IP Adddress" txtip4.setfocus If txtip4.text < 0 Or txtip4.text > 255 Then MsgBox "IP Address prefix 4 diluar jangkauan", vbcritical, "Kesalahan IP Address" txtip4.setfocus 'Net If txtnet1.text = "" Then MsgBox "Subnet mask prefix 1 masih kosong", vbcritical, "Kesalahan Subnet Mask" txtnet1.setfocus If Not IsNumeric(txtNet1.Text) Then MsgBox "Subnet Mask prefix 1 harus berisi angka", vbcritical, "Kesalahan Penulisan Subnet Mask" txtnet1.setfocus If txtnet1.text <> 255 Then MsgBox "Subnet mask prefix 1 Salah. Prefix 1 hanya bisa diisi dengan 255", vbcritical, "Kesalahan Subnet mask" txtnet1.setfocus 'Net If txtnet2.text = "" Then MsgBox "Subnet mask prefix 2 masih kosong", vbcritical, "Kesalahan Subnet Mask" txtnet2.setfocus If Not IsNumeric(txtNet2.Text) Then

6 MsgBox "Subnet Mask prefix 2 harus berisi angka", vbcritical, "Kesalahan Penulisan Subnet Mask" txtnet2.setfocus If txtnet2.text <> 0 And _ txtnet2.text <> 128 And _ txtnet2.text <> 192 And _ txtnet2.text <> 224 And _ txtnet2.text <> 240 And _ txtnet2.text <> 248 And _ txtnet2.text <> 252 And _ txtnet2.text <> 254 And _ txtnet2.text <> 255 Then MsgBox "Subnet mask prefix 2 Salah. Prefix 2 hanya bisa diisi dengan: 0, 128, 192, 224, 240, 248, 252, 254 atau 255", vbcritical, "Kesalahan Subnet mask" txtnet2.setfocus 'Net If txtnet3.text = "" Then MsgBox "Subnet mask prefix 3 masih kosong", vbcritical, "Kesalahan Subnet Mask" txtnet3.setfocus If Not IsNumeric(txtNet3.Text) Then MsgBox "Subnet Mask prefix 3 harus berisi angka", vbcritical, "Kesalahan Penulisan Subnet Mask" txtnet3.setfocus If txtnet3.text <> 0 And _ txtnet3.text <> 128 And _ txtnet3.text <> 192 And _ txtnet3.text <> 224 And _ txtnet3.text <> 240 And _ txtnet3.text <> 248 And _ txtnet3.text <> 252 And _ txtnet3.text <> 254 And _ txtnet3.text <> 255 Then

7 MsgBox "Subnet mask prefix 3 Salah. Prefix 3 hanya bisa diisi dengan: 0, 128, 192, 224, 240, 248, 252, 254 atau 255", vbcritical, "Kesalahan Subnet mask" txtnet3.setfocus 'Net If txtnet4.text = "" Then MsgBox "Subnet mask prefix 4 masih kosong", vbcritical, "Kesalahan Subnet Mask" txtnet4.setfocus If Not IsNumeric(txtNet4.Text) Then MsgBox "Subnet Mask prefix 4 harus berisi angka", vbcritical, "Kesalahan Penulisan Subnet Mask" txtnet4.setfocus If txtnet4.text <> 0 And _ txtnet4.text <> 128 And _ txtnet4.text <> 192 And _ txtnet4.text <> 224 And _ txtnet4.text <> 240 And _ txtnet4.text <> 248 And _ txtnet4.text <> 252 And _ txtnet4.text <> 254 And _ txtnet4.text <> 255 Then MsgBox "Subnet mask prefix 4 Salah. Prefix 4 hanya bisa diisi dengan: 0, 128, 192, 224, 240, 248, 252, 254 atau 255", vbcritical, "Kesalahan Subnet mask" txtnet4.setfocus 'Menentukan Kelas If txtnet1.text = 255 And _ txtnet2.text < 255 And _ txtnet3.text < 255 And _ txtnet4.text < 255 _ Then lblkelas.caption = "A" GoSub KelasA If txtnet1.text = 255 And _

8 txtnet2.text = 255 And _ txtnet3.text < 255 And _ txtnet4.text < 255 Then lblkelas.caption = "B" GoSub KelasB If txtnet1.text = 255 And _ txtnet2.text = 255 And _ txtnet3.text = 255 And _ txtnet4.text < 255 _ Then lblkelas.caption = "C" GoSub KelasC If txtnet1.text = 255 And _ txtnet2.text = 255 And _ txtnet3.text = 255 And _ txtnet4.text = 255 Then lblkelas.caption = "D atau E" MsgBox "Program ini hanya untuk kelas A, B, dan C", vbexclamation, "Batasan" lblna1.caption = "" lblna2.caption = "" lblna3.caption = "" lblna4.caption = "" lblba1.caption = "" lblba2.caption = "" lblba3.caption = "" lblba4.caption = "" lblth.caption = "" lblthv.caption = "" MsgBox "Format subnet mask salah", vbcritical, "Kesalahan Subnet Mask" 'Operasi Kelas A KelasA: Call OperasiNa lblba1.caption = txtnet1.text lblba2.caption = txtnet2.text lblba3.caption = txtnet3.text lblba4.caption = txtnet4.text

9 lblth.caption = (256 - txtnet4.text) * (256 - txtnet3.text) * (256 - txtnet2.text) lblthv.caption = lblth.caption - 2 'Operasi Kelas B KelasB: Call OperasiNa lblba1.caption = txtnet1.text lblba2.caption = txtnet2.text lblba3.caption = txtnet3.text lblba4.caption = txtnet4.text lblth.caption = (256 - txtnet4.text) * (256 - txtnet3.text) lblthv.caption = lblth.caption - 2 'Operasi Kelas C KelasC: Call OperasiNa lblba1.caption = txtip1.text lblba2.caption = txtip2.text lblba3.caption = txtip3.text lblba4.caption = txtnet4.text lblth.caption = txtnet4.text lblthv.caption = lblth.caption - 2 Source Code Ping dan Tracert Private Sub cmdclear_click() If Dir("C:\*.bat") = "" Then MsgBox "Chace kosong", vbinformation, "Quick IP Ver 1.0" Kill "C:\*.bat" MsgBox "Chace sudah dibersihkan", vbinformation, "Quick IP Ver 1.0" 'Perintah Start Service Private Sub cmdstart_click() BatchStart RetVal = Shell("C:\start.bat", vbnormalfocus)

10 Sub BatchStart() fso.createtextfile ("C:\start.bat") Open "C:\start.bat" For Output As 1 Print #1, "net start messenger" 'Perintah Kembali Private Sub cmdkembali_click() MenuUtama.Show 'Perintah Kirim Pesan Private Sub cmdkrmpsn_click() If txtippsn.text = "" Then MsgBox "IP Address atau Nama Host masih kosong", vbcritical, "Kesalahan IP Address atau Nama Host" If txtpsn.text = "" Then MsgBox "Pesan masih kosong", vbcritical, "Kesalahan Pesan" BatchPesan RetVal = Shell("C:\pesan.bat", vbnormalfocus) Sub BatchPesan() fso.createtextfile ("C:\pesan.bat") Open "C:\pesan.bat" For Output As 1 Print #1, "net send " & txtippsn.text & " " & txtpsn.text 'Perintah Ping Private Sub cmdping_click() If txtippt.text = "" Then MsgBox "IP Address atau Domain masih kosong", vbcritical, "Kesalahan IP Address atau Domain"

11 BatchPing RetVal = Shell("C:\ping.bat", vbnormalfocus) Sub BatchPing() fso.createtextfile ("C:\ping.bat") Open "C:\ping.bat" For Output As 1 Print #1, "ping " & txtippt.text & " -t" Print #1, "pause" Private Sub cmdreset_click() txtippt.text = "" txtippt.setfocus 'Perintah Scan Private Sub cmdscan_click() BatchScan RetVal = Shell("C:\scan.bat", vbnormalfocus) Sub BatchScan() fso.createtextfile ("C:\scan.bat") Open "C:\scan.bat" For Output As 1 Print #1, "net view" Print #1, "pause" 'Perintah Start Service Private Sub cmdstop_click() BatchStop RetVal = Shell("C:\stop.bat", vbnormalfocus)

12 Sub BatchStop() fso.createtextfile ("C:\stop.bat") Open "C:\stop.bat" For Output As 1 Print #1, "net stop messenger" 'Perintah Tracert Private Sub cmdtracert_click() If txtippt.text = "" Then MsgBox "IP Address atau Domain masih kosong", vbcritical, "Kesalahan IP Address atau Domain" BatchTracert RetVal = Shell("C:\tracert.bat", vbnormalfocus) Sub BatchTracert() fso.createtextfile ("C:\ping.bat") Open "C:\tracert.bat" For Output As 1 Print #1, "tracert " & txtippt.text Print #1, "pause" Source Code Kirim Pesan Private Sub cmdclear_click() If Dir("C:\*.bat") = "" Then MsgBox "Chace kosong", vbinformation, "Quick IP Ver 1.0" Kill "C:\*.bat" MsgBox "Chace sudah dibersihkan", vbinformation, "Quick IP Ver 1.0" Private Sub cmdkembali_click() MenuUtama.Show

13 Private Sub cmdkrmpsn_click() If txtippsn.text = "" Then MsgBox "IP Address atau Nama Host masih kosong", vbcritical, "Kesalahan IP Address atau Nama Host" If txtpsn.text = "" Then MsgBox "Pesan masih kosong", vbcritical, "Kesalahan Pesan" BatchPesan RetVal = Shell("C:\pesan.bat", vbnormalfocus) Sub BatchPesan() fso.createtextfile ("C:\pesan.bat") Open "C:\pesan.bat" For Output As 1 Print #1, "net send " & txtippsn.text & " " & txtpsn.text Private Sub cmdreset_click() txtippsn.text = "" txtpsn.text = "" txtippsn.setfocus Private Sub cmdstart_click() BatchStart RetVal = Shell("C:\start.bat", vbnormalfocus) Sub BatchStart() fso.createtextfile ("C:\start.bat") Open "C:\start.bat" For Output As 1 Print #1, "net start messenger" Private Sub cmdstop_click()

14 BatchStop RetVal = Shell("C:\stop.bat", vbnormalfocus) Sub BatchStop() fso.createtextfile ("C:\stop.bat") Open "C:\stop.bat" For Output As 1 Print #1, "net stop messenger" Source Code About Private Sub cmdkembali_click() MenuUtama.Show Source Code Keluar Private Sub cmdkeluar_click() MsgBox "Terima Kasih Telah Membuka Program Ini.", vbinformation, "Quick IP Ver 1.0" End

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

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

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

Tutorial, Source code, Request Program Visual Basic

Tutorial, Source code, Request Program Visual Basic Tutorial, Source code, Request Program Visual Basic Oleh : Moh. A Azis Membuat Form Data Barang Program Persediaan Barang Form Data Barang digunakan untuk menyimpan data barang dan memberikan info mengenai

More information

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

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

More information

LAMPIRAN. Universitas Sumatera Utara

LAMPIRAN. Universitas Sumatera Utara 61 LAMPIRAN 61 Listing Program Form 1 ( Barang ) Dim CnSuzuya As ADODB.Connection Dim CommBar As ADODB.Command Dim rsbar As ADODB.Recordset Dim StrSql As String Dim psn As Byte Private Sub Form_Load()

More information

LAMPIRAN A LISTING PROGRAM. Universitas Sumatera Utara

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

More information

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

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

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

ISU DAN CABARAN PELAKSANAAN SISTEM PENGURUSAN KESELAMATAN MAKLUMAT (ISMS) 15 Jun 2016 Dewan Taklimat Serdang

ISU DAN CABARAN PELAKSANAAN SISTEM PENGURUSAN KESELAMATAN MAKLUMAT (ISMS) 15 Jun 2016 Dewan Taklimat Serdang ISU DAN CABARAN PELAKSANAAN SISTEM PENGURUSAN KESELAMATAN MAKLUMAT (ISMS) 15 Jun 2016 Dewan Taklimat Serdang 1 TARIKH AUDIT Audit Dalaman Sistem Pengurusan Keselamatan Maklumat (ISMS) Universiti Putra

More information

SISTEM INTERAKTIF PROFIL PUSTAKAWAN MALAYSIA Interactive Profile System (IPS) for Malaysian Librarians

SISTEM INTERAKTIF PROFIL PUSTAKAWAN MALAYSIA Interactive Profile System (IPS) for Malaysian Librarians SISTEM INTERAKTIF PROFIL PUSTAKAWAN MALAYSIA Interactive Profile System (IPS) for Malaysian Librarians Akses URL: www.ppm55.org JAWATANKUASA TEKNOLOGI MAKLUMAT PERSATUAN PUSTAKAWAN MALAYSIA LATAR BELAKANG

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

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

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

Kiss x sis ova 11 sub indo. Kiss x sis ova 11 sub indo.zip

Kiss x sis ova 11 sub indo. Kiss x sis ova 11 sub indo.zip Kiss x sis ova 11 sub indo Kiss x sis ova 11 sub indo.zip Watch Kiss x Sis episodes online in high quality with professional English subtitles on AnimeShow.tv. Kiss x Sis Episode 11. Watch English Subbed.

More information

Cara Install Windows 7 Service Pack 1 Offline

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

More information

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

MANUAL SETTING GPRS ON NOKIA 5800 E- BOOK

MANUAL SETTING GPRS ON NOKIA 5800 E- BOOK 30 April, 2018 MANUAL SETTING GPRS ON NOKIA 5800 E- BOOK Document Filetype: PDF 243.51 KB 0 MANUAL SETTING GPRS ON NOKIA 5800 E-BOOK Here is manual gprs setting for your Nokia mobile, Though it is better

More information

Lagu anak tasya full album. Lagu anak tasya full album.zip

Lagu anak tasya full album. Lagu anak tasya full album.zip Lagu anak tasya full album Lagu anak tasya full album.zip dan chord lagunya. Download MP3 Tasya - Aku Anak Indonesia Gudang lagu.>download Lagu Tasya Terbaru. Kumpulan Mp3 Tasya Terlengkap Lama dan Baru.

More information

DAFTAR ISI. KATA PENGANTAR... Error! Bookmark not defined. DAFTAR TABEL... vi DAFTAR GAMBAR... 8 DAFTAR LAMPIRAN... 17

DAFTAR ISI. KATA PENGANTAR... Error! Bookmark not defined. DAFTAR TABEL... vi DAFTAR GAMBAR... 8 DAFTAR LAMPIRAN... 17 DAFTAR ISI ABSTRAK.Error! Bookmark n KATA PENGANTAR... Error! Bookmark not defined. DAFTAR ISI... i DAFTAR TABEL... vi DAFTAR GAMBAR... 8 DAFTAR LAMPIRAN... 17 BAB I PENDAHULUAN... Error! Bookmark not

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

Persekitaran Pengaturcaraan Arduino

Persekitaran Pengaturcaraan Arduino Persekitaran Pengaturcaraan Arduino 1 2.4.5 Membuat kepada 2.4-6 Membina litar eletronik kawalan berfungsi Mikropengawal seperti Arduino ataupun Maker Uno dapat mengawal litar elektrik yang bersambung

More information

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM LAMPIRAN A : LISTING PROGRAM 1. Form Utama (Cover) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text;

More information

UNIVERSITI SAINS MALAYSIA. CPT111/CPM111 Principles of Programming [Prinsip Pengaturcaraan]

UNIVERSITI SAINS MALAYSIA. CPT111/CPM111 Principles of Programming [Prinsip Pengaturcaraan] UNIVERSITI SAINS MALAYSIA Second Semester Examination 2014/2015 Academic Session June 2015 CPT111/CPM111 Principles of Programming [Prinsip Pengaturcaraan] Duration : 2 hours [Masa : 2 jam] INSTRUCTIONS

More information

UNIVERSITI SAINS MALAYSIA. CST332 Internet Protocols. Architecture & Routing [Protokol, Seni Bina & Penghalaan Internet]

UNIVERSITI SAINS MALAYSIA. CST332 Internet Protocols. Architecture & Routing [Protokol, Seni Bina & Penghalaan Internet] UNIVERSITI SAINS MALAYSIA First Semester Examination 2016/2017 Academic Session December 2016 / January 2017 CST332 Internet Protocols. Architecture & Routing [Protokol, Seni Bina & Penghalaan Internet]

More information

[Borang Permohonan] Application Form

[Borang Permohonan] Application Form MANUAL OPERASI SISTEM PERMOHONAN KEMASUKAN EKSEKUTIF DAN PBJJ MANUAL OPERATION EXECUTIVE PROGRAMME ADMISSION APPLICATION SYSTEM (MSKPKP) [Borang Permohonan] Application Form page ISI KANDUNGAN [Contents].0

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

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

Tutorial Vray Exterior Bvunl.hol.es

Tutorial Vray Exterior Bvunl.hol.es Tutorial Vray Exterior Bvunl.hol.es [BOOK] Download Free Tutorial Vray Exterior - PDF File. This Book have some digital formats such us : paperbook, epub, kindle, ebook, and another formats. Here is The

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

Cara Update Manual App World Blackberry

Cara Update Manual App World Blackberry Cara Update Manual App World Blackberry 8520 9300 Use the BlackBerry Application Resource Monitor v3.0 to keep your sexual content, situations, or themes, BlackBerry World will not accept apps with graphic.

More information

1. Akses untuk koperasi adalah melalui https://apponline.skm.gov.my/userlogin.aspx.

1. Akses untuk koperasi adalah melalui https://apponline.skm.gov.my/userlogin.aspx. Pengguna Koperasi 1. Akses untuk koperasi adalah melalui https://apponline.skm.gov.my/userlogin.aspx. Belum berdaftar 2. Sila masuk ID Pengguna dan Kata Laluan dengan betul. Sekiranya pengguna masih belum

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

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

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

Manual Update Eset Nod32 Antivirus 6 Offline Activate

Manual Update Eset Nod32 Antivirus 6 Offline Activate Manual Update Eset Nod32 Antivirus 6 Offline Activate Knowledgebase Activate Software Lost License Documentation Forum Support click Next to configure), or manually check for updates often (click Update

More information

DAFTAR ISI. BAB II... Error! Bookmark not defined.

DAFTAR ISI. BAB II... Error! Bookmark not defined. DAFTAR ISI KATA PENGANTAR... Error! Bookmark not ABSTRAK... Error! Bookmark not ABSTRACT... Error! Bookmark not DAFTAR ISI... v DAFTAR GAMBAR... viii DAFTAR TABEL... x BAB I... Error! Bookmark not 1.1

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

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

Information Security Management System ISO/IEC 27001:2013

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

More information

Avg Antivirus Manual For Windows 7 32 Bit Full

Avg Antivirus Manual For Windows 7 32 Bit Full Avg Antivirus Manual For Windows 7 32 Bit Full Version Basic antivirus and antispyware protection for Windows available to download for free thanks to AVG Anti-Virus. Limited features, no support, for

More information

LANGKAH INSTALASI ireport Jasper,XAMMP Add On Tomcat & Oracle 2011

LANGKAH INSTALASI ireport Jasper,XAMMP Add On Tomcat & Oracle 2011 LANGKAH INSTALASI ireport DESIGNER,JASPER REPORT, XAMPP PHP ADD ON TOMCAT YANG DISOKONG DENGAN CONNECTION DENGAN ORACLE DB Pengenalan (SAH UNTUK PLATFORM VERSION WINDOWS SAHAJA) Persoalan biasa di fikiran

More information

ABSTRAK... Error! Bookmark not defined. DAFTAR ISI... v. DAFTAR GAMBAR... viii. DAFTAR TABEL... xi. BAB I... Error! Bookmark not defined.

ABSTRAK... Error! Bookmark not defined. DAFTAR ISI... v. DAFTAR GAMBAR... viii. DAFTAR TABEL... xi. BAB I... Error! Bookmark not defined. DAFTAR ISI ABSTRAK... Error! Bookmark not DAFTAR ISI... v DAFTAR GAMBAR... viii DAFTAR TABEL... xi BAB I... Error! Bookmark not PENDAHULUAN... Error! Bookmark not 1.1 Latar Belakang... Error! Bookmark

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

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

ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN

ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN PENILAIAN & KULIAH Kuliah Tugasan Ujian Teori Ujian Amali Isi kandungan 4.1 Menerangkan alamat IP serta kepentingannya 4.2 Menerangkan

More information

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS)

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: SUPPLY CHAIN MANAGEMENT (SCM) BAHAGIAN ICT PROCESS

More information

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

VLSM and CIDR. Routing Protocols and Concepts Chapter 6. Version Cisco Systems, Inc. All rights reserved. Cisco Public 1

VLSM and CIDR. Routing Protocols and Concepts Chapter 6. Version Cisco Systems, Inc. All rights reserved. Cisco Public 1 VLSM and CIDR Routing Protocols and Concepts Chapter 6 Version 4.0 1 Objectives Compare and contrast classful and classless IP addressing. Review VLSM and explain the benefits of classless IP addressing.

More information

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

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

More information

EPUB - TUTORIAL BELAJAR SQL 2005 DOWNLOAD

EPUB - TUTORIAL BELAJAR SQL 2005 DOWNLOAD 15 April, 2018 EPUB - TUTORIAL BELAJAR SQL 2005 DOWNLOAD Document Filetype: PDF 180.79 KB 0 EPUB - TUTORIAL BELAJAR SQL 2005 DOWNLOAD Belajar SQL tutorial dari cara membuat database mengelola data table

More information

14 December, Mikrotik V2 9 DAILY BOOKS # Kindle # 3TB3OLQRB7. 14 December, 2017 E-BOOK MIKROTIK V2 9. Document Filetype: PDF 259.

14 December, Mikrotik V2 9 DAILY BOOKS # Kindle # 3TB3OLQRB7. 14 December, 2017 E-BOOK MIKROTIK V2 9. Document Filetype: PDF 259. 14 December, 2017 E-BOOK MIKROTIK V2 9 Document Filetype: PDF 259.11 KB 0 E-BOOK MIKROTIK V2 9 Load balancing is implemented as equal cost multipath routing. Mikrotik also uses 24v 0.8A (19.2 watt) and

More information

Universitas Sumatera Utara

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

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

Addressing the Network IPv4

Addressing the Network IPv4 Addressing the Network IPv4 Network Fundamentals Chapter 6 1 IP Addressing Structure Describe the dotted decimal structure of a binary IP address and label its parts 2 IP Addressing Structure Describe

More information

INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan.

INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan. SECTION B: 55 MARKS BAHAGIAN B: 55 MARKAH INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan. QUESTION 1

More information

Manual Update Eset Nod32 Antivirus 5 Username And Password 2013

Manual Update Eset Nod32 Antivirus 5 Username And Password 2013 Manual Update Eset Nod32 Antivirus 5 Username And Password 2013 A newer version of ESET Smart Security and ESET NOD32 Antivirus has been released. We highly recommend that you upgrade to the latest version:

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

Laporan Aktiviti Pusat Internet 1 Malaysia Kg. Kuala Sungga

Laporan Aktiviti Pusat Internet 1 Malaysia Kg. Kuala Sungga Laporan Aktiviti Pusat Internet 1 Malaysia Kg. Kuala Sungga Name of event Nama acara / program Date & Time Tarikh & Masa Latihan Keusahawanan Microsoft PowerPoint (Slide Pembentangan) 3 Jun 2017 12.00

More information

KUISIONER. 2. Apakah teknik Using Pictures tersebut sesuai dengan tingkat pemahaman para siswa? Ya, sebutkan alasan Anda:

KUISIONER. 2. Apakah teknik Using Pictures tersebut sesuai dengan tingkat pemahaman para siswa? Ya, sebutkan alasan Anda: KUISIONER USING PICTURES Dari 13 staf pengajar yang telah mengisi kuisioner, 7 13 staf pengajar tersebut mengajarkan 28 topik berikut dengan teknik Using Pictures : No. Topics Teachers Percentages 1. Family

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

Panduan Pengguna Autodesk Education Community

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

More information

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

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

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

More information

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

[PDF] PHP MYSQL SCHOOL MANAGEMENT SYSTEM

[PDF] PHP MYSQL SCHOOL MANAGEMENT SYSTEM 26 December, 2017 [PDF] PHP MYSQL SCHOOL MANAGEMENT SYSTEM Document Filetype: PDF 168.42 KB 0 [PDF] PHP MYSQL SCHOOL MANAGEMENT SYSTEM A Library Management System with PHP and MySQL ###Purpose of the Project

More information

DOKUMEN TIDAK TERKAWAL

DOKUMEN TIDAK TERKAWAL Halaman: 1/12 Tujuan : Arahan kerja ini adalah untuk menerangkan tatacara pendaftaran ID Pengguna di dalam Sistem Kewangan SAGA (Standard Accounting for Government Agencies) Universiti Putra Malaysia bagi

More information

HARDWARE/SOFTWARE SYSTEM-ON-CHIP CO-VERIFICATION PLATFORM BASED ON LOGIC-BASED ENVIRONMENT FOR APPLICATION PROGRAMMING INTERFACING TEO HONG YAP

HARDWARE/SOFTWARE SYSTEM-ON-CHIP CO-VERIFICATION PLATFORM BASED ON LOGIC-BASED ENVIRONMENT FOR APPLICATION PROGRAMMING INTERFACING TEO HONG YAP HARDWARE/SOFTWARE SYSTEM-ON-CHIP CO-VERIFICATION PLATFORM BASED ON LOGIC-BASED ENVIRONMENT FOR APPLICATION PROGRAMMING INTERFACING TEO HONG YAP A project report submitted in partial fulfilment of the requirements

More information

Packet Tracer - Subnet Scenario 2 Topology

Packet Tracer - Subnet Scenario 2 Topology Topology 2016 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 5 Addressing Table Device Interface IP Address Subnet Mask Default Gateway G0/0 R1 S0/0/0 G0/0 S0/0/0

More information

Manual Update Nod32 Antivirus 5 Username Password Latest 2013

Manual Update Nod32 Antivirus 5 Username Password Latest 2013 Manual Update Nod32 Antivirus 5 Username Password Latest 2013 Get Free Keys For ESET Products ESET NOD32 Antivirus, ESET Smart Security, ESETUsername: EAV-0126354505 Password: 9nu4b23dnc Expiry Date:.

More information

ENHANCEMENT OF STEMMING PROCESS FOR MALAY ILLICIT WEB CONTENT NOOR FATIHAH BINTI MAZLAM UNIVERSITI TEKNOLOGI MALAYSIA

ENHANCEMENT OF STEMMING PROCESS FOR MALAY ILLICIT WEB CONTENT NOOR FATIHAH BINTI MAZLAM UNIVERSITI TEKNOLOGI MALAYSIA ENHANCEMENT OF STEMMING PROCESS FOR MALAY ILLICIT WEB CONTENT NOOR FATIHAH BINTI MAZLAM UNIVERSITI TEKNOLOGI MALAYSIA ENHANCEMENT OF STEMMING PROCESS FOR MALAY ILLICIT WEB CONTENT NOOR FATIHAH BINTI MAZLAM

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 1 TATA CARA PENGGUNAAN SOFTWARE ALGORITMA GENETIKA

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

More information

EPUB - BROTHER HL 3040CN TONER

EPUB - BROTHER HL 3040CN TONER 08 March, 2018 EPUB - BROTHER HL 3040CN TONER Document Filetype: PDF 199.22 KB 0 EPUB - BROTHER HL 3040CN TONER The Brother HL-3040CN colour laser printer is cheap and produces impressive results with

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

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

Fishing guide door county wi Get file - Fishing guide door county wi

Fishing guide door county wi Get file - Fishing guide door county wi Fishing guide door county wi. Free Pdf Download Drinking to the point of drunkenness over a long period of time can cause severe, irreversible damages, including the following Not all Samsung phones can

More information

DAFTAR ISI. ABSTRAK... Error! Bookmark not defined. ABSTRACT... Error! Bookmark not defined. KATA PENGANTAR... Error! Bookmark not defined.

DAFTAR ISI. ABSTRAK... Error! Bookmark not defined. ABSTRACT... Error! Bookmark not defined. KATA PENGANTAR... Error! Bookmark not defined. DAFTAR ISI ABSTRAK... Error! Bookmark not ABSTRACT... Error! Bookmark not KATA PENGANTAR... Error! Bookmark not DAFTAR ISI... 64 DAFTAR TABEL... 67 DAFTAR GAMBAR... 68 BAB I PENDAHULUAN... Error! Bookmark

More information

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS)

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: SUPPLY CHAIN MANAGEMENT (SCM) BAHAGIAN ICT PROCESS

More information

ABSTRAK. Kata Kunci : Pajak penghasilan, Aplikasi, Java. Universitas Kristen Maranatha

ABSTRAK. Kata Kunci : Pajak penghasilan, Aplikasi, Java. Universitas Kristen Maranatha ABSTRAK Setiap orang yang hidup di manapun tidak akan pernah terlepas dari pajak. Pajak merupakan salah satu pemasukan bagi negara. Bagi setiap orang yang sudah memiliki penghasilan dan berumur diatas

More information

2/25/2016. Minimal Spanning Tree Problem. Minimal Spanning Tree Problem. Example: Minimal Spanning Tree. Example: Minimal Spanning Tree

2/25/2016. Minimal Spanning Tree Problem. Minimal Spanning Tree Problem. Example: Minimal Spanning Tree. Example: Minimal Spanning Tree // OPERATIONAL RESEARCH II Agustina Eunike, ST., MT., MBA. Industrial Engineering University of Brawijaya MINIMAL SPANNING TREE PROBLEM Minimal Spanning Tree Problem A tree is a set of connected arcs that

More information

CHAPTER 5 IMPLEMENTATION AND TESTING

CHAPTER 5 IMPLEMENTATION AND TESTING CHAPTER 5 IMPLEMENTATION AND TESTING 5.1 Implementation Project ini dapat memvisualisasikan data pada data structure hash table menjadi grafis 2D secara dinamis dengan inputan yang ditentukan oleh user.

More information

YAYASAN KUOK BERHAD Arahan Permohonan

YAYASAN KUOK BERHAD Arahan Permohonan YAYASAN KUOK BERHAD Arahan Permohonan (Klik sini untuk Application Instructions dalam Bahasa Inggeris) 1. Pendaftaran Akaun (Pemohon Baru) 2. Log Masuk 3. Permohonan Atas Talian & Penghantaran 4. Penghantaran

More information

Aisyatul Karima Jarkom Lanjut - Week 3 LOGO.

Aisyatul Karima Jarkom Lanjut - Week 3 LOGO. Network Analysis Tool Aisyatul Karima - 2012 Jarkom Lanjut - Week 3 www.themegallery.com Standar Kompetensi Pada akhir semester, mahasiswa mampu merancang, mengimplementasikan dan menganalisa sistem jaringan

More information

Answers for Additional Exercises

Answers for Additional Exercises Appendix C Answers for Additional Exercises Chapter 1 Various answers are possible. Drawings similar to Figure 1.3 with multiple computers are possible. Various answers are possible. Drawings similar to

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

Manual Update Nod32 Antivirus 4 Username And

Manual Update Nod32 Antivirus 4 Username And Manual Update Nod32 Antivirus 4 Username And Password Latest 2013 Get Free Keys For ESET Products ESET NOD32 Antivirus, ESET Smart Security, ESETUsername: EAV-0126354505 Password: 9nu4b23dnc Expiry Date:

More information

Anime gintama sub indo 480p. Anime gintama sub indo 480p.zip

Anime gintama sub indo 480p. Anime gintama sub indo 480p.zip Anime gintama sub indo 480p Anime gintama sub indo 480p.zip Medabot Dub Japan Sub Indo nggak? rata rata 480p :3 pas lah buat nonton.download download anime movie gintama sub indo nonton download anime

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

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

SRP-E300/302 THERMAL RECEIPT PRINTER

SRP-E300/302 THERMAL RECEIPT PRINTER Network Connection Manual SRP-E300/302 THERMAL RECEIPT PRINTER Ver. 1.00 http://www.bixolon.com Table of Contents 1. Manual Information... 3 2. Specifications... 3 3. How to Connect... 4 4. Ethernet Test

More information

APPENDIX B : TRAINING MATERIAL

APPENDIX B : TRAINING MATERIAL APPENDIX B : TRAINING MATERIAL Apa Yang Anda Boleh Buat Dengan Komputer Peribadi (PC)? Latar Belakang Dewasa ini, penggunaan teknologi maklumat menjadi semakin penting. Ketidakmampuan menggunakan komputer

More information

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

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

More information

ACCESSIBILITY CONVENIENCE ENJOYMENT SERVICE SPECIAL ISSUE BISHAN-TOA PAYOH GRC 5-YEAR MASTER PLAN

ACCESSIBILITY CONVENIENCE ENJOYMENT SERVICE SPECIAL ISSUE BISHAN-TOA PAYOH GRC 5-YEAR MASTER PLAN SPECIAL ISSUE January - April 2011 Bishan-Toa Payoh Town Council Newsletter MICA(P)095/02/2011 BISHAN-TOA PAYOH GRC 5-YEAR MASTER PLAN ACCESSIBILITY CONVENIENCE ENJOYMENT SERVICE BISHAN-TOA PAYOH GRC 5-YEAR

More information

Toshiba Manual Laptop Satellite C800 Windows 8

Toshiba Manual Laptop Satellite C800 Windows 8 Toshiba Manual Laptop Satellite C800 Windows 8 Toshiba Satellite C800 Notebook Windows 7 Driver, Utility, Manual For Windows 8 Toshiba Satellite C50-A Drivers For Windows 8 Category Company Model. Link

More information

2. In MikroTik RouterOS, Layer-3 communication between 2 hosts can be achieved by using an address subnet of: a. /31 b. /29 c. /32 d.

2. In MikroTik RouterOS, Layer-3 communication between 2 hosts can be achieved by using an address subnet of: a. /31 b. /29 c. /32 d. 1. A network ready device is directly connected to a MikroTik RouterBOARD 750 with a correct U.T.P. RJ45 functioning cable. The device is configured with an IPv4 address of 192.168.100.70 using a subnet

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

Siti Subandiyah. Dear Pak Mun, Thanks you. Dear Mba Lia, Done ya Mba. Approved

Siti Subandiyah. Dear Pak Mun, Thanks you. Dear Mba Lia, Done ya Mba. Approved Siti Subandiyah From: Sent: To: Cc: Subject: Siti Subandiyah [siti.subandiyah@energy-logistics.co.id] Thursday, February 01, 2018 5:47 PM 'Munawar Anwar'; 'Natalia Tuwaidan' 'Rizki Anindya'; 'Tabah Hatni';

More information

Cara Upgrade Manual App World Bb Gemini 8520

Cara Upgrade Manual App World Bb Gemini 8520 Cara Upgrade Manual App World Bb Gemini 8520 UPGRADE YOUR BLACKBERRY 10 OS TODAY. Discover Instructions This app works perfectly, all the negative reviews are misleading really. App will work for about

More information