by admin

Contoh Program Web Penyewaan Vcd

Contoh Program Web Penyewaan Vcd 8,4/10 9759 votes


  1. Sample Html Program Web Page
  2. Contoh Program Web Penyewaan Vcd Maker
Aplikasi RentalVCD VB 6.0
Program rental VCD sebenarnya satu type dengan program Perpustakaandimana prinsip dasarnya adalah adanya proses peminjaman danpengembalian. Sisi perbedaannya hanya sedikit, yaitu (jika memang diperlukan)dalam program rental VCD tidak perlu adanya batasan peminjaman agar pemasukandari penyewaan film semakin banyak.

Koleksi Skripsi Terlengkap. Kumpulan Skripsi LENGKAP (full content) Buat Referensi penyusunan Skripsi. PAKET DVD SKRIPSI HANYA Rp 99.000 (termasuk ongkos kirim). Tersedia Paket. DVD KHUSUS TEKNIK INFORMATIKA, LENGKAP DENGAN SOURCE CODENYA. Sistem penyewaan vcd Script Game Mebangun Aplikasi web Toko online berbasis Web. Komputerisasi penyewaan vcd film di Gajah Rental, Surabaya 14. Aplikasi Penyewaan Vcd Program Delphi - for Share. 23 Sep 2011 – komputerisasi penyewaan vcd - download at 4shared. Komputerisasi penyewaan vcd is hosted at free file sharing service 4shared. Komputerisasi penyewaan VCD film di Gajah disc Yogyakarta.

Normalisasi File
Program Rental VCD ini dirancangdengan Normaliasi level ketiga (3NF) dengan bentuk seperti Gambar 10.1.
Program rental VCD ini menyimpan data ke dua tabel yaitutabel Pinjam dan DetailPjm seperti terlihat pada tabel-tabel berikut ini.
Tabel Pinjam
Pinjam
Tanggalpjm
TotalHrg
Kembali
07111401
3
10000
A001
Tabel DetailPjm
DetailPjm
NomorFlm
071114011
1
F004
071114013
1
Database Dan Tabel
Untuk mengetahui file database dan struktur masing-masingtabel berikut type data dan kunci primer maupun kunci tamunya silakan buka CDpendukung buku ini.



Untuk memulai membuat program Rental VCD, aktifkanlah VBkemudian awali dengan membuat module lalu ketik coding berikut ini.
Coding:
Public Conn As New adodb.Connection
Public RSFilm As adodb.Recordset
Public RSDetailPjm As adodb.Recordset
Public RSDetailKbl As adodb.Recordset
Public RSTansKbl As adodb.Recordset
Public Sub BukaDB()
Set RSAnggota = New adodb.Recordset
Set RSPinjam = New adodb.Recordset
Set RSKembali = New adodb.Recordset
Set RSTansPjm = New adodb.Recordset
Conn.Open'PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=' & App.Path &'ADOVCD.mdb'




Transaksi Peminjaman Film
Dengan asumsi form login, data film, anggota telah dibuat,kini saatnya membuat form Rental VCD dengan bentuk seperti Gambar 10.3 berikutini.
Ilustrasi pada program ini adalah sebagai berikut:
1.Nomor pinjam dan tanggal munculsecara otomatis, berubah setiap hari dan setiap ganti transaksi(disarankan untuk mengecek kembali validasi tanggal dengan format dd/mm/yysebelum program dijalankan)
2.Hal pertama yang harusdilakukan adalah mengetik Nomor Anggota. Jika ditemukan maka akan tampilnamanya, jika pernah meminjam maka jumlahnya akan ditampilkan di DataGridbagian bawah, jika belum pernah pinjam maka kursor pindah ke grid transaksipeminjaman.

Private Sub Form_Activate()
DT.ConnectionString = 'Provider=Microsoft.Jet.OLEDB.4.0;DataSource= ' & App.Path & 'ADOVCD.mdb'
Set DG1.DataSource = DT

