Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to Visual Studio. I'm currently creating a Login form.

I have this code.

string connectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
        try
        {
            using (OdbcConnection connect = new OdbcConnection(connectionString))
            {
                connect.Open();
                OdbcCommand cmd = new OdbcCommand("SELECT username, password FROM receptionist", connect);
                OdbcDataReader reader = cmd.ExecuteReader();



                if (username_login.Text == username && password_login.Text == password)
                {
                    this.Hide();
                    MessageBox.Show("Invalid User", "Login Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    this.Close();
                }
                else MessageBox.Show("Invalid User", "Login Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                connect.Close();



            }



        }

        catch (OdbcException ex)
        {
            MessageBox.Show(ex.Message, "error", MessageBoxButtons.OK, MessageBoxIcon.Error);
        }

But whenever I try to type in the username and password there is an error called Configuration system failed to initialize. I'm just wondering what kind of problem is this and how could I solve this?

Please help.

share|improve this question
Just another scenario - If you are looking for ConfigurationManager.Appsettings[""], make sure that the <appSettings> is present in the config. Otherwise you will get this exception – Lijo Feb 19 at 7:47

2 Answers

up vote 71 down vote accepted

make sure that your config file (web.config if web, or app.config if windows) in your project starts as:

<?xml version="1.0"?>
<configuration>
   <configSections>
      <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
      <section name="yourProjectName.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>

note that inside the "configuration" element, the first child must be the "configSections" element.

it happened to me that I created a webservice in a classlibrary project, then I copied (overwriting) the config file (in order to bring the endpoints configuration) to my windows app and I starting to have the same problem. Inadvertently I had removed the "configSections"

in the section name you have to replace the text "yourProjectName" with your actual project's name.

it worked for me, hope it helps

share|improve this answer
+1 thanks for this tip!! – Jeremy Thompson Nov 18 '11 at 0:52
5  
"inside the 'configuration' element, the first child must be the 'configSections' element" << this was the crucial point for me. Thanks. – demoncodemonkey Dec 19 '11 at 17:41
+1 for awesome answer! – Hanlet Escaño Jan 27 at 23:49
1  
Just another scenario - If you are looking for ConfigurationManager.Appsettings[""], make sure that the <appSettings> is present in the config. Otherwise you will get this exception – Lijo Feb 19 at 7:46
you deserve +1 :) – Abdul Saboor Mar 25 at 8:37
show 1 more comment

Delete old configuration files from c:\Users\username\AppData\Local\appname and c:\Users\username\AppData\Roaming\appname and then try to restart your application.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.