Click here to Skip to main content
15,913,941 members
Home / Discussions / C#
   

C#

 
GeneralRe: Saving to exe Pin
musefan4-Feb-09 7:31
musefan4-Feb-09 7:31 
GeneralRe: Saving to exe Pin
musefan4-Feb-09 7:44
musefan4-Feb-09 7:44 
GeneralRe: Saving to exe Pin
Alan N4-Feb-09 7:51
Alan N4-Feb-09 7:51 
GeneralRe: Saving to exe Pin
musefan4-Feb-09 22:32
musefan4-Feb-09 22:32 
GeneralRe: Saving to exe Pin
Dave Kreskowiak4-Feb-09 10:32
mveDave Kreskowiak4-Feb-09 10:32 
GeneralRe: Saving to exe Pin
SimpleData4-Feb-09 10:40
SimpleData4-Feb-09 10:40 
GeneralRe: Saving to exe Pin
Dave Kreskowiak4-Feb-09 12:27
mveDave Kreskowiak4-Feb-09 12:27 
GeneralRe: Saving to exe Pin
come2san5-Feb-09 1:33
come2san5-Feb-09 1:33 
Ya You Can by creating a variable in the settings of an application.
. on Form load you can call that for ex.

where VariableName is a variable which u need to create in settings of the application
and txtbox1 is a textbox.

public form1()
{

InitializeComponent();
txtbox1.Text = Properties.Settings.Default.VariableName;
}

and on form close you need to save that

private void form1_FormClosed(object sender, FormClosedEventArgs e)
{
Properties.Settings.Default.Save();
}

Thanks.
Sandy
GeneralRe: Saving to exe Pin
Dave Kreskowiak5-Feb-09 2:08
mveDave Kreskowiak5-Feb-09 2:08 
GeneralRe: Saving to exe Pin
PIEBALDconsult9-Feb-09 12:14
mvePIEBALDconsult9-Feb-09 12:14 
QuestionWPF in WinForms Pin
musefan4-Feb-09 7:07
musefan4-Feb-09 7:07 
AnswerRe: WPF in WinForms Pin
Christian Graus4-Feb-09 9:25
protectorChristian Graus4-Feb-09 9:25 
GeneralRe: WPF in WinForms Pin
musefan4-Feb-09 22:30
musefan4-Feb-09 22:30 
QuestionParsing text files Pin
alwaysthinking4-Feb-09 6:59
alwaysthinking4-Feb-09 6:59 
AnswerRe: Parsing text files Pin
musefan4-Feb-09 7:10
musefan4-Feb-09 7:10 
AnswerRe: Parsing text files Pin
PIEBALDconsult4-Feb-09 7:11
mvePIEBALDconsult4-Feb-09 7:11 
GeneralRe: Parsing text files Pin
alwaysthinking4-Feb-09 7:25
alwaysthinking4-Feb-09 7:25 
GeneralRe: Parsing text files Pin
alwaysthinking4-Feb-09 7:36
alwaysthinking4-Feb-09 7:36 
GeneralRe: Parsing text files Pin
Alan N4-Feb-09 7:46
Alan N4-Feb-09 7:46 
GeneralRe: Parsing text files Pin
PIEBALDconsult4-Feb-09 8:07
mvePIEBALDconsult4-Feb-09 8:07 
GeneralRe: Parsing text files Pin
PIEBALDconsult4-Feb-09 10:18
mvePIEBALDconsult4-Feb-09 10:18 
GeneralRe: Parsing text files Pin
alwaysthinking9-Feb-09 8:35
alwaysthinking9-Feb-09 8:35 
GeneralRe: Parsing text files Pin
alwaysthinking9-Feb-09 8:36
alwaysthinking9-Feb-09 8:36 
GeneralRe: Parsing text files Pin
PIEBALDconsult9-Feb-09 11:59
mvePIEBALDconsult9-Feb-09 11:59 
GeneralRe: Parsing text files Pin
alwaysthinking10-Feb-09 10:01
alwaysthinking10-Feb-09 10:01 

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.