Adding Rows to Data-Bound DataGridView

Submitted by admin on
If you are using a Data-Bound DataGridView control, you cannot just simply add new row by using the cell property of the control. A DataGridView that is bound using a DataSet can be access only using the DataSet properties. Forcing it to use the cell property can cause an error "Rows cannot be programmatically added to the DataGridView's rows collection when the control is data-bound." Adding new

Automated Voting System

Submitted by solnel on
This is Automated Voting System created in Visual Basic 6.0. It can generate reports like canvassing report and voters report(tracking of which year and section has the most and least number that participate). The system is also capable of generating unique Student ID and password. Administrator: [username-"admin"; password-"admin000"] Try it to believe it. (-_^)

CharCount, GetFirstWord, SortSentense, CountDays VB.NET

Submitted by FnameLname on
My Job Exam that i Fail because... i am no longer familiar with VB6.0 and i didn't expect it... because i applied for a VB.NET programmer... an Entry-Level... and then they give me that exam, i didn't say anything like... "Why you're giving me this kind of exam? i thought it was a vb.net exam? this is not what i'm applying for..." i just keep silence and take the exam because i'm nervous ^_^ So

Online Public Access Catalog

Submitted by divineninja on
A simple PHP program that can create(back-end) and search(front-end) learning resources. it uses jQuery-ajax and basic php script. admin usename : admin admin password : admin123 Database Connection host : localhost username : admin_opac password : admin_opac Guidelines : 1. create privilege in phpmyadmin. (username and password listed above) 2. sql is located in /sql/admin_opac.sql 3. or change

Online Hotel Reservation System V 2.0

Submitted by argie on
In this code you will learn on how to create an online hotel reservation system using php. you will also learn on how to create an input validation using javascrpit. you will also lear on how to create online payment using paypal. this is the version 2.0 of my online reservation system version 1.0, to view the version 1.0 of this system click here. to see also the working demo of this system click

Point of Sale and Inventory System using Barcode

Submitted by mindgamez on
This system is mainly for the stores that are using barcode scanner. Can print custom barcodes for products that don't have one. For other features view here http://websyntax.blogspot.com/2012/02/point-of-sale-and-inventory-system.html admin user credentials username: admin password: admin cashier user credentials: username: neil password: 1234 Hope this helps. ^_^

Online Membership and Billing System

Submitted by mindgamez on
A PHP and jQuery Powered Web Application. Click here for guidelines: http://websyntax.blogspot.com/2012/02/online-membership-and-billing-system.html admin user: admin admin pass: 123 member user: kat member pass: kat zip pass: membership123 if you found any problems or bugs, just throw a comment. Happy coding. ^_^

How to Capture Enter Key or Return Key as Tab in Windows Form

Submitted by admin on
By default VB.NET and C# does not listen on the enter key or return key when you press your keyboard. Those it will not move your cursor to the next control like text box. Instead a tab key is used to navigate to other control in your windows form. A simple ProcessCmdKey Overrides function is necessary to capture this event. Allowing you to use the Tab key as the enter/return key equivalent. Here