Click here to Skip to main content
15,917,005 members
Home / Discussions / C#
   

C#

 
GeneralRe: Random road path Pin
Judah Gabriel Himango4-Sep-06 7:04
sponsorJudah Gabriel Himango4-Sep-06 7:04 
QuestionMulti Language Windows Forms 2.0 Pin
Talal Sultan4-Sep-06 5:37
Talal Sultan4-Sep-06 5:37 
AnswerRe: Multi Language Windows Forms 2.0 Pin
Nader Elshehabi4-Sep-06 6:14
Nader Elshehabi4-Sep-06 6:14 
Questionform at the top Pin
TAREQ F ABUZUHRI4-Sep-06 5:33
TAREQ F ABUZUHRI4-Sep-06 5:33 
AnswerRe: form at the top Pin
mikone4-Sep-06 5:43
mikone4-Sep-06 5:43 
GeneralRe: form at the top Pin
Nader Elshehabi4-Sep-06 7:12
Nader Elshehabi4-Sep-06 7:12 
GeneralRe: form at the top Pin
mikone4-Sep-06 22:28
mikone4-Sep-06 22:28 
GeneralRe: form at the top Pin
Nader Elshehabi5-Sep-06 0:59
Nader Elshehabi5-Sep-06 0:59 
GeneralRe: form at the top Pin
mikone5-Sep-06 1:46
mikone5-Sep-06 1:46 
AnswerRe: form at the top Pin
Nader Elshehabi4-Sep-06 6:09
Nader Elshehabi4-Sep-06 6:09 
QuestionOpportunistic File locks (OpLocks) Pin
dlaw14894-Sep-06 5:31
dlaw14894-Sep-06 5:31 
Questionhandle animated GIF Pin
TAREQ F ABUZUHRI4-Sep-06 5:27
TAREQ F ABUZUHRI4-Sep-06 5:27 
AnswerRe: handle animated GIF Pin
Nader Elshehabi4-Sep-06 6:06
Nader Elshehabi4-Sep-06 6:06 
GeneralRe: handle animated GIF Pin
Guffa4-Sep-06 8:25
Guffa4-Sep-06 8:25 
GeneralRe: handle animated GIF Pin
Guffa4-Sep-06 8:29
Guffa4-Sep-06 8:29 
Questionglobal settings Pin
e_LA4-Sep-06 4:43
e_LA4-Sep-06 4:43 
AnswerRe: global settings Pin
Colin Angus Mackay4-Sep-06 4:50
Colin Angus Mackay4-Sep-06 4:50 
GeneralRe: global settings Pin
e_LA4-Sep-06 5:02
e_LA4-Sep-06 5:02 
GeneralRe: global settings Pin
Colin Angus Mackay4-Sep-06 9:19
Colin Angus Mackay4-Sep-06 9:19 
GeneralRe: global settings Pin
e_LA4-Sep-06 22:06
e_LA4-Sep-06 22:06 
GeneralRe: global settings Pin
e_LA4-Sep-06 23:09
e_LA4-Sep-06 23:09 
GeneralRe: global settings Pin
Colin Angus Mackay7-Sep-06 9:25
Colin Angus Mackay7-Sep-06 9:25 
GeneralRe: global settings Pin
e_LA5-Sep-06 0:13
e_LA5-Sep-06 0:13 
GeneralRe: global settings Pin
Colin Angus Mackay7-Sep-06 9:26
Colin Angus Mackay7-Sep-06 9:26 
GeneralRe: global settings Pin
e_LA5-Sep-06 4:01
e_LA5-Sep-06 4:01 
Colin,

Could you provide me with any example for such a specific project?

I have one class e.g.

public class MyAppSettings : ApplicationSettingsBase
{
[UserScopedSetting()]
[DefaultSettingValueAttribute("true")]
[global::System.Configuration.ApplicationScopedSettingAttribute()]
public bool someProperty
{
get { return (bool)this["someProperty"]; }
set { this["someProperty"] = value; }
}

Then I have to create a project dealing with the setting. I suppose it should contain class with static properties??
Could you give me an example?

Thanks
Ela

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.