Can any one help me to design a User friendly Form in VB.net

Aiby

Member
Joined
Aug 15, 2005
Messages
12
Location
India
Programming Experience
5-10
For the prupose to Define a Classification of Books!

The form shold help the user to define a classificaition structure of Books.

Such as

Classification - Name
Sub Classification
Sub Classification Item , Discription

eg:-

Science
Physics
Thermal Physics
Dynamics
Opticals
Chemistry
Organic Chemistry
Bio-Chemistry
Eglish Literature
Indian Literature
-----
-----
----
-----
-----

Form should permit the user to save this structur and view and edit!
When user select Science it should list all Sub Classification and if any Sub Classification is Selected it should list its respective Sub Classification List And Description


Please i did one form... dont ask me how it was looking...!!!

can any one help me.. can send form in mail attach to Aibydas@Gmail.com or in Aiby@Hotmail.com
 
I think what you need is a form with a TreeView on the leftside and a DataGrid on the left top side... On the left bottom side, you can put a multiline textbox. On the TreeView, you list all the classifications/categories. When user clicks on it, list the items related to the classifications/categories in the datagrid. When user clicks on the datagrid, you can put extra description on the textbox underneath it.

Viewing, editing and saving is how you design your software. I do not know what component did you use in your app, but I think this is the common one which is neat and and friendly to users.
 
Back
Top