Click here to Skip to main content
15,883,901 members
Home / Discussions / C#
   

C#

 
GeneralRe: MessageBox with a timer? Pin
Luc Pattyn16-Apr-08 8:36
sitebuilderLuc Pattyn16-Apr-08 8:36 
GeneralRe: MessageBox with a timer? Pin
Vertekal16-Apr-08 8:53
Vertekal16-Apr-08 8:53 
GeneralRe: MessageBox with a timer? Pin
Luc Pattyn16-Apr-08 9:00
sitebuilderLuc Pattyn16-Apr-08 9:00 
GeneralRe: MessageBox with a timer? Pin
Vertekal16-Apr-08 9:57
Vertekal16-Apr-08 9:57 
QuestionObject of type 'A' cannot be converted to type 'A' with own Control. Pin
Roland Bär16-Apr-08 7:33
Roland Bär16-Apr-08 7:33 
AnswerRe: Object of type 'A' cannot be converted to type 'A' with own Control. Pin
Judah Gabriel Himango16-Apr-08 8:19
sponsorJudah Gabriel Himango16-Apr-08 8:19 
GeneralRe: Object of type 'A' cannot be converted to type 'A' with own Control. Pin
Roland Bär20-Apr-08 23:31
Roland Bär20-Apr-08 23:31 
Generalsave data to application settings Pin
Razvan Dimescu16-Apr-08 5:38
Razvan Dimescu16-Apr-08 5:38 
I gave up. How can I save back data to app settings. I'm doing it like this..but it's not working:

Configuration configManager = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
ConfigurationSectionGroup section = configManager.SectionGroups["applicationSettings"];
if (section != null)
    {
    ClientSettingsSection clientSettings = section.Sections["OutlookSync.Properties.Settings"] as ClientSettingsSection;
    if (clientSettings != null)
     {
       SettingElement element = clientSettings.Settings.Get("hello");
       element.Value.ValueXml.InnerText = "www";
       configManager.Save(ConfigurationSaveMode.Full);
     }
    }

this is the section I'm trying to read
<br />
 <applicationSettings><br />
        <OutlookSync.Properties.Settings><br />
            <setting name="hello" serializeAs="String"><br />
                <value>hello</value><br />
            </setting><br />
        </OutlookSync.Properties.Settings><br />
    </applicationSettings><br />



GeneralRe: save data to application settings Pin
Alan N16-Apr-08 7:40
Alan N16-Apr-08 7:40 
Generalread write lock in C# Pin
George_George16-Apr-08 4:51
George_George16-Apr-08 4:51 
GeneralRe: read write lock in C# Pin
Zoltan Balazs16-Apr-08 9:07
Zoltan Balazs16-Apr-08 9:07 
GeneralRe: read write lock in C# Pin
George_George16-Apr-08 17:29
George_George16-Apr-08 17:29 
GeneralRe: read write lock in C# [modified] Pin
N a v a n e e t h16-Apr-08 18:21
N a v a n e e t h16-Apr-08 18:21 
GeneralRe: read write lock in C# Pin
Zoltan Balazs16-Apr-08 19:38
Zoltan Balazs16-Apr-08 19:38 
GeneralRe: read write lock in C# Pin
N a v a n e e t h16-Apr-08 19:54
N a v a n e e t h16-Apr-08 19:54 
GeneralRe: read write lock in C# Pin
George_George17-Apr-08 1:41
George_George17-Apr-08 1:41 
GeneralRe: read write lock in C# Pin
N a v a n e e t h17-Apr-08 18:05
N a v a n e e t h17-Apr-08 18:05 
GeneralRe: read write lock in C# Pin
George_George17-Apr-08 19:32
George_George17-Apr-08 19:32 
GeneralForm window position when changing its size Pin
Blubbo16-Apr-08 4:05
Blubbo16-Apr-08 4:05 
GeneralRe: Form window position when changing its size Pin
Blubbo16-Apr-08 4:12
Blubbo16-Apr-08 4:12 
GeneralRe: Form window position when changing its size Pin
Muammar©16-Apr-08 10:03
Muammar©16-Apr-08 10:03 
QuestionHow to make a phone call? Pin
tcombs0716-Apr-08 3:56
tcombs0716-Apr-08 3:56 
AnswerRe: How to make a phone call? Pin
N a v a n e e t h16-Apr-08 4:00
N a v a n e e t h16-Apr-08 4:00 
GeneralRe: How to make a phone call? Pin
Ravenet16-Apr-08 16:10
Ravenet16-Apr-08 16:10 
AnswerRe: How to make a phone call? Pin
flippydeflippydebop16-Apr-08 4:27
flippydeflippydebop16-Apr-08 4:27 

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.