Point of Sale and Inventory System - VB 6 Version
Free Point of Sale (POS) and Inventory System.
A must have features:
- Barcode support
- Point of Sales
- Place an order (sales order or purchase order)
- Receive or deliver an order by batch
- Support for returning of orders
- Product inventory according to unit of measures
- Run the source code to appreciate the program
Note: Automatic numbering of barcode (field) is used to simulate barcoding system. Just used the correct barcode of the product if you want to use the barcoding system.
Account information:
username: admin
password: a
For the database password please read FAQ.
Download POS and Inventory System v1.0 Installer here.
Note: You need crystal reports 8.5 to run the source code. If you don't have crystal reports you can still open the source code without problem with the ocx by installing the Installer above.
As you may already know, VB 6 is not already supported by Windows 10. So if you have this version, it's better to run a virtual machine like VMWare and install Windows XP to avoid any problem.
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
Help Plz....
ito po yung laging lumalabas
re: ito po yung laging lumalabas
- SQL = "Select * from tblSubjects where Code = '" & txtCode.Text & "' or Description = '" & txtDescription.Text & "' or Unit = '" & txtUnit.Text & "' or Department = '" & cboDepartment.Text & "' order by LastName asc"
- SQL = "Select * from tblSubjects where [Code] = '" & txtCode.Text & "' or [Description] = '" & txtDescription.Text & "' or [Unit] = '" & txtUnit.Text & "' or [Department] = '" & cboDepartment.Text & "' order by LastName asc"
Sir Jay
re: Sir Jay
re: Sir Jay
can this s/w be ported to c++ ??
Printing everytime a line is entered.
re: Printing everytime a line is entered.
That is what I am doing now.
Try to help What do you mean
re: Try to help What do you mean
Yes, Incidentally the usual
Enter Key
- Private Sub txtsearch_Change()
- If txtsearch.Text = "" Then
- Me.Adodc1.CommandType = adCmdText
- Me.Adodc1.RecordSource = "Select * from PatientInfo order by lastname"
- Me.Adodc1.Refresh
- Else
- Me.Adodc1.CommandType = adCmdText
- Me.Adodc1.RecordSource = "Select * from PatientInfo where Lastname Like " & Chr(34) & Trim(txtsearch.Text) & "%" & Chr(34)
- Me.Adodc1.Refresh
- End If
- End Sub
- Private Sub txtsearch_KeyPress(KeyAscii As Integer)
- If KeyAscii = 13 Then
- If txtsearch.Text = "" Then
- MsgBox "Indicate Lastname", vbInformation, "Search"
- Else
- If Adodc1.Recordset.BOF And Adodc1.Recordset.EOF Then
- MsgBox "Patient not Found", vbInformation, "Search"
- Else
- Call load
- End If
- End If
- End If
- End Sub
hi sir ican shar the database
MySQL Support
re: MySQL Support
re: MySQL Support
re: MySQL Support
local langguge
how can i poen your database
POS System using vb
how can i open the database?
PASSWORD PLS
password databases
Barcodes...
i have a barcode labeling
visual basic 2008 POS edition
re: visual basic 2008 POS edition
Winston Churchill famous quote
Visual basic 208 Pos Edition
re: Visual basic 208 Pos Edition
nice program but still it
.database password?
HOW TO CREATE CUSTOMER DETAILS WITH PHOTO using access database
Customer Details
Add new comment
- Add new comment
- 8171 views