LAMPIRAN. Universitas Sumatera Utara

Size: px
Start display at page:

Download "LAMPIRAN. Universitas Sumatera Utara"

Transcription

1 61 LAMPIRAN

2 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() Set CnSuzuya = New ADODB.Connection Set CommBar = New ADODB.Command Set rsbar = New ADODB.Recordset With CnSuzuya.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\superm.mdb" & ";Persist Security Info=False".Open End With With CommBar.ActiveConnection = CnSuzuya.CommandText = "select * from Barang".CommandType = adcmdtext

3 62 End With With rsbar.cursorlocation = aduseclient.cursortype = adopenstatic.locktype = adlockoptimistic.open CommBar End With Text1.MaxLength = 8 Text2.MaxLength = 30 Text3.MaxLength = 15 Private Sub cmdedit_click() If Not Len(Trim(Text1.Text)) = 0 Then rsbar.filter = "KdBar = '" & Trim(Text1.Text) & "'" If rsbar.recordcount > 0 Then psn = MsgBox("Data Barang Akan Disimpan..?", vbinformation + vbyesno, "PESAN") If psn = vbyes Then rsbar(0) = Text1.Text rsbar(1) = Text2.Text

4 63 rsbar(2) = Text3.Text rsbar(3) = Text4.Text rsbar(4) = Text5.Text rsbar(5) = Text5.Text rsbar.update psn = MsgBox("Data Barang Belum Dientrykan ", vbexclamation) Call blankform 'kosongkan form MsgBox "Masukkan Kode Barang Yang Akan Diedit Ok..",, "Pesan" Text1.SetFocus Private Sub Cmddelete_Click() If Not Len(Trim(Text1.Text)) = 0 Then rsbar.filter = "KdBar = '" & Trim(Text1.Text) & "'" If rsbar.recordcount > 0 Then psn = MsgBox("Data Barang Akan Dihapus..?", vbinformation + vbyesno, "PESAN")

5 64 If psn = vbyes Then rsbar.delete rsbar.movenext psn = MsgBox("Data Barang Belum Dientrykan ", vbinformation) psn = MsgBox("Masukkan Kode Barang Yang Akan Dihapus Ok.. ", vbinformation, "Pesan") Text1.SetFocus Call blankform Private Sub blankform() Text2 = "" Text3.Text = "" Text4 = "" Private Sub cmdexit_click() psn = MsgBox(" Yakin Akan Keluar..?", vbcritical + vbyesno, "barang") If psn = vbyes Then

6 65 Unload Me Private Sub cmdsave_click() If Not Len(Trim(Text1.Text)) = 0 Then 'rsbar.filter = "KdBar = '" & Trim(Text1.Text) & "'" ' If rsbar.recordcount > 0 Then ' psn = MsgBox("Data Barang Sudah Pernah di Entrykan..", vbinformation + vbokonly, "PESAN") ' psn = MsgBox("Data Barang Akan Disimpan..?", vbinformation + vbyesno, "PESAN") If psn = vbyes Then rsbar.addnew rsbar(0) = Text1.Text rsbar(1) = Text2.Text rsbar(2) = Text3.Text rsbar(3) = Text4.Text rsbar(4) = Text5.Text rsbar(5) = Text5.Text rsbar.update 'simpan

7 66 If Err.Number <> 0 Then If rsbar.editmode = adeditadd Then MsgBox "Gagal Tambah Record", vbcritical & Err.Description MsgBox "Gagal Ganti Record", vbcritical & Err.Description rsbar.cancelupdate Call blankform 'kosongkan form ' MsgBox "Masukkan Data Terlebih dahulu...ya? ",, "Pesan" Text1.SetFocus Private Sub Command1_Click() blankform Private Sub Text1_KeyPress(KeyAscii As Integer) KeyAscii = Asc(UCase(Chr(KeyAscii))) If KeyAscii = 13 Then

8 67 rsbar.filter = "KdBar = '" & Trim(Text1.Text) & "'" If rsbar.recordcount > 0 Then Text2.Text = rsbar.fields(1) Text3.Text = rsbar.fields(2) Text4.Text = rsbar.fields(3) Text5.Text = rsbar.fields(4) psn = MsgBox("Data Barang Sudah Dientrykan ", vbexclamation) Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then SendKeys "{tab}" If KeyAscii = 27 Then Unload Me

9 68 Form 2 ( Pembelian ) Dim CnSuzuya As ADODB.Connection Dim CommBar As ADODB.Command Dim rsbar As ADODB.Recordset Dim CommBeli As ADODB.Command Dim rsbeli As ADODB.Recordset Dim psn As Byte Private Sub Form_Load() Set CnSuzuya = New ADODB.Connection Set CommBar = New ADODB.Command Set rsbar = New ADODB.Recordset Set CommBeli = New ADODB.Command Set rsbeli = New ADODB.Recordset With CnSuzuya.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\superm.mdb" & ";Persist Security Info=False".Open End With

