Lock Desktop
20:58 | 0 Comments
1. You can lock(unlock) your desktop
2. Hide /rename the start button
3. Hide the Notifywindow and also hide the clock.
2. Hide /rename the start button
3. Hide the Notifywindow and also hide the clock.
Quiz
01:00 | 0 Comments
A quiz software which has only two forms. One is for getting the User details and another is for showing the current question. Options and tome left, username, current score etc..
This is open source project, so you can change the source code according to your needs.
This is open source project, so you can change the source code according to your needs.
Database Editor
21:23 | 0 Comments
In This Application you can add, delete, edit records in any mdb database using this program.
Download And Enjoy Friends...
In this application u can send mail but only one condition is that you must have the G-mail A/c.
You can also send mail via other a/c u have to change only the
"smtpServer.Port,smtpServer.Host" of the application.
In this application u can send mail but only one condition is that you must have the G-mail A/c.
You can also send mail via other a/c u have to change only the
"smtpServer.Port,smtpServer.Host" of the application.
PDF Reader
21:29 | 0 Comments
Using this application, we can able to open multiple pdf document at a time unlike adobe reader.......
DataGridView
10:53 | 1 Comments
In This Application How to Add, Update, Delete Record with Search In DataGridView.
Library System
23:12 | 0 Comments
Library management System is a small program to manage library which includes the task of:-
1) Adding new users, books and magazines/newspapers.
2) Updating Users, books and magazines/newspapers.
3) Issuing Books.
4) Collecting Books back.
5) Searching for books, users.
Comments are most welcome
1) Adding new users, books and magazines/newspapers.
2) Updating Users, books and magazines/newspapers.
3) Issuing Books.
4) Collecting Books back.
5) Searching for books, users.
Comments are most welcome
Maze! Game
11:05 | 0 Comments
This application shows how to make a Maze! game. That alerts when you either touches a wall or reaches at finish point with your mouse pointer. Make new exciting mazes and have fun with your friends. Comments are most welcome!
this is a chatting application which let you chat on LAN, two files are available in this application, first is ChatServer run it first and press "Run" button to activate the Server and then run ChatClient and put your nickname at the top and press confirm button then press "Connect To Main Server" button, Now you are able to chat with each other.. Hope it will be helpful for you guys....
Image Resizer
10:21 | 0 Comments
This is image resizer application which let you select the source folder containing images in it and then resize it to your specified resolution...
DevExprees Controls Setup
05:38 | 0 Comments
DevExprees controls is the latest controls. It is very useful for you in Visual basic 2010.It is very Nice Controls.
DevExpress All controls are very attractive.
DevExpress All controls are very attractive.
Filter in datagridview
12:11 | 0 Comments
Using the Code
This is for eager people. The promised "few lines of code" are just one. Add the DgvFilterPopup.dll to your references. Write somewhere a line like this:Collapse
DgvFilterManager filterManager = new DgvFilterManager(dataGridView1);
That's all. Your grid is now able to filter the column values. Right-click on the column headers to see a popup with different filtering features, based on the clicked column data type.This is one of the
DgvBaseColumn
Filter standard implementations. It's composed of a combobox containing a list of operators and a textbox in which to type the value of the filter. This column filter is used by default with DataGridViewTextBoxColumn
s, except when the bound data type is DateTime
. The list of available operators is different between string types and numeric types.A standard implementation for the filtering of checkbox columns. The only available operators are the equal and the general null and not null operators.
A standard implementation for the filtering of combobox columns. By default, on textbox columns, the filter manager uses
DgvTextBoxColumn
Filter instances. However, you can force an instance of DgvComboBoxColumn
Filter on such columns. In this case, the DgvComboBoxColumn
Filter instance automatically creates a distinct list of values from the column data. You should do an explicit call to the RefreshValues()
method when the underlying data changes.Note: Your grid must be data-bound to a
DataView
, DataTable
, or a BindingSource
resolving to one of these two.