Wednesday, 19 December 2012 13:44

Organizing files in folders in VS solution project

Written by 
Rate this item
(0 votes)

when you build a software make sure that you built it by object oriented way
and you organized your files in folders as following way -

1.click solution explorer to open solution explorer window in visual studio

2.right click on the project->Add->NewFolder.

3.rename your folders as DAL(means-Data access Language),DAO(data access objects),
Ui(user interface),Utility(extra things to make project understandable),Gateway,
Manager,others...as needed

4.place your object(student,customer etc.) class files in DAO folder because
DAO means Data Access Objects.in this way place all files which relates to
accessing data,retrieving data...

5.place all Form design files in UI folder because it means User interface.

6.place all files in Utility folder which are used to enhance program like displaying
the status message when a new customer info form is filled successfully.

7.in this way you can organize others files into specific folders according to their
meaning & tasks.

8.one thing-all data access folders including DAO folder will be placed under DAL folder
for clarifying that those are under DAL.

Read 2843 times
Super User

Email This email address is being protected from spambots. You need JavaScript enabled to view it.

Latest discussions

  • No posts to display.