10 69 With CommBar.ActiveConnection = CnSuzuya.CommandText = "select * from Barang".CommandType = adcmdtext End With With rsbar.cursorlocation = aduseclient.cursortype = adopenstatic.locktype = adlockoptimistic.open CommBar End With With CommBeli.ActiveConnection = CnSuzuya.CommandText = "select * from Pembelian".CommandType = adcmdtext End With With rsbeli.cursorlocation = aduseclient.cursortype = adopenstatic.locktype = adlockoptimistic.open CommBeli End With

11 70 Frame2.Visible = False Text1.MaxLength = 8 Private Sub Command1_Click() If Text4.Text = "" Then psn = MsgBox("Jumlah Barang Yang di Beli Belum Dientrykan", vbexclamation) rsbeli.filter = "nofak = '" & Trim(Text1.Text) & "' and KdBar = '" & Trim(Combo1.Text) & "'" If rsbeli.recordcount > 0 Then psn = MsgBox("Data Barang Sudah Ada Dalam Pesanan", vbexclamation, "PESAN") psn = MsgBox("Data Barang dibeli Akan Disimpan..?", vbinformation + vbyesno, "PersediaanAN") If psn = vbyes Then rsbeli.addnew 'sediakan tempat di database untuk memasukkan data rsbeli(0) = DTPicker1.Value

12 71 rsbeli(3) = Val(Text4.Text) rsbeli(2) = Combo1.Text rsbeli(1) = Text1.Text 'isi kode Persediaan dari text1 rsbeli.update 'simpan List1.AddItem Label7 a = 0 rsbar.filter = "KdBar = '" & Trim(Combo1.Text) & "'" If rsbar.recordcount > 0 Then c = rsbar(5) a = Text4.Text + c 'rsbar.edit rsbar.fields(5) = a rsbar.update psn = MsgBox(" Apakah Masih Ada Pesanan Lagi..?", vbexclamation + vbyesno, "PESAN") If psn = vbyes Then Combo1.SetFocus List1.Clear

13 72 Private Sub Command2_Click() If Str(Text4.Text) = "" Then psn = MsgBox("Jumlah Barang Masuk Belum Dientrykan", vbexclamation) rsbeli.filter = "nofak = '" & Trim(Text1.Text) & "' and KdBar = '" & Trim(Combo1.Text) & "'" If rsbeli.recordcount > 0 Then psn = MsgBox("Data Barang Akan Disimpan..?", vbinformation + vbyesno, "PESAN") If psn = vbyes Then a = 0 ' rsbar.filter = "select * from barang" rsbar.filter = "KdBar = '" & Trim(Combo1.Text) & "'" If rsbar.recordcount > 0 Then

14 73 'c = rsbar(5) a = rsbar(5) - Text4 'rsbar.edit rsbar.fields(5) = a rsbar.update 'rsbeli.edit rsbeli.fields(0) = DTPicker1.Value If Combo3.Text = "" Then rsbeli(2) = Combo1.Text rsbeli(2) = Combo3.Text rsbeli(3) = Text4.Text rsbeli.update a = 0 rsbar.filter = "KdBar = '" & Trim(Combo3.Text) & "'" If rsbar.recordcount > 0 Then 'c = rsbar(5) a = Text4 + rsbar(5)

15 74 'rsbar.edit rsbar.fields(5) = a rsbar.update psn = MsgBox("Data Barang Belum Dientrykan", vbexclamation) Tkoraktif Private Sub Command3_Click() rsbeli.filter = "nofak = '" & Trim(Text1.Text) & "' and KdBar = '" & Trim(Combo1.Text) & "'" If rsbeli.recordcount > 0 Then psn = MsgBox("Data Barang Akan Dihapus..?", vbexclamation + vbyesno, "PersediaanAN") If psn = vbyes Then rsbar.filter = "KdBar = '" & Trim(Combo1.Text) & "'" If rsbar.recordcount > 0 Then

16 75 c = rsbar(5) a = c - Text4 'rsbar.edit rsbar.fields(5) = a rsbar.update rsbeli.delete rsbeli.movenext psn = MsgBox("Data Barang Belum Dientrykan", vbexclamation) Private Sub Command4_Click() blankform Private Sub Command5_Click() psn = MsgBox(" Yakin Akan Keluar..?", vbcritical + vbyesno, "barang") If psn = vbyes Then Unload Me

17 76 Private Sub Form_Activate() Barang Private Sub blankform() Combo1.Text = "" Combo2.Text = "" Text4.Text = "" Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then SendKeys "{tab}" If KeyAscii = 27 Then Unload Me Private Sub Text1_KeyPress(KeyAscii As Integer) Dim Persediaan As String KeyAscii = Asc(UCase(Chr(KeyAscii))) rsbeli.filter = "nofak = '" & Trim(Text1.Text) & "'" If rsbeli.recordcount > 0 Then