RSFilm.Open 'Film', Conn
Do Until RSFilm.EOF
List1.AddItem RSFilm!Judul & Space(50) & RSFilm!Nomorflm
Loop
Call AutoNomor
Call Tabel_Kosong
DG1.Col = 1

Call BukaDB

DT.Recordset.MoveFirst
DT.Recordset.Delete
Loop
DT.Recordset.AddNew
DT.Recordset.Update
End Function
Private Sub AutoNomor()
RSPinjam.Open 'select * fromPinjam Where NomorPjm In(Select Max(NomorPjm)From Pinjam)Order By NomorPjmDesc', Conn
Dim Urutan As String * 8
With RSPinjam
Urutan = Right(Date, 2) + Mid(Date,4, 2) + Left(Date, 2) + '01'
Else
If Left(!NomorPjm, 6) <>Right(Date, 2) + Mid(Date, 4, 2) + Left(Date, 2) Then
Urutan = Right(Date, 2) +Mid(Date, 4, 2) + Left(Date, 2) + '01'
Hitung = (!NomorPjm) + 1
Urutan = (Right(Date, 2) +Mid(Date, 4, 2) + Left(Date, 2)) + Right('00' & Hitung, 2)
End If
End With

Private SubTxtNomorAgt_KeyPress(Keyascii As Integer)
Keyascii = Asc(UCase(Chr(Keyascii)))
If Keyascii = 13 Then
RSAnggota.Open 'Select * from anggota where nomoragt=' &TxtNomorAgt & '', Conn
If Not RSAnggota.EOF Then
DG1.SetFocus
Else
TxtNomorAgt.SetFocus
End If
DTCari.ConnectionString = 'Provider=Microsoft.Jet.OLEDB.4.0;DataSource= ' & App.Path & 'ADOVCD.mdb'
DTCari.RecordSource = 'select Film.Judul,detailpjm.JumlahFlm fromFilm,detailpjm,anggota where Film.NomorFlm=detailpjm.NomorFlm and nomoragt=' & TxtNomorAgt & ''
DG2.Refresh
LbltelahPjm.Caption = DTCari.Recordset.RecordCount
Call TelahPjm
If TelahPjm = 0 Or LbltelahPjm = ' Then
DG1.Col = 1
Call Pinjaman
DG1.Col = 1
Exit Sub
End If

On Error Resume Next
TTLPjm.Open 'SELECT sum(TOTALPJM) AS JUMTOTAL FROM PINJAM WHERENOMORAGT=' & TxtNomorAgt & '', Conn
LbltelahPjm.Caption = TelahPjm

DT.ConnectionString = 'Provider=Microsoft.Jet.OLEDB.4.0;DataSource= ' & App.Path & 'ADOVCD.mdb'
DTCari.RecordSource = 'Select DistinctDetailpjm.Nomorpjm,Film.Nomorflm,Judul,Jumlahflm From Anggota,Pinjam,Film,DetailpjmWhere Film.Nomorflm=Detailpjm.Nomorflm AndPinjam.Nomorpjm=Left(Detailpjm.Nomorpjm,8) And Anggota.Nomoragt=Pinjam.NomoragtAnd Anggota.Nomoragt=' & TxtNomorAgt & ''
LbltelahPjm.Caption = DTCari.Recordset.RecordCount

Private Sub DG1_AfterColEdit(ByValColIndex As Integer)
Call BukaDB
RSFilm.Open 'Select * from Film where NomorFlm=' &DT.Recordset!Kode & '', Conn
Pesan = MsgBox('Kode Flm Tidak Terdaftar')
Exit Sub
DT.Recordset!Kode = RSFilm!Nomorflm
DT.Recordset!Jumlah = 1
Call Tambah_Baris
DG1.Col = 1
LblTotalPjm.Caption = Format(TotalPjm, '#,###,###')

