M C
M C

Reputation: 61

C# Issue when reading NET app.config values

I'm trying to read my saved configuration settings back into TextBoxes with

txtMailServer.Text = Properties.Settings.Default.MailServer;

But the text box contents are being prefixed with this text in front of the actual value...

System.Windows.Forms.TextBox, Text: the.mail.server

What is causing that?

Upvotes: -3

Views: 47

Answers (1)

M C
M C

Reputation: 61

OK FIXED - still learning...! I simply needed to tag .Text on the end of the control when I was saving it. I made the assumption the Text attribute would be defaulted - not smart on my part. D'oh

Upvotes: 0

Related Questions