18 77 DTPicker1.Value = rsbeli(0) Command1.Enabled = False psn = MsgBox("Data Sudah Ada", vbexclamation) psn = MsgBox("Data Akan Dikoreksi..?", vbinformation + vbyesno, "Persediaanan") If psn = vbyes Then koraktif Combo1.SetFocus Command1.Enabled = True Exit Sub Private Sub Combo1_Click() rsbar.filter = "KdBar = '" & Trim(Combo1.Text) & "'" If rsbar.recordcount > 0 Then Label7.Caption = rsbar(1) Label8.Caption = rsbar(3)

19 78 rsbeli.filter = "nofak = '" & Trim(Text1.Text) & "' and KdBar = '" & Trim(Combo1.Text) & "'" If rsbeli.recordcount > 0 Then psn = MsgBox("Barang Sudah Ada", vbexclamation, "PESAN") Text4.Text = rsbeli.fields(3) psn = MsgBox("Barang Belum Ada", vbexclamation, "PESAN") Private Sub Combo3_Click() rsbar.filter = "KdBar = '" & Trim(Combo3.Text) & "'" If rsbar.recordcount > 0 Then Text15.Text = rsbar(1) Label9.Caption = rsbar(3) rsbeli.filter = "nofak = '" & Trim(Text1.Text) & "' and KdBar = '" & Trim(Combo3.Text) & "'" If rsbeli.recordcount > 0 Then psn = MsgBox("Barang Sudah Ada", vbexclamation, "PESAN")

20 79 psn = MsgBox("Barang Belum Ada", vbexclamation, "PESAN") Private Sub Barang() Dim a As Integer rsbar.movefirst Do While Not rsbar.eof = True Combo1.List(a) = rsbar.fields(0) Combo3.List(a) = rsbar.fields(0) a = a + 1 rsbar.movenext Loop Text1.SetFocus Private Sub koraktif() Frame2.Visible = True Combo3.Enabled = True Text5.Enabled = True 'Combo3.SetFocus

21 80 Private Sub Tkoraktif() Frame2.Visible = False Combo3.Enabled = False 'Text5.Enabled = False Sub blankor() Combo3.Text = "" Text15.Text = "" Tkoraktif

22 81 Form 3 ( Penjualan ) Dim CnSuzuya As ADODB.Connection Dim CommBar As ADODB.Command Dim rsbar As ADODB.Recordset Dim CommJual As ADODB.Command Dim rsjual As ADODB.Recordset Dim psn As Byte Private Sub Form_Load() Set CnSuzuya = New ADODB.Connection Set CommBar = New ADODB.Command Set rsbar = New ADODB.Recordset Set CommJual = New ADODB.Command Set rsjual = New ADODB.Recordset With CnSuzuya.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\superm.mdb" & ";Persist Security Info=False".Open End With With CommBar

23 82.ActiveConnection = CnSuzuya.CommandText = "select * from Barang".CommandType = adcmdtext End With With rsbar.cursorlocation = aduseclient.cursortype = adopenstatic.locktype = adlockoptimistic.open CommBar End With With CommJual.ActiveConnection = CnSuzuya.CommandText = "select * from Penjualan".CommandType = adcmdtext End With With rsjual.cursorlocation = aduseclient.cursortype = adopenstatic.locktype = adlockoptimistic.open CommJual End With Frame2.Visible = False

24 83 Text1.MaxLength = 8 Private Sub blankform() Combo1.Text = "" Combo2.Text = "" Combo4.Text = "" Text4.Text = "" Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then SendKeys "{tab}" If KeyAscii = 27 Then Unload Me Private Sub Text1_KeyPress(KeyAscii As Integer) Dim Persediaan As String KeyAscii = Asc(UCase(Chr(KeyAscii))) If KeyAscii = 13 Then rsjual.filter = "nofak = '" & Trim(Text1.Text) & "'" If rsjual.recordcount > 0 Then

25 84 DTPicker1.Value = rsjual(0) Command1.Enabled = False psn = MsgBox("Data Sudah Ada", vbexclamation) psn = MsgBox("Data Akan Dikoreksi..?", vbinformation + vbyesno, "Persediaanan") If psn = vbyes Then koraktif Combo1.SetFocus Command1.Enabled = True Exit Sub Private Sub Combo1_Click() rsbar.filter = "KdBar = '" & Trim(Combo1.Text) & "'" If rsbar.recordcount > 0 Then Label7.Caption = rsbar(1) Label8.Caption = rsbar(3)

26 85 rsjual.filter = "nofak = '" & Trim(Text1.Text) & "' and KdBar = '" & Trim(Combo1.Text) & "'" If rsjual.recordcount > 0 Then psn = MsgBox("Barang Sudah Ada", vbexclamation, "PESAN") Text4.Text = rsjual(3) psn = MsgBox("Barang Belum Ada", vbexclamation, "PESAN") Private Sub Combo3_Click() rsbar.filter = "KdBar = '" & Trim(Combo1.Text) & "'" If rsbar.recordcount > 0 Then Text15.Text = rsbar(1) Label9.Caption = rsbar(3) rsjual.filter = "nofak = '" & Trim(Text1.Text) & "' and KdBar = '" & Trim(Combo3.Text) & "'" If rsjual.recordcount > 0 Then psn = MsgBox("Barang Sudah Ada", vbexclamation, "PESAN")

