473,396 Members | 1,683 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

TextBox / IO

I am reading a file like so:

using(FileStream inStream = new FileStream
("addresses",FileMode.Open,FileAccess.Read))
{
}

One of the strings is long and is displayed
in a multil;ine textbox.

When I do that carriage returns in the multiline text
box do not produce the desired result, neither does
using keypress and inserting "\r\n" at the cursor position
when enter is pressed.

Please assist.

Nov 16 '05 #1
5 1683
Hi Paddy,

I'm not quite sure what you mean. A multiline textbox should support line breaks just fine. Manually or programmatically. WordWrap can be turned true or false, but these shouldn't interfere with breaking the lines on your own.

--
Happy coding!
Morten Wennevik [C# MVP]
Nov 16 '05 #2
Hi Morten,

If I enter something in the textbox (re my original posting please)
and finish off by punching the "enter" key - then write to file,

then subsequently reading the record shows nothing at all in the
textbox concerned. So I am at a loss as to what is happening.

Paddy.

"Morten Wennevik" <Mo************@hotmail.com> wrote in message
news:opr9r688u4klbvpo@morten_x.edunord...
Hi Paddy,

I'm not quite sure what you mean. A multiline textbox should support line breaks just fine. Manually or programmatically. WordWrap can be turned true
or false, but these shouldn't interfere with breaking the lines on your own.
--
Happy coding!
Morten Wennevik [C# MVP]

Nov 16 '05 #3
Hi Paddy,

If you write in a single line textbox, hitting [ENTER] will not add a carriage return. However, if you also write in a multiline textbox then any [ENTER] you do will be saved with the rest of the text.

If you use a single line textbox, you can add your own \r\n whenever you hit [ENTER] using the KeyPress event

private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
if(e.KeyChar == (char)13) // 13 is the code for the carriage return
{
textBox1.Text += "\r\n"; // add cr and lf to the string
textBox1.SelectionStart = textBox1.TextLength; // move the cursor to the end
}
}

--
Happy coding!
Morten Wennevik [C# MVP]
Nov 16 '05 #4
Hi Morten,

I do have a multi line textbox,
if I do [ENTER] + additional text
the additional text is lost, i.e., not written.

I did already try

if(e.KeyChar == (char)13)
{
textBox1.Text += "\r\n";
}

That doesn't do the trick either.

I am working with an inherited form, maybe that
is a cause?

Paddy

"Morten Wennevik" <Mo************@hotmail.com> wrote in message
news:opr9sd3jnaklbvpo@morten_x.edunord...
Hi Paddy,

If you write in a single line textbox, hitting [ENTER] will not add a carriage return. However, if you also write in a multiline textbox then any
[ENTER] you do will be saved with the rest of the text.
If you use a single line textbox, you can add your own \r\n whenever you hit [ENTER] using the KeyPress event
private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e) {
if(e.KeyChar == (char)13) // 13 is the code for the carriage return
{
textBox1.Text += "\r\n"; // add cr and lf to the string
textBox1.SelectionStart = textBox1.TextLength; // move the cursor to the end }
}

--
Happy coding!
Morten Wennevik [C# MVP]


Nov 16 '05 #5
It is possible that the parent interferes somehow, but I'm afraid I am out of ideas. :(
You might want to try again writing a new message (messages more than a day old tends to be "forgotten") and if you could provide more details, code etc, it might help.

--
Happy coding!
Morten Wennevik [C# MVP]
Nov 16 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Jonas L | last post by:
Hi, I need to create a textbox which acts as a normal textbox but with the following extra requirements: 1) In-focus color, when the textbox gets focus the backcolor property of the textbox...
4
by: Rodrigo DeJuana | last post by:
Howdy, I'm new to this .net stuff and really have little to no training. Im trying to create a new page for a web form, so i have been pretty much jsut coping code. I having some issue with...
0
by: Newasps | last post by:
Hi guys, I have a problem with UpdateCommand Event. In tihs event Ä°'m creating required controls to get that controls' values and also get them. But when I try to get updated values I'm getting the...
7
by: I am Sam | last post by:
I have a DataGrid that is passing information to a stored procedure properly but the parameters aren't being casted properly. I was woundering if anyone can tell me how I should properly cast the...
11
by: Keith | last post by:
I apologize for those of you who think I'm posting on the same topic. It is not that I don't appreciate all of your comments - and I'm definitely reading them all - but I think I have a differing...
2
by: Mamatha | last post by:
Hi I want to add an icon to the textbox's text. I don't know how to display icon in textbox in VB.NET. If any one knows please let me know. Thanks in advance. Mamatha
3
by: Brad Rogers | last post by:
All, Being immersed in vb.net and trying CSharp after almost a year I forgot the differences. I like vb fixing the uppercase/lowercase names and seeming to be more flexible to code entry. ...
0
by: Jacob Donajkowski | last post by:
Once the user logs in I want to have the users switch from the Roster View to the Profile View and enter their profile infomation and save it. Then the next time they login and go to the Profile...
8
by: Marco Pais | last post by:
Hi there. How can I change the background color of a textbox when it gets the focus? I can handle the "Enter" event and do this private void txtDummie_Enter(object sender, EventArgs e) { ...
1
by: Andy B | last post by:
I have this code: protected void EditEventsWizard_NextButtonClick(object sender, WizardNavigationEventArgs e) { //get the values from the DetailsView TextBox StartTime =...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.