vote up 0 vote down star

I have a Winform application build with C# and .Net 2.0. I have a textbox set with MultiLine.

The problem is when someone write text with multiple line (press few enters) and press my save button than close and load the form again. All the new line disappear (the text is there at least).

Example:

Line1

Line3

This will be if I save and load :

Line1 Line3

Any idea why?

Update

The database is PostGres and when I use PGAdmin I can see all the line AND the "enters". So the persistence seem to have save all the line... the problem seem to be when I put back the string in the Textbox.

flag

What happens in your "save" button's event handler? – Mitchel Sellers Oct 9 '08 at 19:31
Save button go save the textbox1.Text to the database. The problem is when I load it back to the form, I do not see any line – Daok Oct 9 '08 at 19:36
What database are you using and what type of field? – curtisk Oct 9 '08 at 19:37
I have put some more information in the question. – Daok Oct 9 '08 at 19:39

closed as no longer relevant by Daok Oct 11 '08 at 14:48

2 Answers

vote up 1 vote down check

If I recall correctly, the textbox is really a string array.

I think you can do this:

textBox1.Lines = foo.Split(new String[] {"\n"},StringSplitOptions.RemoveEmptyEntries);

Edit again: If you want to keep the blank lines, the change to StringSplitOptions.None

link|flag
vote up 0 vote down

In Windows forms all carriage returns are preserved in a multiline text box, so the problem likely lies in the way data is retrieved from your database. I've never used PostGres, but I'm guessing that the way you're retrieving the text from the db is replacing all whitespace with single spaces.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.