27 86 psn = MsgBox("Barang Belum Ada", vbexclamation, "PESAN") Private Sub Command1_Click() If Text4.Text = "" Then psn = MsgBox("Data Jumlah Barang Keluar Belum Dientrykan", vbexclamation) rsjual.filter = "nofak = '" & Trim(Text1.Text) & "' and KdBar = '" & Trim(Combo1.Text) & "'" If rsjual.recordcount > 0 Then psn = MsgBox("Data Barang Sudah Ada Dalam Pesanan", vbexclamation, "PESAN") psn = MsgBox("Data Penjualan Barang Akan Disimpan..?", vbinformation + vbyesno, "barangan") If psn = vbyes Then rsjual.addnew rsjual(0) = DTPicker1.Value rsjual(1) = Text1.Text

28 87 rsjual(2) = Combo1.Text rsjual(3) = Text4.Text rsjual.update List1.AddItem Label7 a = 0 rsbar.filter = "KdBar = '" & Trim(Combo1.Text) & "'" If rsbar.recordcount > 0 Then c = rsbar(5) a = c - Text4 'rsbar.edit rsbar.fields(5) = a rsbar.update psn = MsgBox(" Apakah Masih Ada Pesanan Lagi..?", vbexclamation + vbyesno, "PESAN") If psn = vbyes Then Combo1.SetFocus List1.Clear

29 88 Private Sub Command2_Click() If Text4.Text = "" Then psn = MsgBox("Data Jumlah Barang Keluar Belum Dientrykan", vbexclamation) rsjual.filter = "nofak = '" & Trim(Text1.Text) & "' and KdBar = '" & Trim(Combo1.Text) & "'" If rsjual.recordcount > 0 Then psn = MsgBox("Data Barang Akan Disimpan..?", vbinformation + vbyesno, "PESAN") If psn = vbyes Then a = 0 rsbar.filter = "KdBar = '" & Trim(Combo1.Text) & "'" If rsbar.recordcount > 0 Then c = rsbar(5) a = c + Text4 'rsbar.edit rsbar.fields(5) = a rsbar.update

30 89 'rsjual.edit rsjual(0) = DTPicker1.Value rsjual(1) = Text1.Text If Combo3.Text = "" Then rsjual(2) = Combo1.Text rsjual(2) = Combo3.Text rsjual(3) = Text4.Text a = 0 rsbar.filter = "KdBar = '" & Trim(Combo3.Text) & "'" If rsbar.recordcount > 0 Then c = rsbar(5) a = c - Text4 'rsbar.edit rsbar.fields(5) = a rsbar.update

31 90 'blank blankor Private Sub Command3_Click() rsjual.filter = "nofak = '" & Trim(Text1.Text) & "' and KdBar = '" & Trim(Combo1.Text) & "'" If rsjual.recordcount > 0 Then psn = MsgBox("Data Barang Keluar Akan Dihapus..?", vbexclamation + vbyesno, "PESAN") If psn = vbyes Then rsbar.filter = "KdBar = '" & Trim(Combo1.Text) & "'" If rsbar.recordcount > 0 Then c = rsbar(5) a = c + Text4 'rsbar.edit rsbar.fields(5) = a rsbar.update rsjual.delete rsjual.movenext

32 91 psn = MsgBox("Data Barang Belum Dientrykan", vbexclamation) Exit Sub Private Sub Barang() Dim a As Integer rsbar.movefirst Do While Not rsbar.eof = True Combo1.List(a) = rsbar.fields(0) Combo3.List(a) = rsbar.fields(0) a = a + 1 rsbar.movenext Loop Text1.SetFocus Private Sub koraktif() Frame2.Visible = True Combo3.Enabled = True Text5.Enabled = True 'Combo3.SetFocus

33 92 Private Sub Tkoraktif() Frame2.Visible = False Combo3.Enabled = False 'Text5.Enabled = False Sub blankor() Combo3.Text = "" Text15.Text = "" Tkoraktif Private Sub Command4_Click() blankform Private Sub Command5_Click() psn = MsgBox(" Yakin Akan Keluar..?", vbcritical + vbyesno, "barang") If psn = vbyes Then Unload Me

34 93 Private Sub Form_Activate() Barang

35 94 Form 4 ( labbelhar.frm) Private Sub Command1_Click() cbln = Month(Text1.Text) cthn = Year(Text1.Text) Crys1.ReplaceSelectionFormula "month({pembelian.tglbeli})= " & cbln & "And year({pembelian.tglbeli})= " & cthn Crys1.Formulas(0) = "kepada = '" & Text2.Text & "'" Crys1.WindowTitle = " LAPORAN PEMBELIAN BARANG BULANAN" Crys1.WindowState = crptmaximized Crys1.Action = 1 Private Sub Command2_Click() psn = MsgBox(" Yakin Akan Keluar..?", vbcritical + vbyesno, "PESAN") If psn = vbyes Then Unload Me Private Sub Form_Load() Crys1.ReportFileName = (App.Path & "\lapbelhar.rpt")

