Tampilan Menu Bagian Bendahara

137 Gambar 4.75 Tampilan Input Jurnal Umum Tabel 4.37 Listing Program input jurnal Listing Program Keterangan Private Sub Command2_Click Adodc2.Recordset.AddNew Adodc2.Recordset.Fields0 = Text1 Adodc2.Recordset.Fields1 = Combo1 Adodc2.Recordset.Fields2 = Text2 Adodc2.Recordset.Fields3 = DTPicker1 Adodc2.Recordset.Fields4 = Text3 Adodc2.Recordset.Fields5 = Text4 Adodc2.Recordset.Update Adodc2.Refresh If Combo1 = DP_RKA_SKPD Then [=============================================================== ---------------------------------jurnal Dana Pagu With Adodc3.Recordset .AddNew .Fields0 = DTPicker1.Value .Fields1 = Text2.Text .Fields2 = 4.2.4.01.1 .Fields3 = Text4.Text .Fields4 = 0 .Fields5 = 1.1.1.01.01 .Update Adodc3.Refresh End With ----------------------------------jurnal kas With Adodc3.Recordset .AddNew .Fields0 = DTPicker1.Value .Fields1 = Text2.Text .Fields2 = 1.1.1.01.01 .Fields3 = 0 .Fields4 = Text4.Text .Fields5 = 4.2.4.01.1 .Update Adodc3.Refresh End With ======================================================= Perintah Untuk simpan Private Sub Command3_Click Text1.Text = Text2.Text = Text3.Text = Text4.Text = kode End Sub Perintah Untuk Batal Private Sub Command4_Click If Adodc2.Recordset.BOF Then MsgBox data kosong, vbInformation, proses hapus Else Adodc2.Recordset.Delete End If End Sub Perintah Untuk Hapus Private Sub Command2_Click MENU_UTAMA.Show Unload Me End Sub Perintah Untuk keluar 138 Gambar 4.76 Tampilan Jurnal Umum Bulanan Tabel 4.38 Listing Program Jurnal Umum Bulanan Listing Program Keterangan Dim b As String With CrystalReport1 .ReportFileName = App.Path \CRYSTAL REPORT\JURNAL UMUM.rpt b = select from v_jurnal where bulan = Combo2.ListIndex + 1 and tahun = Text1 .SQLQuery = b .WindowState = crptMaximized .Destination = crptToWindow .RetrieveDataFiles .Action = 1 End With End Sub Perintah Untuk Tombol Cetak Gambar 4.77 Tampilan Keluaran Jurnal 139 Gambar 4.78 Tampilan Jurnal Umum Tahunan Tabel 4.39 Listing Program Jurnal Umum Tahunan Listing Program Keterangan Private Sub Command4_Click Dim b As String With CrystalReport2 .ReportFileName = App.Path \CRYSTAL REPORT\JURNAL TAHUN.rpt b = selectfrom T_ju where tahun = Text1 .SQLQuery = b .WindowState = crptMaximized .Destination = crptToWindow .RetrieveDataFiles .Action = 1 End With End Sub Perintah Untuk Tombol Cetak Gambar 4.79 Tampilan Keluaran Jurnal Tahunan 140 Gambar 4.80 Tampilan Buku Besar Tabel 4.40 Listing Program Buku Besar Umum Listing Program Keterangan Dim debit, kredit, saldo As Currency If Combo1 = Perbulan Then If DataCombo1 = 1.1.1.01.01 Then =================================== saldo Adodc2.RecordSource = select from V_Saldo where bulan= Combo2.ListIndex + 0 and tahun= Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then saldo = 0 Else saldo = Adodc2.Recordset.Fields4 End If ==================================== debit Adodc2.RecordSource = select from V_Saldo where bulan= Combo2.ListIndex + 0 and tahun= Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then debit = 0 Else debit = Adodc2.Recordset.Fields2 End If ==================================== kredit Adodc2.RecordSource = select from V_Saldo where bulan= Combo2.ListIndex + 0 and tahun= Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then kredit = 0 Else kredit = Adodc2.Recordset.Fields3 End If Dim a As String With Cr1 .ReportFileName = App.Path \CRYSTAL REPORT\bb_kas.rpt a = select from V_BBdetail Perintah Untuk Tombol Cetak 141 where Kode_ek = DataCombo1 and bulan = Combo2.ListIndex + 1 and tahun = Text1 .SQLQuery = a .ParameterFields0 = saldo; saldo ;1 .ParameterFields1 = debit; debit ;1 .ParameterFields2 = kredit; kredit ;1 .WindowState = crptMaximized .Destination = crptToWindow .RetrieveDataFiles .Action = 1 End With Else Dim b As String With Cr1 .ReportFileName = App.Path \CRYSTAL REPORT\bb.rpt b = select from V_BBdetail where Kode_Rek = DataCombo1 and tahun = Text1 .SQLQuery = b .WindowState = crptMaximized .Destination = crptToWindow .RetrieveDataFiles .Action = 1 End With End If ElseIf Combo1 = Pertahun Then If DataCombo1 = 1.1.1.01.01 Then ======================================== saldo Adodc2.RecordSource = select from V_saldothn where tahun = Text1 - 1 Adodc2.Refresh If Adodc2.Recordset.EOF Then saldo = 0 Else saldo = Adodc2.Recordset.Fields3 End If ======================================== debit Adodc2.RecordSource = select from V_saldothn where tahun = Text1 - 1 Adodc2.Refresh If Adodc2.Recordset.EOF Then debit = 0 Else debit = Adodc2.Recordset.Fields1 End If ======================================== kredit Adodc2.RecordSource = select from V_saldothn where tahun = Text1 - 1 Adodc2.Refresh If Adodc2.Recordset.EOF Then kredit = 0 Else kredit = Perintah Untuk Tombol Cetak lanjutan1 Tabel 4.41 Listing Program Buku Besar Umum Lanjutan 1 142 Adodc2.RecordSource = select from V_saldothn where tahun = Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then kredit = 0 Else kredit = Adodc2.Recordset.Fields2 End If Dim c As String With Cr1 .ReportFileName = App.Path \CRYSTAL REPORT\bb_kas_tahun.rpt c = select from V_BBdetail where Kode_Rek = DataCombo1 and tahun = Text1 .SQLQuery = c .ParameterFields0 = saldo; saldo ;1 .ParameterFields1 = debit; debit ;1 .ParameterFields2 = kredit; kredit ;1 .WindowState = crptMaximized .Destination = crptToWindow .RetrieveDataFiles .Action = 1 End With Else Dim d As String With Cr1 .ReportFileName = App.Path \CRYSTAL REPORT\bb_tahun.rpt d = select from V_BBdetail where Kode_Rek = DataCombo1 and tahun = Text1 .SQLQuery = d .WindowState = crptMaximized .Destination = crptToWindow .RetrieveDataFiles .Action = 1 End With End If End If End Sub Gambar 4.81 Tampilan Keluaran Buku Besar Umum Tabel 4.42 Listing Program Buku Besar Umum Lanjutan 2 143 Gambar 4.82 Tampilan Keluaran Buku Besar Umum Belanja Barang Dan Jasa Gambar 4.83 Tampilan Keluaran Buku Besar Umum Belanja Pegawai Gambar 4.84 Tampilan Keluaran Buku Besar Umum Dana Pagu Gambar 4.85 Tampilan Keluaran Buku Besar Umum Pendapatan Daerah 144 Gambar 4.86 Tampilan Keluaran Buku Besar Umum PDAU Gambar 4.87 Tampilan Keluaran Buku Besar PDAK Gambar 4.88 Tampilan Keluaran Buku Besar Kas Daerah Gambar 4.89 Tampilan Keluaran Buku Besar Anggaran Belanja Barang Dan Jasa 145 Gambar 4.90 Tampilan Keluaran Buku Besar Anggaran Belanja Modal Gambar 4.91 Tampilan Keluaran Buku Besar Anggaran Belanja Pegawai Gambar 4.92 Tampilan Keluaran Buku Besar Anggaran Belanja Perjalanan Dinas Gambar 4.93 Tampilan Laporan Realisasi Anggaran 146 Tabel 4.43 Listing Program Laporan Realisasi Anggaran Listing Program Keterangan Dim BPD, PDAU, total As Currency If Combo1 = Perbulan Then =================================== total Adodc2.RecordSource = select from V_LRA where bulan= Combo2.ListIndex + 0 and tahun= Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then total = 0 Else total = Adodc2.Recordset.Fields4 End If ==================================== PDAU Adodc2.RecordSource = select from V_LRA where deskripsi=PDAU and bulan= Text2.Text and tahun= Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then PDAU = 0 Else PDAU = Adodc2.Recordset.Fields5 End If ==================================== PDP Adodc2.RecordSource = select from V_LRA where deskripsi=DANA PAGU and bulan= Text2.Text and tahun= Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then PDP = 0 Else PDP = Adodc2.Recordset.Fields4 End If ====================================PDAK Adodc2.RecordSource = select from V_LRA where deskripsi=PDAK and bulan= Text2.Text and tahun= Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then PDAK = 0 Else PDAK = Adodc2.Recordset.Fields5 End If ====================================Pendapatan Daerah Adodc2.RecordSource = select from Perintah Untuk Tombol Cetak 147 V_LRA where deskripsi=Pendapatan Daerah and bulan= Text2.Text and tahun= Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then Pendapatan_daerah = 0 Else Pendapatan_daerah = Adodc2.Recordset.Fields5 End If ====================================Belanja Barang Dan Jasa Adodc2.RecordSource = select from V_LRA where deskripsi=Belanja Barang Dan Jasa and bulan= Text2.Text and tahun= Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then BBJ = 0 Else BBJ = Adodc2.Recordset.Fields5 End If ====================================Belanja pegawai Adodc2.RecordSource = select from V_LRA where deskripsi=Belanja pegawai and bulan= Text2.Text and tahun= Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then BP = 0 Else BP = Adodc2.Recordset.Fields5 End If ====================================Belanja Modal Adodc2.RecordSource = select from V_LRA where deskripsi=Belanja Modal and bulan= Text2.Text and tahun= Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then BM = 0 Else BM = Adodc2.Recordset.Fields4 End If ====================================Belanja Perjalanan Dinas Adodc2.RecordSource = select from V_LRA where deskripsi=Belanja Perjalanan Dinas and bulan= Text2.Text and tahun= Text1 Adodc2.Refresh If Adodc2.Recordset.EOF Then BPD = 0 Else BPD = Adodc2.Recordset.Fields4 End If Dim b As String With Cr1 .ReportFileName = App.Path \CRYSTAL REPORT\LAPORAN REALISASI ANGGARAN.rpt b = select from V_LRA where bulan = Text2.Text and tahun = Text1 .SQLQuery = b .Pa Tabel 4.44 Listing Program Laporan Realisasi Anggaran Lanjutan1 148 rameterFields0 = PDP; PDP ;1 .ParameterFields1 = PDAU; PDAU ;1 .ParameterFields2 = PDAK; PDAK ;1 .ParameterFields3 = Pendapatan_daerah; Pendapatan_daerah ;1 .ParameterFields4 = BBJ; BBJ ;1 .ParameterFields5 = BP; BP ;1 .ParameterFields6 = BM; BM ;1 .ParameterFields8 = BPD; BPD ;1 .ParameterFields9 = BPD; BPD ;1 .ParameterFields10 = BP; BP ;1 .ParameterFields11 = BM; BM ;1 .WindowState = crptMaximized .Destination = crptToWindow .RetrieveDataFiles .Action = 1 End With End If End Sub Gambar 4.94 Tampilan Keluaran Laporan Realisasi Anggaran Tabel 4.45 Listing Program Laporan Realisasi Anggaran Lanjutan 2 149

4.5.5 Tampilan Profil

Tampilan Menu Program Profil Perusahaan dan Program Profil Programer dapat dilihat pada gambar dibawah ini: Gambar 4.95 Tampilan Profil Perusahaan Gambar 4.96 Tampilan Profil Programer 150 4.6 Konversi Komponen Sistem 4.6.1 Pengguna Brainware Sumber daya manusia yang diperlukan untuk menjalankan program aplikasi perancangan sistem informasi akuntansi realisasi anggaran ini minimal lulusan D3 atau orang yang bisa mengoperasikan computer dibidang hadware dan software.

4.6.2 Perangkat keras Hadware

Hadware yang diperlukan untuk menjalankan program aplikasi perancangan sistem informasi akuntansi realisasi anggaran adalah Processor Pentium Dual- Core, Motherboard INTEL, Hardisk Minimal 20 GB, Memory DDR 512 MB, Flash Disk, dan Mouse.

4.6.3 Perangkat Lunak Software

4.6.3.1 Perangkat Lunak Sistem

Perangkat lunak sistem yang digunakan untuk mengkonfirgurasi computer yaitu window XP karena sistem operasi ini dapat mendukung Program Perancangan Sistem Informasi Akuntansi Realisasi Anggaran.

4.6.3.2 Perangkat Lunak Pemograman

Perangkat lunak pemograman yang digunakan untuk membuat program Perancangan Sistem Informasi Akuntansi Realisasi Anggaran ini adalah Visual Basic 6.0, Aplikasi ini dapat didukung dalam pembuatan laporan realisasi anggaran. 151

4.6.3.3 Perangkat Lunak Aplikasi

Perangkat lunak aplikasi yang digunakan untuk membuat program aplikasi Sistem Informasi Akuntansi Realisasi Anggaran ini adalah Microsoft SQL Server 2000 dan Crystal Report. Aplikasi ini dapat memdukung Perancangan Sistem Informasi Akuntansi Realisasi Anggaran dalam pembuatan database dan laporan realisasi anggaran.

4.7 Jaringan Komputer Client-Server

4.7.1 Model Jaringan Client-Server

Model jaringan yang digunakan yaitu model jaringan topologi star. Buku yang berjudul Instalasi dan konfigurasi jaringan computer, karangan Dede 2004:41 menerangkan topologi star sebagai berikut: “Topologi star berbentuk seperti bintang dan memiliki kemudahan untuk menambah atau mengurangi serta mudah untuk mendeteksi kerusakan pada sistem yang ada. ”

4.7.2 Koneksi Jaringan Client-Server

Berdasarkan Perancangan Sistem Informasi Akuntansi Realisasi Anggaran yang berbasis client-server dengan menggunakan Microsoft Visual Basic 6.0 dan SQL Server 2000, maka diperlukannya konfigurasi client-server. Dimana beberapa komputer yang saling terhubung dan membentuk suatu jaringan client- server untuk dapat menggunakan program aplikasi secara bersama-sama sharing. Maka harus di-Setting terlebih dulu ODBC-nya supaya dapat terkoneksi.

Dokumen yang terkait

Perancangan Sistem Informasi Akuntansi Perlengkapan Pada PT. BPW Pahala Kencana Cabang Bandung Dengan Menggunakan Microsoft Visual Basic 6.0 Dan Microsoft SQL Server 2000 Berbasis Client Server

0 9 28

Perancangan Sistem Informasi Akuntansi Kas Pada Yayasan Babussalam Dengan Menggunakan Microsoft Visual Basic 6.0 Dan SQL server 7.0 Berbasis Client server

19 141 128

Perancangan Sistem Informasi Akuntansi Harga Pokok Produksi Pada Pt Indo Extrusions Dengan Menggunakan Microsoft Visual Basic 6.0 Dan Microsoft SQL Server 2000 Berbasis Client Server

0 8 1

Perancangan Sistem Informasi Akuntansi Kas Menggunakan Software Microsoft Visual Basic 6.0 Dan SQL Server 2000 Berbasis Client Server Pada PT Cipta Sejahtera

1 14 242

Perancangan Sistem Informasi Akuntansi Kas Pada PT. Radio Karang Tumaritis Dengan Microsoft Visual Basic 6.0 Dan Microsoft SQL Server 2000 Berbasis Client Server

0 2 4

Perancangan Sistem Informasi Akuntansi Kas Pada Kecamatan Baleendah Kab. Bandung Dengan Menggunakan Microsoft Visual Basic 6.0 Dan SQL Server 2000 Berbasis Client Server

0 4 1

Perancangan sistem informasi akuntansi biaya tenaga kerja produksi pada PT.Rawa Jaya dengan menggunakan microsoft visual basic 6.0 dan SQL server 2000 berbasis client server

0 4 1

Perancangan Sistem Informasi Akuntansi Persediaan BaranG Dagang Pada PT. Bajubang Gasindo Dengan Menggunakan Microsoft Visual Basic 6.0 Dan SQL Server 2000 Berbasis Client Server

0 6 1

Perancangan Sistem Informasi Akuntansi Anggaran Pada Dinas Pendidikan Pemuda Dan OlahRaga Kabupaten Bandung Barat Dengan Menggunakan Microsoft Visual Basic 6.0 Dan SQL Server 2000 Berbasis Client Server

1 41 183

Perancangan Sistem Informasi Akuntansi Laporan Keuangan Neraca Pada Kelurahan Cibeureum Dengan Menggunakan Software Microsoft Visual Basic 6.0 Dan Microsoft SQL Server 2000 Berbasis Client Server

0 14 322