And by adding properties I mean right-click the project and select properties, go to the settings tab, add one or more rows to the list of settings.
Main Topics
Browse All TopicsI have a project in which I cannot access the Properties namespace, which means I can't access Properties.Settings.Defaul
This is possible in all my other projects, but not in this one... and I can't figure out why.
So when I type Prop, the intellisense does not show Properties.
What can I do to resolve this? Please help if you know, thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
OK, I got it. I could not see Properties in the intellisense because all my code has been shoved into different namespaces. Although I only had one properties folder, which had one settings folder, the intellisense did not know which namespace my properties belonged to.
Out of desperation, I took a casual look at this file in my project: app.config, where I found this line: <GridInterfacePrototype.Pro
And that made me realize, made it need to type the namespace first... still not sure why... but that does work.
Thanks for trying though.
On the settings tab you can click the View Code thing at the top. Try that and look at the class definition. It will start with something like this:
namespace Reporting.Properties {
In my case, my project was Reporting. I'd guess you must have renamed something so that your properties are in a namespace that you don't have a using for yet.
Business Accounts
Answer for Membership
by: mastooPosted on 2009-03-03 at 10:49:43ID: 23786919
Have you added any properties to your project yet? I believe the class doesn't get generated until you do so.