Click here to Skip to main content
15,900,480 members
Home / Discussions / C#
   

C#

 
GeneralRe: Hooking into old DLL Pin
rahvyn612-Oct-06 2:32
rahvyn612-Oct-06 2:32 
GeneralRe: Hooking into old DLL Pin
Judah Gabriel Himango12-Oct-06 6:16
sponsorJudah Gabriel Himango12-Oct-06 6:16 
QuestionOpen external application in form? Pin
JohnBond31111-Oct-06 11:20
JohnBond31111-Oct-06 11:20 
AnswerRe: Open external application in form? Pin
Anthony Mushrow11-Oct-06 14:41
professionalAnthony Mushrow11-Oct-06 14:41 
AnswerRe: Open external application in form? Pin
Amar Chaudhary11-Oct-06 15:07
Amar Chaudhary11-Oct-06 15:07 
QuestionSetting readonly status of a datagrid on a row by row basis? Pin
Dan Neely11-Oct-06 9:53
Dan Neely11-Oct-06 9:53 
QuestionC# Class Library - Updating Application Settings Pin
birdman123411-Oct-06 9:42
birdman123411-Oct-06 9:42 
AnswerRe: C# Class Library - Updating Application Settings Pin
mikanu11-Oct-06 10:37
mikanu11-Oct-06 10:37 
you can always create an XmlDocument object and load up the settings file and make the changes manually. For web applications I know there's a way to change the config file but I'm not sure if it will work in your case. Here's how I did it for my web application:

<br />
Configuration config = ConfigurationManager.OpenExeConfiguration("");        <br />
ConfigurationSection section = config.Sections["connectionStrings"];<br />
<br />
// you can use the section information here such as<br />
//   section.SectionInformation.UnprotectSection();<br />
<br />
// then make sure to save the changes to the file<br />
config.Save();<br />


and that's it


GeneralRe: C# Class Library - Updating Application Settings Pin
birdman123411-Oct-06 11:05
birdman123411-Oct-06 11:05 
Questionband Limit Ethernet Pin
Luciano Marques Inacio11-Oct-06 9:36
Luciano Marques Inacio11-Oct-06 9:36 
QuestionDataGrid resizable with changing column numbers Pin
Calma11-Oct-06 8:45
Calma11-Oct-06 8:45 
QuestionKey Board Specifications (Key Codes) Pin
Syed Shahid Hussain11-Oct-06 7:45
Syed Shahid Hussain11-Oct-06 7:45 
AnswerRe: Key Board Specifications (Key Codes) Pin
led mike11-Oct-06 8:08
led mike11-Oct-06 8:08 
GeneralRe: Key Board Specifications (Key Codes) Pin
Dan Neely11-Oct-06 8:27
Dan Neely11-Oct-06 8:27 
GeneralRe: Key Board Specifications (Key Codes) Pin
Syed Shahid Hussain11-Oct-06 8:36
Syed Shahid Hussain11-Oct-06 8:36 
GeneralRe: Key Board Specifications (Key Codes) Pin
Dave Kreskowiak11-Oct-06 9:12
mveDave Kreskowiak11-Oct-06 9:12 
GeneralRe: Key Board Specifications (Key Codes) Pin
Dan Neely11-Oct-06 9:40
Dan Neely11-Oct-06 9:40 
GeneralRe: Key Board Specifications (Key Codes) Pin
Nader Elshehabi13-Oct-06 14:26
Nader Elshehabi13-Oct-06 14:26 
GeneralRe: Key Board Specifications (Key Codes) Pin
Syed Shahid Hussain13-Oct-06 20:47
Syed Shahid Hussain13-Oct-06 20:47 
GeneralRe: Key Board Specifications (Key Codes) Pin
Syed Shahid Hussain11-Oct-06 8:29
Syed Shahid Hussain11-Oct-06 8:29 
AnswerRe: Key Board Specifications (Key Codes) Pin
Amar Chaudhary11-Oct-06 15:17
Amar Chaudhary11-Oct-06 15:17 
Questiondatalist [modified] Pin
Ah_Mohsen_aly11-Oct-06 7:02
Ah_Mohsen_aly11-Oct-06 7:02 
AnswerRe: datalist Pin
Nader Elshehabi13-Oct-06 14:28
Nader Elshehabi13-Oct-06 14:28 
QuestionDICOM ... Pin
mostafa_h11-Oct-06 6:53
mostafa_h11-Oct-06 6:53 
Questioncsc usage Pin
waheed awan11-Oct-06 6:48
waheed awan11-Oct-06 6:48 

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.