Click here to Skip to main content
15,887,346 members
Home / Discussions / C#
   

C#

 
QuestionAnyone worked with Microsoft.Office.Interop.MSProject? Pin
ziwez07-Apr-10 8:29
ziwez07-Apr-10 8:29 
AnswerRe: Anyone worked with Microsoft.Office.Interop.MSProject? Pin
William Winner7-Apr-10 12:27
William Winner7-Apr-10 12:27 
QuestionChanging the text properties of a text box. Pin
Darrall7-Apr-10 8:18
Darrall7-Apr-10 8:18 
AnswerRe: Changing the text properties of a text box. Pin
OriginalGriff7-Apr-10 8:30
mveOriginalGriff7-Apr-10 8:30 
GeneralRe: Changing the text properties of a text box. Pin
Darrall7-Apr-10 9:04
Darrall7-Apr-10 9:04 
GeneralRe: Changing the text properties of a text box. Pin
OriginalGriff7-Apr-10 9:35
mveOriginalGriff7-Apr-10 9:35 
GeneralRe: Changing the text properties of a text box. Pin
Darrall7-Apr-10 10:00
Darrall7-Apr-10 10:00 
GeneralRe: Changing the text properties of a text box. Pin
OriginalGriff7-Apr-10 22:02
mveOriginalGriff7-Apr-10 22:02 
Please ignore the previous post - I was in a hurry, and cocked it up completely!

Don't use App.Config, use Settings.Settings instead (App.config will work, but it is harder to save new values, the way I described does not work!)

1) Open your projects Properties in the solution explorer, and double click on "Settings.settings"
2) In the resulting grid, change the Name to "MySetting", and set the Value to "Defaulted value". Leave Type and Scope as sting and User respectively.
3) Save and close the settings window.
4) To read your setting:
string s = Properties.Settings.Default.MySetting;
5) To write your setting:
Properties.Settings.Default.MySetting = "My new setting value";
Properties.Settings.Default.Save();

Sorry about that - in my defence I was in hurry!
You should never use standby on an elephant. It always crashes when you lift the ears. - Mark Wallace

C/C++ (I dont see a huge difference between them, and the 'benefits' of C++ are questionable, who needs inheritance when you have copy and paste) - fat_boy

GeneralRe: Changing the text properties of a text box. Pin
Darrall8-Apr-10 5:10
Darrall8-Apr-10 5:10 
GeneralRe: Changing the text properties of a text box. Pin
OriginalGriff8-Apr-10 5:23
mveOriginalGriff8-Apr-10 5:23 
GeneralRe: Changing the text properties of a text box. Pin
Darrall8-Apr-10 7:22
Darrall8-Apr-10 7:22 
Questionproblem when running a delay signed assembly in another pc Pin
prasadbuddhika7-Apr-10 6:33
prasadbuddhika7-Apr-10 6:33 
QuestionWhile Loop sucking up all processor's cpu cycles Pin
BuggingMe7-Apr-10 6:17
BuggingMe7-Apr-10 6:17 
AnswerRe: While Loop sucking up all processor's cpu cycles Pin
Not Active7-Apr-10 6:41
mentorNot Active7-Apr-10 6:41 
GeneralRe: While Loop sucking up all processor's cpu cycles Pin
BuggingMe7-Apr-10 6:58
BuggingMe7-Apr-10 6:58 
GeneralRe: While Loop sucking up all processor's cpu cycles Pin
Not Active7-Apr-10 7:08
mentorNot Active7-Apr-10 7:08 
GeneralRe: While Loop sucking up all processor's cpu cycles Pin
PIEBALDconsult7-Apr-10 7:49
mvePIEBALDconsult7-Apr-10 7:49 
AnswerRe: While Loop sucking up all processor's cpu cycles Pin
kevinnicol7-Apr-10 6:59
kevinnicol7-Apr-10 6:59 
GeneralRe: While Loop sucking up all processor's cpu cycles Pin
Fayu7-Apr-10 9:11
Fayu7-Apr-10 9:11 
QuestionRe: Calling an event in a different namespace Pin
roman_s7-Apr-10 5:34
roman_s7-Apr-10 5:34 
AnswerRe: Calling an event in a different namespace [modified] Pin
Dan Mos7-Apr-10 5:39
Dan Mos7-Apr-10 5:39 
GeneralRe: Calling an event in a different namespace Pin
roman_s7-Apr-10 8:13
roman_s7-Apr-10 8:13 
AnswerRe: Calling an event in a different namespace Pin
O.Phil7-Apr-10 5:53
O.Phil7-Apr-10 5:53 
QuestionUpdate MDI child controls (TextBox ect) from a non parent control Pin
Deneys7-Apr-10 4:12
Deneys7-Apr-10 4:12 
AnswerRe: Update MDI child controls (TextBox ect) from a non parent control Pin
Eddy Vluggen7-Apr-10 4:47
professionalEddy Vluggen7-Apr-10 4:47 

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.