Billing Software
The source code contain advance coding specially on how to manipulate data using SQL Language. You will appreciate how I use the WHERE Clause statement to SELECT, INSERT, UPDATE record from the database using a combination of sql statement.
Basic features include:
- Monthly Charges
- Receive Payment
- Customer Ledger
- Collectibles
- Paid Charges
- Payment History
- Reporting
- And a lot more...
Account information
username: admin
password: a
For the database password please read FAQ.
Download Billing System v1.0 Installer here.
Note: If you come from pscode.com just to download the ocx file please download the full source code below. The ocx file is included in the zip file.
Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
Comments
re: Quotedtext
voting system
re: voting system
Billing System
About compiling
visual basic
Data report Printing Problem
ms access version
pls help me pls!
PHP code for online invoicing and online payment
code for online invocing and payment
invoicing, paypal integration
how to online shopping with credit card
Crystal reports problem
Sql function
re: Sql function
Quotedtext function
re: Quotedtext function
qouted text
re: qouted text
- Public Function QuotedText(ByVal strText As String) As String
- Dim strOut As String
- Dim X As Integer
- If InStr(strText, "'") = 0 Then
- ' no single quote found -- use them
- strOut = "'" & strText & "'"
- ElseIf InStr(strText, Chr$(34)) = 0 Then
- ' single but no double -- use doubles
- strOut = Chr$(34) & strText & Chr$(34)
- Else
- ' double-up single quotes
- X = InStr(strText, "'")
- Do While X
- strOut = Left$(strText, X) & "'" & Mid$(strText, X + 1)
- strText = strOut
- X = InStr(X + 2, strText, "'")
- Loop
- strOut = "'" & strText & "'"
- End If
- ' the DB engine also dislikes pipe characters so I lose them...
- X = InStr(strText, "|")
- Do While X > 0
- Mid$(strOut, X, 1) = "!"
- X = InStr(strOut, "|")
- Loop
- QuotedText = strOut
- End Function
billing system
jonny
Urgent Help
re: Urgent Help
inventory using java code
Billing System
Billing System
billing soft ware
password
this is the error sir
Bug or what?
PAyment history and collectibles give problem
PAyment history and collectibles give problem
help
Generate all billing
sir can u help me on our project
Add new comment
- Add new comment
- 8031 views