Architecture
Visual J#
Visual FoxPro
SQL Server
Visual C#
VS Team System
Windows Forms
Windows Vista
Windows Live
Microsoft ISV
Visual Basic
Visual Studio
Visual C++
Game Technologies
Smart Device
Software Development Network>> Windows Forms>> The type or namespace name 'DSN' could not be found
The type or namespace name 'DSN' could not be found
Hot Topic
Setup Project: How do I make a dialog conditional?
Could not find file 'Microsoft.Windows.CommonLanguageRuntime, Version=2.0.50727.0'
How to load a very large image data
Capture Icons
toolstrip progressbar
I don't know how to deserialize multiples objects from a binary file - help!
quick way of detecting if any changes have been made to form
fast loading datagrid and combo
Displaying non-characters in text
Unselect item from a listbox
Windows Forms
Locked Up Form
Not able to find a window handle to Microsoft object embedded in a COM component
Added unbound grid rows are blank
How can I measure the inner available space of an MDI window?
Called Forms referencing calling Forms controls
Condition and Custom Action Problem with uninstall
Click Once Problem
RichTextBox control indent problem
INI files
Open a child from a child but also from the parent
The type or namespace name 'DSN' could not be found
Source Error:
Line 33: return;
Line 34:
Line 35: using(SqlConnection myConnection = new SqlConnection(DSN.SpeciesDSN)) {
Line 36: myConnection.Open();
Line 37:
What's wrong
Answer this question
The type or namespace name 'DSN' could not be found
malebocks
I'm getting this error on http://localhost/terrarium/administartion/blacklist.aspx page.
Chris Trobridge
It means that the compiler doesn't know what DSN is. To debug, figure out what DSN refers to (looks like it's a class). To fix, try fully qualifying the name.
The type or namespace name 'DSN' could not be found
Answer this question
The type or namespace name 'DSN' could not be found
malebocks
Chris Trobridge