DT.Recordset!Jumlah = DT.Recordset!Jumlah
DT.Recordset.MoveNext
LblTotalPjm.Caption = Format(TotalPjm, '###')
LblTotalHrg.Caption = Format(TotalHrg, '#,###,###')

Contoh Program Web Penyewaan Vcd

For i = DT.Recordset.RecordCount ToDT.Recordset.RecordCount
DT.Recordset!Nomor = i + 1
Next i


Private SubTxtDibayar_KeyPress(Keyascii As Integer)
If TxtDibayar = ' Or Val(TxtDibayar) < (LblTotalHrg) Then
TxtDibayar.SetFocus
TxtDibayar = Format(TxtDibayar,'###,###,###')
Program
LblKembali = TxtDibayar -LblTotalHrg
LblKembali = Format(TxtDibayar- LblTotalHrg, '###,###,###')
CmdSimpan.Enabled = True
End If
If Not (Keyascii >= Asc('0') And Keyascii <=Asc('9') Or Keyascii = vbKeyBack) Then Keyascii = 0

Private Sub CmdSimpan_Keypress(KeyasciiAs Integer)
CmdSimpan.Enabled = False
TxtDibayar.SetFocus
End Sub
Private Sub cmdSimpan_Click()
MsgBox 'Tidak ada transaksi peminjaman'
Exit Sub

Dim SQLInput1 As String
SQLInput1 = 'Insert IntoPinjam(NomorPjm,TanggalPjm,TotalPjm,TotalHrg,Dibayar,Kembali,Nomoragt)'& _
'values(' &LblNomorPjm.Caption & ',' & LblTanggal.Caption &',' & LblTotalPjm.Caption & ',' &LblTotalHrg.Caption & ',' & TxtDibayar &',' & LblKembali.Caption & ',' &TxtNomorAgt & ')'

DT.Recordset.MoveFirst
If DT.Recordset!Kode <> vbNullString Then
SQLInput2 = 'Insert Into DetailPjm(NomorPjm,NomorFlm,JumlahFlm)' & _
'values (' & LblNomorPjm.Caption + DT.Recordset!Nomor& ',' & DT.Recordset!Kode & ',' & DT.Recordset!Jumlah& ')'
End If
Loop
'Pengurangan Jumlah Flm
Do While Not DT.Recordset.EOF
Call BukaDB
RSFilm.Open 'Select * from Film where NomorFlm=' &DT.Recordset!Kode & '', Conn
Dim kurangi As String
kurangi = 'update Film setstok=' & RSFilm!Stok - DT.Recordset!Jumlah & ' whereNomorFlm=' & DT.Recordset!Kode & ''
End If
DT.Recordset.MoveNext
Call Bersihkan
cmdbatal_Click

Sample Html Program Web Page

TxtNomorAgt = '
LblTotalPjm.Caption = '
LblTotalHrg.Caption = '
LblKembali.Caption = '

Set TTLPjm = New adodb.Recordset
TTLPjm.Open 'select sum(Jumlah) as JumTotal from Transaksi', Conn
End Function
Function TotalHrg()
TTLHrg.Open 'select sum(Tarif) as JumTotal from Transaksi', Conn
End Function
Private Sub cmdbatal_Click()
Form_Activate
LblNamaAgt = '
LbltelahPjm = '
TxtNomorAgt.SetFocus

Unload Me

If Keyascii = 13 Then
DG1.SelText = Right(List1, 4)
Call BukaDB
RSFilm.Open 'Select * fromFilm where nomorflm =' & Right(List1, 4) & '', Conn
If Not RSFilm.EOF Then
DT.Recordset!Judul =RSFilm!Judul
DT.Recordset!tarif =RSFilm!tarif
DT.Recordset.MoveNext
DT.Recordset.MoveLast
LblTotalHrg.Caption =Format(TotalHrg, '#,###,###')
End If
End Sub
Transaksi Pengembalian Film
Transaksi pengembalian film ini dilakukan dengan caramengetik nomor anggota kemudian memilih data film yang akan dikembalikan diDataGrid2, setelah itu pehatikanlah jumlah dendanya, jika ada denda yang harusdibayar maka isilah jumlah pembayaran dendanya. Aturan dalam denda dapat Andatentukan sendiri. Dalam program ini maksimal lama pinjam adalah 5 hari dengandenda Rp. 500,- per hari per film.
Coding :
DT.ConnectionString = 'Provider=Microsoft.Jet.OLEDB.4.0;DataSource= ' & App.Path & 'ADOVCD.mdb'
Set DG1.DataSource = DT
Call AutoNomor
Call Tabel_Kosong
DG1.Col = 1

Call BukaDB

DT.Recordset.MoveFirst
DT.Recordset.Delete
Loop
DT.Recordset.AddNew
DT.Recordset.Update
End Function
Private Sub AutoNomor()
RSKembali.Open 'select * fromkembali Where NomorKbl In(Select Max(NomorKbl)From Kembali)Order By NomorKblDesc', Conn
Dim Urutan As String * 8
With RSKembali
Urutan = Right(Date, 2) + Mid(Date,4, 2) + Left(Date, 2) + '01'
Else
If Left(!NomorKbl, 6) <>Right(Date, 2) + Mid(Date, 4, 2) + Left(Date, 2) Then
Urutan = Right(Date, 2) +Mid(Date, 4, 2) + Left(Date, 2) + '01'
Hitung = (!NomorKbl) + 1

Contoh Program Web Penyewaan Vcd Maker

Urutan = (Right(Date, 2) +Mid(Date, 4, 2) + Left(Date, 2)) + Right('00' & Hitung, 2)
End If
End With

If Val(LblDenda) = 0 Then
TxtDibayar = 0
ElseIf LblDenda = ' Then
TxtDibayar.Enabled = True
ElseIf LblDenda > 0 Then
TxtDibayar.Enabled = True
End Sub
Private SubTxtNomorAgt_KeyPress(Keyascii As Integer)
TxtNomorAgt.MaxLength = 4
If Keyascii = 27 Then Unload Me
LbltelahPjm = '
RSAnggota.Open 'Select * from anggota where nomoragt=' &TxtNomorAgt & '', Conn
LblNamaAgt.Caption = RSAnggota!Namaagt
DG1.Col = 1
MsgBox 'Nomor anggota tidak terdaftar'
Exit Sub
MsgBox '' & LblNamaAgt & ' tidak punyapinjaman'
TxtNomorAgt.SetFocus
End If
End Sub
Sub CariPinjaman()
DTCari.ConnectionString ='Provider=Microsoft.Jet.OLEDB.4.0;Data Source= ' & App.Path &'ADOVCD.mdb'
DTCari.RecordSource = 'SelectDistinct Detailpjm.Nomorpjm As [No Pjm],Film.Nomorflm As [NoFilm],Judul,Tanggalpjm As [Tgl Pjm], (Tanggalpjm+4) As [Hrs Kbl],Jumlahflm As[Jml Flm], (Date()-Tanggalpjm)+1 As [Lama Pjm] From Anggota,Pinjam,Film,DetailpjmWhere Film.Nomorflm=Detailpjm.Nomorflm AndPinjam.Nomorpjm=Left(Detailpjm.Nomorpjm,8) And Anggota.Nomoragt=Pinjam.NomoragtAnd Anggota.Nomoragt=' & TxtNomorAgt & ''
DG2.Refresh
End Sub
Private SubTxtDibayar_KeyPress(Keyascii As Integer)
If TxtDibayar = ' Or Val(TxtDibayar) < (LblDenda) Then
TxtDibayar.SetFocus
TxtDibayar = Format(TxtDibayar,'###,###,###')
LblKembali = TxtDibayar -LblDenda
LblKembali = Format(TxtDibayar- LblDenda, '###,###,###')
CmdSimpan.Enabled = True
End If
If Not (Keyascii >= Asc('0') And Keyascii <=Asc('9') Or Keyascii = vbKeyBack) Then Keyascii = 0

Private Sub CmdSimpan_Keypress(KeyasciiAs Integer)
CmdSimpan.Enabled = False
TxtDibayar.SetFocus
End Sub
Private Sub cmdSimpan_Click()
MsgBox 'Tidak ada transaksi pengembalian'
Exit Sub

Dim SQLInput1 As String
SQLInput1 = 'Insert Intokembali(Nomorkbl,Tanggalkbl,Totalkbl,Nomoragt,denda,Dibayar,Kembali)'& _
'values(' & LblNomorKbl& ',' & LblTanggalKbl & ',' &LblTotalKbl & ',' & TxtNomorAgt & ',' &LblDenda & ',' & TxtDibayar & ',' &LblKembali & ')'

DT.Recordset.MoveFirst
If DT.Recordset!NomorPjm <> vbNullString Then
SQLInput2 = 'Insert IntoDetailkbl(Nomorkbl,NomorFlm,JumlahFlm) ' & _
'values (' & LblNomorKbl + DT.Recordset!Nomor &',' & DT.Recordset!Nomorflm & ',' &DT.Recordset!Jumlah & ')'
End If
Loop
'penambahan Jumlah Film
Do While Not DT.Recordset.EOF
Call BukaDB
RSFilm.Open 'Select * from Film where NomorFlm=' &DT.Recordset!Nomorflm & '', Conn
Dim Tambah As String
Tambah = 'update Film setstok=' & RSFilm!Stok + DT.Recordset!Jumlah & ' wherenomorFlm=' & DT.Recordset!Nomorflm & ''
End If
DT.Recordset.MoveNext

DT.Recordset.MoveFirst
If DT.Recordset!NomorPjm <> vbNullString Then
RSDetailPjm.Open 'Select * from detailpjm where nomorpjm='& DT.Recordset!NomorPjm & '', Conn
Dim hapus As String
hapus = 'delete from detailpjmwhere nomorpjm =' & DT.Recordset!NomorPjm & ''
End If
DT.Recordset.MoveNext

DT.Recordset.MoveFirst
If DT.Recordset!NomorPjm <> vbNullString Then
RSPinjam.Open 'Select * from pinjam where nomorpjm=' &Left(DT.Recordset!NomorPjm, 8) & '', Conn
Dim kurangi As String
kurangi = 'update pinjam settotalpjm= ' & RSPinjam!TotalPjm - DT.Recordset!Jumlah & ' 'where nomorpjm=' & Left(DT.Recordset!NomorPjm, 8) & ' andnomoragt=' & TxtNomorAgt & ''
End If
DT.Recordset.MoveNext

Form_Activate
End Sub
Sub Bersihkan()
LblNamaAgt.Caption = '
LbltelahPjm.Caption = '
TxtDibayar = '
End Sub
Private Sub cmdbatal_Click()
Call Bersihkan
LbltelahPjm = '
End Sub
Private Sub cmdtutup_Click()
End Sub
Private Sub DG2_KeyDown(KeyCode AsInteger, Shift As Integer)
Case vbKeyReturn
Contoh
End Select

On Error Resume Next
DT.Recordset!Nomorflm = DG2.Columns(1)
DT.Recordset!Tanggal = DG2.Columns(3)

DT.Recordset!Denda = (CDate(LblTanggalKbl) - (DT.Recordset!Tanggal) - 4)* 500 * DT.Recordset!Jumlah

DT.Recordset!Denda = 0

DT.Recordset.MoveNext
DT.Recordset.MoveLast
LblDenda = Str(JmlDenda)

For i = DT.Recordset.RecordCount ToDT.Recordset.RecordCount
DT.Recordset!Nomor = i + 1
Next i

