Click here to Skip to main content
15,905,963 members
Home / Discussions / C#
   

C#

 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
chiky_ancutza2-Mar-10 7:27
chiky_ancutza2-Mar-10 7:27 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
Covean2-Mar-10 20:33
Covean2-Mar-10 20:33 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
chiky_ancutza3-Mar-10 2:40
chiky_ancutza3-Mar-10 2:40 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
Covean3-Mar-10 3:02
Covean3-Mar-10 3:02 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
chiky_ancutza3-Mar-10 5:35
chiky_ancutza3-Mar-10 5:35 
GeneralRe: OUTLFLTR.DLL library - need an answer Pin
Covean4-Mar-10 0:05
Covean4-Mar-10 0:05 
QuestionQuickTime Audio peak detection Pin
survcopt2-Mar-10 4:57
survcopt2-Mar-10 4:57 
Questionnamespace - automatically created, now not recognized Pin
lukeer2-Mar-10 4:44
lukeer2-Mar-10 4:44 
Hi Experts,

I created a program in Visual Studio 2008 Standard. I left the namespace with standard MyProgram. I created some classes like this one
namespace MyProgram
{
    /// <summary>
    /// A Class
    /// </summary>
    public class MyDerivedPanel:Panel
    {
        // Some content
    }
}

Die werden dann in Form1.Designer.cs behandelt
namespace MyProgram
{
    partial class Form1
    {
        // ...
        private void InitializeComponent()
        {
            // Now we are coming to the error
            this.myDerivedPanel1 = new MyProgram.MyDerivedPanel();
        }

     private MyDerivedPanel myDerivedPanel1;
}

At the mentioned line, Visual Studio claims to have found an error at compile time:
<quote>Error 7 The type "MyDerivedPanel" does not exist in type "MyProgram.MyProgram"
(vaguely translated from german version)
I can delete the namespace including its "." from the erroring line and all works fine. But Visual Studio Designer re-inserts the namespace every time I change something in the Designer.
Having more than one class with this problem, deleting those namespaces gets annoying.

Is that a known issue?
Is there a known solution?
Ciao,


luker

AnswerRe: namespace - automatically created, now not recognized Pin
Dan Mos2-Mar-10 5:27
Dan Mos2-Mar-10 5:27 
AnswerRe: namespace - automatically created, now not recognized Pin
Luc Pattyn2-Mar-10 5:35
sitebuilderLuc Pattyn2-Mar-10 5:35 
GeneralRe: namespace - automatically created, now not recognized Pin
Som Shekhar2-Mar-10 7:46
Som Shekhar2-Mar-10 7:46 
AnswerRe: namespace - automatically created, now not recognized Pin
Paulo Zemek2-Mar-10 10:05
Paulo Zemek2-Mar-10 10:05 
GeneralRe: namespace - automatically created, now not recognized Pin
lukeer2-Mar-10 20:37
lukeer2-Mar-10 20:37 
GeneralRe: namespace - automatically created, now not recognized Pin
Paulo Zemek3-Mar-10 1:21
Paulo Zemek3-Mar-10 1:21 
GeneralRe: namespace - automatically created, now not recognized Pin
lukeer3-Mar-10 20:45
lukeer3-Mar-10 20:45 
QuestionHow do you check the validity of a file type? Pin
sunlord_clave2-Mar-10 3:50
sunlord_clave2-Mar-10 3:50 
AnswerRe: How do you check the validity of a file type? Pin
PIEBALDconsult2-Mar-10 3:57
mvePIEBALDconsult2-Mar-10 3:57 
AnswerRe: How do you check the validity of a file type? Pin
Dave Kreskowiak2-Mar-10 3:57
mveDave Kreskowiak2-Mar-10 3:57 
AnswerRe: How do you check the validity of a file type? Pin
dan!sh 2-Mar-10 4:11
professional dan!sh 2-Mar-10 4:11 
Questionweb cam with sound recording to avi [modified] Pin
sanforjackass2-Mar-10 2:09
sanforjackass2-Mar-10 2:09 
AnswerRe: web cam with sound recording to avi Pin
Dave Kreskowiak2-Mar-10 3:55
mveDave Kreskowiak2-Mar-10 3:55 
QuestionOptional parameter declaration in C3 3.5 Pin
abcurl2-Mar-10 1:50
abcurl2-Mar-10 1:50 
AnswerRe: Optional parameter declaration in C3 3.5 Pin
Not Active2-Mar-10 1:55
mentorNot Active2-Mar-10 1:55 
GeneralRe: Optional parameter declaration in C3 3.5 Pin
Kevin McFarlane2-Mar-10 2:05
Kevin McFarlane2-Mar-10 2:05 
JokeRe: Optional parameter declaration in C3 3.5 Pin
Not Active2-Mar-10 2:16
mentorNot Active2-Mar-10 2:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.