Hi there,
In my project I have 3 folders which represent the 3 tier architecture.(the business layer, data access layer and the presentation layer)
The frmMainMenu is in the presentation layer and in the presentation layer I have other folders that have other forms in it.
When I try to access a form with in the folder in the presentation layer to the frmMainMenu I have to add each package
As
1.
using Admin_Application.PresentationLayer.Proposal_in_Progress;
using Admin_Application.PresentationLayer.Proposals_Submitted;
why dosen’t it allow me to use
2.
using Admin_Application.PresentationLayer.*;
can’t I use it the second way??
thanxxxxxx