Set TTlkbl = New adodb.Recordset
TTlkbl.Open 'select sum(Jumlah) as JumTotal from Transaksi1', Conn
End Function
Function JmlDenda()
RSDenda.Open 'Select sum(Denda) asTDenda from Transaksi1 where denda>=0', Conn
End Function
Catatan:
Dalam CD pendukung kami telah melengkapi program rental VCDini dengan beberapa laporan dan rincian masing-masing transaksi, baikpeminjaman maupun pengembalian.




Search
Code Directory
ASP
ASP.NET
C/C++
CFML
CGI/PERL
Delphi
Development
Flash
HTML
Java
JavaScript
Pascal
PHP
Python
SQL
Tools
Visual Basic & VB.NET
XML
New Code
C# QR Code Generator 4.0.2.2
Salesforce WordPress Customer Portal 3.2.0
Single Leg MLM 1.2.1
OzGIS 14.6
Quick Maps For Dynamics CRM 3.1
Job Board Software 4.2
PHP Real Estate Script 1.3.2
IP2Location Geolocation Database April.2019
dbForge Data Generator for Oracle 2.1
VisualNEO Web 2018.12.15
SentiMask SDK Trial 1.0.0
OrgChart JS 4.6.4
dotConnect for BigCommerce 1.8
FedEx Smart Shipping For Magento 1.0.0
Database Workbench Pro 5.6.2.311
Top Code
VisualNEO Web 2018.12.15
Paste phpSoftPro 1.4.1
Deals and Discounts Website Script 1.0.2
ADO.NET Provider for ExactTarget 1.0
Solid File System OS edition 5.1
Classified Ad Lister 1.0
Aglowsoft SQL Query Tools 8.2
Invoice Manager by PHPJabbers 3.0
ICPennyBid Penny Auction Script 4.0
PHP Review Script 1.0
ATN Resume Finder 2.0
ATN Site Builder 3.0
Availability Booking Calendar PHP 1.0
PHP GZ Blog Script 1.1
ATN Jobs Software 4.0
Top Search
Code To Add Url
Photo Add Comment Php
Dirty Word
Guestbooks Aspnetindex
Gallery Comment
Php Banner Traffic Tracking
Guestbook Cindex
Gallery Comments
German Guestbook
Jforum Source Code
Photo Gallery Comment Php
Tele Phone Directory Iurbo Cn T
Twitter Update Script Php
Article Directory Script For Wordpress
Kike Guestbook
Related Search
Contoh Program Rental Dvd
Download Contoh Program Rental Dvd Source Codes
Contoh Program Rental Vb
Program Java Rental Dvd
Souce Code Program Penyewaan Rental Dvd
Contoh Program Visual Basic
Contoh Program Registrasi Dalam Java
Rental Dvd
Contoh Program Vb
Contoh Program Pascal Graph
Contoh Program C
Contoh Program Vbnet
Contoh Program Nasabah Bank
Contoh Program Multiple
Contoh Program Graph
Contoh Program Rental Dvd

Code 1-20 of 60 Pages: Go to 1 23Next >> page

PHP / Software and Servers

We specialize in providing tracking systems for customers, a reservation system that doubles as a tracking and selling system, and great reports. We can also add innovative features that will make you stand out in a crowd. A combination of skills, knowledge and experience has led us to design the best DVD rental software in the market today. And the best part is-our software is absolutely pocket-friendly, simple and can be doesnt take ages to...

PHP / E-Commerce / Shopping Cart Software


Commodity Rentals is the most comprehensive Online Rental Business Creator script today. It comes with a full E-Commerce Capacity and is ready to go, out of the box. It can get your Online Rentals business up and running within a matter of hours....

Development / Front Ends


An interactive program that creates a delivery list of dvd movies as inventory.Can be used as a subsitute for a non database application to store data.

Delphi / Multimedia


DVD Power Burner is leading DVD/CD burning software that burns data, audios, videos, and images to CDs or DVDs. Enhanced writing stability increases synchronization and the compatibility with other application programs and software. User-friendly...

Delphi / Tools


ABF CD Shell is a constructor set for fast creating of different CD, DVD, and other catalogue shells. You need only to create one configuration file and your shell is ready. The configuration file is a usual *.INI file with the same name as...

Commodity Rental Software Beta - Commodity Rentals


The most comprehensive online business rental software, rental system and rental solutions in the market of DVD Rentals, Video Games Rentals, Real Estate Property Rentals and Vacation Rentals.
Our team of Web Applications/ Software...

PHP / Miscellaneous


Commodityrentals is a new standard of the rental software for movie or game rental store. The online movie rental software is one of the best ways to draw more customers and offer good service. With online movie rental software, it’s possible to...

PHP / Software and Servers / Software


Online Video Rental Software System Program Video Store Software It has been designed keeping in mind the specific requirements of video rental program managers who want to combine easy usage with high productivity. Ours is a timetested and...

Development / Front Ends


JDiskCatalog is an OS independent program for cataloging CD and DVD collections. It allows for scanning disks and later browsing and searching the catalog.

Zilla CD-DVD Rip N' Burn 2.0.0.0 - TrackZapper.com


Zilla CD-DVD Rip & Burn for CD & DVD burning & ripping. Create & burn data CDs, DVDs, ISO-images, multi-session & bootable. Create & burn audio CDs easily from WAV, MP3, WMA, OGG, RAW, VOX, etc files & burn CUE-images...

Magic CD / DVD Burner for Delphi /... - Ehsan Khan


Magic CD/DVD Burner is developed to fulfill the requirement of Data CD/DVD burning needs.
Magic CD/DVD Burner Includes all the features required by the developers in such software plus more.
Features
. Add Full Featured Data...

Delphi / Installation Tools


Multi Install is an Open Source CD/DVD menu authoring system.Features:Built-in ZIP, RAR, and ACE support (unknown extensions will launch the associated program)Support for self-extracting exe filesInstall progress: Current file, all files, elapsed...

PHP / E-Commerce / Shopping Cart Software


Video games rental software and online video games rental business system script. The most comprehensive online rental business system in the market for Video Games.
General Features:
Admin Section:
Following are the...

PHP / E-Commerce / Shopping Cart Software


Online Books Rental PHP Script Software - The most comprehensive online rental business system in the market for books Rentals and eBooks Rentals.
General feature:
* No programming required.
* Set up in 5 minutes.
* Works...

Graphical Sorting Program Script 1.1 - Joe Giardino


This program graphically explains basic sorting algorithms. Included is the bubble sort, the insertion sort, the selection sort, the shell sort, and the quick sort.
There is a delay option so that the sorting can be slowed down to see...

Program Showing Histograms Script 1.1 - Yureve Govind


This program randomly generates values and stores them in a 10 element array and thereafter prints the element and value within aswell as the histogram for the element value!
By re-running this program numerous times different values...

OSS DVD extensions for cdrtools 1.4.00 - Robert M. Stockmann


OSS DVD extensions for cdrtools is a patch for cdrtools-2.0.
It has the objective to give cdrtools dvd extensions without imposed limits, and also to have a Open Source solution to burn dvd's. Currently DVD-R, DVD-RW, DVD RW and DVD R...

Program to simulate the MILLER CODE 1.0 - Diego Orlando Barragan Guerrero


Program to simulate the MILLER CODE

Tools / Development Tools


The program is writing base on the principle of the PSO algorithm,and it is used to Water quality model calibration. I have modified the program for many times ,and it is the final program I have used to calibrate the parameter oh the...

Tools / Development Tools


This program represents a further development of the standard powerful d-deDUnlinfitd-deDt facility already in matlab. The major problem with d-deDUnlinfitd-deDt is that it can only handle fitting of one dimensional arrays (x, y) where x is the...

HomeSubmit CodeTop Code SearchLast Code SearchPrivacy PolicyLink to UsContact