Hello All,
I need advice on best practices in 2 areas of Windows forms.
In my VS 2008 solution I have a project myprogWin which contains all my rms and UI components. In each user control is it best to use the Namespace keyword. For example should I have "Namesspace myprojWin" as the first line or by having all Windows form components in a seperate project reduce the need for this. What is the best practice in this regard?
2) Is it preferred to qualify your object names or should I add import statements at the top of my classes like:
Imports System
Imports System.Data
or should I do this in the Visual Studio references dialog which seems hidden. What is best practices for this. What are others doing.
Thanks in advance.
I need advice on best practices in 2 areas of Windows forms.
In my VS 2008 solution I have a project myprogWin which contains all my rms and UI components. In each user control is it best to use the Namespace keyword. For example should I have "Namesspace myprojWin" as the first line or by having all Windows form components in a seperate project reduce the need for this. What is the best practice in this regard?
2) Is it preferred to qualify your object names or should I add import statements at the top of my classes like:
Imports System
Imports System.Data
or should I do this in the Visual Studio references dialog which seems hidden. What is best practices for this. What are others doing.
Thanks in advance.