36 95 Crys1.DataFiles(0) = (App.Path & "\Suzuya.mdb") Crys1.WindowState = crptmaximized Text1.Text = Format(Date, "mm/yyyy")

37 96 Form 5 ( lapjulhar.frm ) Private Sub Command1_Click() chari = Day(Text1.Text) cbln = Month(Text1.Text) cthn = Year(Text1.Text) Crys1.ReplaceSelectionFormula "day({penjualan.tgljual})= " & chari & " And month({penjualan.tgljual})= " & cbln & "And year({penjualan.tgljual})= " & cthn Crys1.Formulas(0) = "kepada = '" & Text2.Text & "'" Crys1.WindowTitle = " LAPORAN PENJUALAN BARANG HARIAN" Crys1.WindowState = crptmaximized Crys1.Action = 1 Private Sub Command2_Click() psn = MsgBox(" Yakin Akan Keluar..?", vbcritical + vbyesno, "PESAN") If psn = vbyes Then Unload Me Private Sub Form_Load()

38 97 Crys1.ReportFileName = (App.Path & "\lapjualhar.rpt") Crys1.DataFiles(0) = (App.Path & "\Suzuya.mdb") Crys1.WindowState = crptmaximized Text1.Text = Format(Date, "dd/mm/yyyy")

39 98 Form 6 ( Stock.frm ) Private Sub Command2_Click() psn = MsgBox(" Yakin Akan Keluar..?", vbcritical + vbyesno, "barang") If psn = vbyes Then Unload Me Private Sub Form_Load() Crys1.ReportFileName = (App.Path & "\stock.rpt") Crys1.DataFiles(0) = (App.Path & "\Suzuya.mdb") ' Crys1.WindowState = crptmaximized Private Sub Command1_Click() Crys1.Formulas(0) = "kepada = '" & Text1.Text & "'" Crys1.WindowTitle = " LAPORAN STOCK AKHIR BARANG" Crys1.WindowState = crptmaximized Crys1.Action = 1 Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then SendKeys "{tab}"

40 99 MDIform1(Menu.frm) Dim ket As String Private Sub FEBB_Click() Form2.Show Form2.SetFocus Private Sub FEDB_Click() Form1.Show Form1.SetFocus Private Sub FEJB_Click() Form3.Show Form3.SetFocus Private Sub Klr_Click() End Private Sub LBB_Click() Form4.Show

41 100 Form4.SetFocus Private Sub LJH_Click() Form5.Show Form5.SetFocus Private Sub LSAB_Click() Form6.Show Form6.SetFocus Private Sub WCC_Click() Me.Arrange vbcascade Private Sub WTH_Click() Me.Arrange vbtilehorizontal Private Sub WTV_Click() Me.Arrange vbtilevertical

42 101 Private Sub MDIForm_Activate() N = 1 K = 1 ket = " * " & Label1.Caption Timer1.Enabled = True Private Sub Timer1_Timer() ket = Right(ket, Len(ket) - 1) & Left(ket, 1) Label1.Caption = ket

LAMPIRAN LIST PROGRAM

LAMPIRAN LIST PROGRAM LAMPIRAN LIST PROGRAM 1. Modules Public conn As New ADODB.Connection Public rstb_pendekatan As ADODB.Recordset Public rstb_solusi As ADODB.Recordset Public rstb_alasan As ADODB.Recordset Public rstb_pilihan

More information

LAMPIRAN FORM 1 Universitas Sumatera Universitas Utara

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

More information

LAMPIRAN A : LISTING PROGRAM

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

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

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

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

ต วอย างการสร างฟอร ม เมน การใช งาน ต วอย างการสร างฟอร ม เมน การใช งาน Option Explicit Dim conn As New ADODB.Connection Dim rs As New ADODB.Recordset Dim Sql As String Private Sub Command6_Click() Form2.Hide Form3.Show Private Sub Command7_Click()

More information

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

LISTING PROGRAM. Form Splash LISTING PROGRAM Form Splash Private Sub Form_Load() lblversion.caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision lblproductname.caption = App.Title lblcopyright.caption = App.LegalCopyright

More information

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

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

More information

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

22. VB Programming Fundamentals Data Access with Data Objects

22. VB Programming Fundamentals Data Access with Data Objects 22. VB Programming Fundamentals Data Access with Data Objects 22.1 Data Access Object MS Data Access Object (DAO) enables you to use a programming language to access and manipulate data in local or remote

More information

End Sub. Sub Kunci() Dim i As Integer For i = 0 To 4 Txtfield(i).Locked = True Next i grddatagrid.enabled = False End Sub

End Sub. Sub Kunci() Dim i As Integer For i = 0 To 4 Txtfield(i).Locked = True Next i grddatagrid.enabled = False End Sub Source Aplikasi Sistem Informasi Akademik GENERAL Dim db As Connection Dim WithEvents adoprimaryrs1 As Recordset Dim WithEvents adoprimaryrs2 As Recordset Dim WithEvents rscaridata As Recordset Dim cekid

More information

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

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

PROGRAM 1: SIMPLE CALCULATOR

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

More information

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

Visual Basic 6 Lecture 7. The List Box:

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

More information

NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY

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

More information

Understanding the MsgBox command in Visual Basic

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

More information

LISTING PROGRAM. 1. Menu Utama

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

LAMPIRAN 1. Kode Program Splash Screen

LAMPIRAN 1. Kode Program Splash Screen LAMPIRAN 1 Kode Program Splash Screen Private Sub Form_Load() lblversion.caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision lblproductname.caption = App.Title lblcopyright.caption

More information

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

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

More information

Programming with visual Basic:

Programming with visual Basic: Programming with visual Basic: 1-Introdution to Visual Basics 2-Forms and Control tools. 3-Project explorer, properties and events. 4-make project, save it and its applications. 5- Files projects and exercises.

More information

On Railway Reservation. U G D C A Semester VI. Roll No DA

On Railway Reservation. U G D C A Semester VI. Roll No DA On Railway Reservation U G D C A Semester VI Submitted to: Dr. P. K. Sen (Co-ordinator) Submitted By: (Name of Student) Roll No. 14836DA Contents 1. Acknowledgement 2. Objectives 3. Declaration 4. Analysis

More information

1. Menu Utama. Private Sub abt_click() frmabout.show End Sub. Private Sub dafabsenhar_click() frmdafabsensihar.show End Sub

1. Menu Utama. Private Sub abt_click() frmabout.show End Sub. Private Sub dafabsenhar_click() frmdafabsensihar.show End Sub 1. Menu Utama Private Sub abt_click() frmabout.show Private Sub dafabsenhar_click() frmdafabsensihar.show Private Sub dafpeg_click() frmdafpegawai.show Private Sub dafuser_click() frmdaftaruser.show Private

More information

ONLINE RAILWAY RESERVATION SYSTEM

ONLINE RAILWAY RESERVATION SYSTEM Ex. No: Date: ONLINE RAILWAY RESERVATION SYSTEM AIM: methodologies To develop a software for online railway reservation system project by using software ALGORITHM: Step1: Open a VB project. Step2: Design

More information

EMPLOYEE PAYROLL SYSTEM

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

More information

Rooftop Industries Pvt. Ltd.

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

More information

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

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

More information

LISTING PROGRAM. 1. Menu Utama

LISTING PROGRAM. 1. Menu Utama LISTING PROGRAM 1. Menu Utama Option Explicit Dim rssms As Recordset Dim stopen As String * 1 Dim IDSms As Integer Dim rspesan As Recordset Dim Kode As String * 1 Dim rspaket As Recordset Dim NmPaket As

More information

Visual Basic ,

Visual Basic , Visual Basic 6.0..!"# !"# $#%$$"& ( ( 6.0) 2 $, -&, - 1.,. Caption Hello, On O ff. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm. 2/59 !"# $#%$$"& ( ( 6.0) 3 $, -&, - 3/59 !"# $#%$$"&

More information

Nilai Input (Peringkat Alternatif Fuzzy dan Crisp Terhadap Kriteria)

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

More information

Visual Basic , ,. Caption Hello, On Off. * + +, -. 1-Arrow, , 2- Cross. - project1.vbp, 4-form1.frm.

Visual Basic , ,. Caption Hello, On Off. * + +, -. 1-Arrow, , 2- Cross. - project1.vbp, 4-form1.frm. Visual Basic 6.0 1.,. Caption Hello, On Off. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm...!"# 2/59 3...

More information

Remainder Cordial Labeling of Graphs

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

More information

KARTU BIMBINGAN TUGAS AKHIR MAHASISWA PEMBAHASAN PADA ASISTENSI MENGENAI, PADA BAB

KARTU BIMBINGAN TUGAS AKHIR MAHASISWA PEMBAHASAN PADA ASISTENSI MENGENAI, PADA BAB 62 KEMENTERIAN PENDIDIKAN NASIONAL UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM Jl. Bioteknologi No.1 Kampus USU Padang Bulan Medan 20155 Telp. (061) 8211050, 8214290, Fax (061)

More information

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

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

More information

LAMPIRAN A: LISTING PROGRAM

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

More information

NEAR EAST UNIVERSITY FACULTY OF ECONOMICS AND ADMINISTRATIVE SCIENCE DEPARTMENT OF COMPUTER INFORMATION SYSTEMS

NEAR EAST UNIVERSITY FACULTY OF ECONOMICS AND ADMINISTRATIVE SCIENCE DEPARTMENT OF COMPUTER INFORMATION SYSTEMS EAR EAST UVERSTY FACULTY OF ECOOMCS AD ADMSTRATVE SCECE DEPARTMET OF COMPUTER FORMATO SYSTEMS 2002/2003 SUMMER TERM CS 400 (Graduation Project) CE,MET CO. PROCESS SYSTEM Submitted To Dr, Yalcm Akcah Miss,adire

More information

Excel & Visual Basic for Applications (VBA)

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

More information

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

