Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Need to access value from app.config file

Need to access value from app.config file

Scheduled Pinned Locked Moved C#
question
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Shilpa1
    wrote on last edited by
    #1

    Hi, I am trying to use the settings.designer.cs file for a value that needs to be put into the app.config file. My config(auto-generated by VS2005) file now looks like this:

    C:\Web\App_Data\Messages.mdb; From the code when i access this property i am using this code: Settings1 set = Settings1.Default; string str = set.DatabasePath; return str; The above line of code returns null... can anyone explain what am i missing here???

    C 1 Reply Last reply
    0
    • S Shilpa1

      Hi, I am trying to use the settings.designer.cs file for a value that needs to be put into the app.config file. My config(auto-generated by VS2005) file now looks like this:

      C:\Web\App_Data\Messages.mdb; From the code when i access this property i am using this code: Settings1 set = Settings1.Default; string str = set.DatabasePath; return str; The above line of code returns null... can anyone explain what am i missing here???

      C Offline
      C Offline
      Craig G Fraser
      wrote on last edited by
      #2

      Try this: Properties.Settings set = Properties.Settings.Default; string str = set.DatabasePath; return str; or simply return Properties.Settings.Default.DatabasePath;

      Cheers, Craig ** I'd rather try and fail than fail to try ;) **

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups