Click here to Skip to main content
15,891,905 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to create a application like tally functionalists like using only keyboard without the help of mouse in MS. NET platform in visual studio 2008. So what to do? plzz any one help me out...
Posted

You write code. If you have no idea how to even start, you buy a book or read some online tutorials. There is no real answer to this question, it basically says 'I am clueless, give me the answer', without even defining the question. Forms have keyboard events, how you handle them, is in your control.
 
Share this answer
 
Well, start by:
1) Double click on Visual Studio on your desktop. If you don't have an icon, ask mummy to help you put one there.
2) When it loads, look at the menu bar. Use "File...New...Project"
3) In the dialog, select "Visual C#" in the tree view on teh left, and "Windows Forms Application" on the right.
4) Give it a sensible name, and press OK.


After that, design the application UI, and the Business Layer, and Data Access Layer, then implement them.
Test, and you are done!
 
Share this answer
 
Comments
Toniyo Jackson 28-Jun-11 5:18am    
LOL!!! Nothing is better than this :)
You can use TabIndex property to manage control sequence
 
Share this answer
 
On Form Load call ::Cursor::Hide(), Which will hide the mouse cursor. Give the proper TabIndex to all controls so you can use them with the keyboard like Tally.
 
Share this answer
 
Comments
OriginalGriff 28-Jun-11 5:24am    
Regrettably, this doesn't work in C#. (You need Cursor.Hide() instead) :laugh:

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900