L A M P I R A N. Universitas Sumatera Utara L A M P I R A N Form 1 '====================================================== 'SUHU FLUIDA : ' Suhu 10 C Const a1 = 0.9998 Const B1 = 1.307 Const C1 = 0.01251 ' Suhu 20 C Const a2 = 0.9983 Const B2 =

More information

Programming Concepts and Skills. Arrays continued and Functions

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

More information

Visual Basic ,

Visual Basic , Visual Basic 6.0 1.,. Caption Hello, On O ff. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm...!"# 2/59 3...

More information

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

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

More information

Password Protect an Access Database

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

More information

A Back-End Link Checker for Your Access Database

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

More information

Angel International School - Manipay 1 st Term Examination November, 2015

Angel International School - Manipay 1 st Term Examination November, 2015 Grade 10 Angel International School - Manipay 1 st Term Examination November, 2015 Information & Communication Technology Duration: 3.00 Hours Part 1 Choose the appropriate answer 1) Find the correct type

More information

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

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

More information

Lampiran A : Listing Program

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

More information

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM LAMPIRAN A : LISTING PROGRAM 1. Form Login Private Sub Siap() txtnama.enabled = True txtpswd.enabled = True Private Sub BlmSiap() txtnama.enabled = False txtpswd.enabled = False Private Sub Kosong() txtnama

More information

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

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

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

More information

Function: function procedures and sub procedures share the same characteristics, with

Function: function procedures and sub procedures share the same characteristics, with Function: function procedures and sub procedures share the same characteristics, with one important difference- function procedures return a value (e.g., give a value back) to the caller, whereas sub procedures

More information

Angel International School - Manipay 1 st Term Examination November, 2015

Angel International School - Manipay 1 st Term Examination November, 2015 Angel International School - Manipay 1 st Term Examination November, 2015 Information & Communication Technology Grade 11A & C Duration: 3.00 Hours Part 1 Choose the most appropriate answer. 1) Find the

More information

The Control Properties

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

More information

Control Properties. Example: Program to change background color

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

More information

Please answer questions in the space provided. Question point values are shown in parentheses.

Please answer questions in the space provided. Question point values are shown in parentheses. IS 320 Spring 99 Page 1 Please answer questions in the space provided. Question point values are shown in parentheses. 1. (15) Assume you have the following variable declarations and assignments: Dim A

More information

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

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

More information

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

LISTING PROGRAM. Source Code Tampilan Awal. Source Code Menu Utama LISTING PROGRAM Source Code Tampilan Awal Private Sub cmdkeluar_click() MsgBox "Terima Kasih Telah Membuka Program Ini.", vbinformation, "Quick IP Ver 1.0" End Private Sub cmdmasuk_click() MenuUtama.Show

More information

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

Data Acquisition over Ethernet using Serial Device Server - NPort 5210 PRL-TN

Data Acquisition over Ethernet using Serial Device Server - NPort 5210 PRL-TN Data Acquisition over Ethernet using Serial Device Server - NPort 5210 PRL-TN-2010-96 Data Acquisition over Ethernet using Serial Device Server - NPort 5210 PRL-TN-2010-96 Introduction 1 Serial Device

More information

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

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

More information

Universitas Sumatera Utara

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

More information

File Organization and Management

File Organization and Management 1 UNESCO-NIGERIA TECHNICAL & VOCATIONAL EDUCATION REVITALISATION PROJECT-PHASE II NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY File Organization and Management YEAR II- SE MESTER I PRACTICAL Version 1: December

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

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

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

More information

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6 HARP_VB projet en VB6 Option Explicit Dim Value As Integer Dim i As Integer Dim il As Long Dim LL, L1S, L250µS, L500µS, L1mS, L2mS, L5mS, L10mS As Single Dim offsetdepart As Long Dim police(256, 8) As

More information

Lab Manual Visual Basic 6.0

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

More information

ISA PCI Peripherals Connect Interface ISA. Enhanced Parallel Port EPP

ISA PCI Peripherals Connect Interface ISA. Enhanced Parallel Port EPP ) ( 205 2003 4 ISA PCI Peripherals Connect Interface ISA Enhanced Parallel Port EPP IEEE 1284 1994 Intel Xircom Zenith 4-bit Nibble Mode EPP Enhanced Parallel Port ECP Extended Capabilities Parallel bi-direction

More information

TABLE OF CONTENTS ADVANCED VISUAL BASIC

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

More information

Visual Basic. The Integrated Development Environment. Menu Bar

Visual Basic. The Integrated Development Environment. Menu Bar Visual Basic Visual Basic is initiated by using the Programs option > Microsoft Visual Basic 6.0 > Visual Basic 6.0. Clicking the Visual Basic icon, we can view a copyright screen enlisting the details

More information

HELP - VB TIPS. ANIMATE AN IMAGE BOX Insert a module. In this module, create a global variable: Global x

HELP - VB TIPS. ANIMATE AN IMAGE BOX Insert a module. In this module, create a global variable: Global x HELP - VB TIPS Load an image to an image box from a certain folder If you use this method, won t work on N:\ To load an image to a image control Image1.Picture = LoadPicture("H:\MyVBfolder\stop.gif") Load

More information

LAMPIRAN A-2 : LAPORAN PENJUALAN DOKUMEN KELUARAN

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

More information

MANAGE COURSE RESOURCES LABEL TEXT PAGE URL BOOK FILE FOLDER IMS CONTENT PACKAGE

MANAGE COURSE RESOURCES LABEL TEXT PAGE URL BOOK FILE FOLDER IMS CONTENT PACKAGE MANAGE COURSE RESOURCES LABEL TEXT PAGE URL BOOK FILE FOLDER IMS CONTENT PACKAGE Edit summary Edit tajuk Ke kanan Ke atas/bawah NOTA: Klik untuk sembunyikan isi kandungan. Klik untuk padam/menghapus isi

More information

PROGRAM BASCOM AVR. ' inisialisasi '

PROGRAM BASCOM AVR. ' inisialisasi ' PROGRAM BASCOM AVR '--------------------------------------- inisialisasi '----------------------- $prog &HFF, &HC4, &HD9, &H00 ' generated. Take care that the chip supports all fuse bytes. $regfile = "m8def.dat"

More information

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

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

More information

Information Hiding In Images Using Randomly Selected Points

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

More information

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

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

More information

Introduction to Microsoft Message Queuing Services (MSMQ)

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

More information

2Practicals Visual Basic 6.0

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

More information

Experiment No. 2. Program:

Experiment No. 2. Program: Index 1. C++ program to perform bubble sort. 2. C++ program with class ratio and assign(),convert(),invert(),print() functions. 3. C++ program with circle class using default constructor. 4. C++ program

More information

Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson

Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson Introduction Among the many new features of PATROL version 3.3, is support for Microsoft s Component Object Model (COM).

More information

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

More information

Catalyst Development Corporation An Introduction to TCP/IP Programming With SocketWrench

Catalyst Development Corporation   An Introduction to TCP/IP Programming With SocketWrench Catalyst Development Corporation www.catalyst.com An Introduction to TCP/IP Programming With SocketWrench Copyright 1995-1998, Catalyst Development Corporation. All rights reserved. SocketWrench and SocketTools

More information

Chapter 1. Block Diagram. Text .. 1

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

More information

variables programming statements

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

More information

2-26 Learn Visual Basic 6.0

2-26 Learn Visual Basic 6.0 2-26 Learn Visual Basic 6.0 cmdcompute Click Event: Private Sub cmdcompute_click() Dim Mean As Single Dim StdDev As Single txtinput.setfocus Make sure there are at least two values If NumValues < 2 Then

More information

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

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

More information

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

17. Introduction to Visual Basic Programming

17. Introduction to Visual Basic Programming 17. Introduction to Visual Basic Programming Visual Basic (VB) is the fastest and easiest way to create applications for MS Windows. Whether you are an experienced professional or brand new to Windows

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

UOJ.SUMMER-TERM CIS 400 (Gra~uation Project) Submitted To : Dr. Yalçırl Akçalı Miss.Nadire Çavuş. Submitted By "': V~dat Gözügüzelli (950499)

UOJ.SUMMER-TERM CIS 400 (Gra~uation Project) Submitted To : Dr. Yalçırl Akçalı Miss.Nadire Çavuş. Submitted By ': V~dat Gözügüzelli (950499) NEAR EAST UNIVERSITY FACULTY OF ECONOMICS AND ADMINISTRATIVE SCIENCE DEPARTMENT OF COMPUTER INFORMAİION SYSTEMS 200212.UOJ.SUMMER-TERM CIS 400 (Gra~uation Project)! I j i /. Submitted To : Dr. Yalçırl

More information

SURAT KETERANGAN Hasil Uji Program Tugas Akhir

SURAT KETERANGAN Hasil Uji Program Tugas Akhir SURAT KETERANGAN Hasil Uji Program Tugas Akhir Yang bertanda tangan dibawah ini, menerangkan bahwa Tugas Akhir Mahasiswa Program Diploma 3 Teknik Informatika : Nama : FADILLA MAHARANI NIM : 112406159 Program

More information

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

PROJECT ELECTRONIC CONTROL GAS INJECTION SYSTEM

PROJECT ELECTRONIC CONTROL GAS INJECTION SYSTEM PROJECT ELECTRONIC CONTROL GAS INJECTION SYSTEM SOURCE CODE VISUAL BASIC Dim WR As Boolean Dim pw Dim data Dim oxg Public index1 Dim index2 Dim k Dim u Dim refd Dim datar1$(1000, 9) Dim c_data Dim A$(10)

More information

Definition, Investigation and Analysis

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

More information

Lecture Using ListBox and ComboBox Controls In Visual Basic 6: list box

Lecture Using ListBox and ComboBox Controls In Visual Basic 6: list box Lecture 10+11+12 7- Using ListBox and ComboBox Controls In 6: list box A list box displays a list of items from which the user can select one or more items. If the number of items exceeds the number that

More information

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

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

More information

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

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

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

More information

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