473,799 Members | 2,885 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

AppendText Method of TextBox, 32K limit?

VB .NET 2003, WinXP Pro:

Adding text to a text box with the TextBox.AppendT ext method limits the
amount of text in the textbox to 32K.

I have a short program that uses the GetFiles function of the directory
object, then iterates through the returned array and appends the strings to
the textbox. However, if the character count is greater than 32k, no
additional text is displayed in the textbox, though no error is raised.

dim StartDir as Directory
dim AllFiles() as String

AllFiles = StartDir.GetFil es("C:\Windows\ System32")

'The following method works fine:
'Textbox1.Lines = AllFiles

'This method displays the problem.
dim TempString as String
For Each TempString in AllFiles
TextBox1.Append Text(TempString & ControlChars.Cr Lf)
Next

I can't find this documented anywhere, so assume it must be a bug. Anyone
have a similar experience, or know a workaround?

Nov 21 '05 #1
7 6914
Hi,

That is all the info a textbox can hold. Use a richtextbox instead.

Ken
-------------------
"Andrew" <An****@discuss ions.microsoft. com> wrote in message
news:A2******** *************** ***********@mic rosoft.com...
VB .NET 2003, WinXP Pro:

Adding text to a text box with the TextBox.AppendT ext method limits the
amount of text in the textbox to 32K.

I have a short program that uses the GetFiles function of the directory
object, then iterates through the returned array and appends the strings to
the textbox. However, if the character count is greater than 32k, no
additional text is displayed in the textbox, though no error is raised.

dim StartDir as Directory
dim AllFiles() as String

AllFiles = StartDir.GetFil es("C:\Windows\ System32")

'The following method works fine:
'Textbox1.Lines = AllFiles

'This method displays the problem.
dim TempString as String
For Each TempString in AllFiles
TextBox1.Append Text(TempString & ControlChars.Cr Lf)
Next

I can't find this documented anywhere, so assume it must be a bug. Anyone
have a similar experience, or know a workaround?
Nov 21 '05 #2


That's a known bug:

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
"Andrew" <An****@discuss ions.microsoft. com> schrieb im Newsbeitrag
news:A2******** *************** ***********@mic rosoft.com...
VB .NET 2003, WinXP Pro:

Adding text to a text box with the TextBox.AppendT ext method limits the
amount of text in the textbox to 32K.

I have a short program that uses the GetFiles function of the directory
object, then iterates through the returned array and appends the strings
to
the textbox. However, if the character count is greater than 32k, no
additional text is displayed in the textbox, though no error is raised.

dim StartDir as Directory
dim AllFiles() as String

AllFiles = StartDir.GetFil es("C:\Windows\ System32")

'The following method works fine:
'Textbox1.Lines = AllFiles

'This method displays the problem.
dim TempString as String
For Each TempString in AllFiles
TextBox1.Append Text(TempString & ControlChars.Cr Lf)
Next

I can't find this documented anywhere, so assume it must be a bug. Anyone
have a similar experience, or know a workaround?


Nov 21 '05 #3
"Andrew" <An****@discuss ions.microsoft. com> schrieb:
VB .NET 2003, WinXP Pro:

Adding text to a text box with the TextBox.AppendT ext method limits the
amount of text in the textbox to 32K.


That's a known bug:

<URL:http://groups.google.c om/groups?selm=Ox0 wQkDTDHA.2188%4 0TK2MSFTNGP10.p hx.gbl>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #4
Why can't you add the files to a ListBox?

Dim strSystemDirect ory As String =
Environment.Get FolderPath(Envi ronment.Special Folder.System)

ListBox1.Items. Clear()
For Each strFile As String In
IO.Directory.Ge tFiles(strSyste mDirectory)
ListBox1.Items. Add(strFile)
Next

Crouchie1998
BA (HONS) MCP MCSE








"Andrew" <An****@discuss ions.microsoft. com> wrote in message
news:A2******** *************** ***********@mic rosoft.com...
VB .NET 2003, WinXP Pro:

Adding text to a text box with the TextBox.AppendT ext method limits the
amount of text in the textbox to 32K.

I have a short program that uses the GetFiles function of the directory
object, then iterates through the returned array and appends the strings to the textbox. However, if the character count is greater than 32k, no
additional text is displayed in the textbox, though no error is raised.

dim StartDir as Directory
dim AllFiles() as String

AllFiles = StartDir.GetFil es("C:\Windows\ System32")

'The following method works fine:
'Textbox1.Lines = AllFiles

'This method displays the problem.
dim TempString as String
For Each TempString in AllFiles
TextBox1.Append Text(TempString & ControlChars.Cr Lf)
Next

I can't find this documented anywhere, so assume it must be a bug. Anyone
have a similar experience, or know a workaround?

Nov 21 '05 #5
Argh. I wish they would have posted this in the KB somewhere. I spent hours
trying to track this down, and since the documentation omits Windows XP (but
mentions every other OS for the past 10 years), I had to question whether or
not it was the code causing the problem. Thanks Herfried.

"Herfried K. Wagner [MVP]" wrote:
"Andrew" <An****@discuss ions.microsoft. com> schrieb:
VB .NET 2003, WinXP Pro:

Adding text to a text box with the TextBox.AppendT ext method limits the
amount of text in the textbox to 32K.


That's a known bug:

<URL:http://groups.google.c om/groups?selm=Ox0 wQkDTDHA.2188%4 0TK2MSFTNGP10.p hx.gbl>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #6
I have to disagree with you, Ken. If I set the Text property of a textbox to
a string with 50,000 characters in it, it displays properly in the text box.
However, if I used the AppendText method to display the same string in the
text box, it would truncate to 32K characters.
-Andrew

"Ken Tucker [MVP]" wrote:
Hi,

That is all the info a textbox can hold. Use a richtextbox instead.

Ken
-------------------
"Andrew" <An****@discuss ions.microsoft. com> wrote in message
news:A2******** *************** ***********@mic rosoft.com...
VB .NET 2003, WinXP Pro:

Adding text to a text box with the TextBox.AppendT ext method limits the
amount of text in the textbox to 32K.

I have a short program that uses the GetFiles function of the directory
object, then iterates through the returned array and appends the strings to
the textbox. However, if the character count is greater than 32k, no
additional text is displayed in the textbox, though no error is raised.

dim StartDir as Directory
dim AllFiles() as String

AllFiles = StartDir.GetFil es("C:\Windows\ System32")

'The following method works fine:
'Textbox1.Lines = AllFiles

'This method displays the problem.
dim TempString as String
For Each TempString in AllFiles
TextBox1.Append Text(TempString & ControlChars.Cr Lf)
Next

I can't find this documented anywhere, so assume it must be a bug. Anyone
have a similar experience, or know a workaround?

Nov 21 '05 #7
I could, but the point of the post wasn't so much to illustrate a particular
need as it was to demonstrate what I presumed must be a limitation of the
TextBox object.
The actual code where this was discovered was a bit more tedious, but the
code I posted here was just to demonstrate the problem.
-Andrew

"Crouchie19 98" wrote:
Why can't you add the files to a ListBox?

Dim strSystemDirect ory As String =
Environment.Get FolderPath(Envi ronment.Special Folder.System)

ListBox1.Items. Clear()
For Each strFile As String In
IO.Directory.Ge tFiles(strSyste mDirectory)
ListBox1.Items. Add(strFile)
Next

Crouchie1998
BA (HONS) MCP MCSE








"Andrew" <An****@discuss ions.microsoft. com> wrote in message
news:A2******** *************** ***********@mic rosoft.com...
VB .NET 2003, WinXP Pro:

Adding text to a text box with the TextBox.AppendT ext method limits the
amount of text in the textbox to 32K.

I have a short program that uses the GetFiles function of the directory
object, then iterates through the returned array and appends the strings

to
the textbox. However, if the character count is greater than 32k, no
additional text is displayed in the textbox, though no error is raised.

dim StartDir as Directory
dim AllFiles() as String

AllFiles = StartDir.GetFil es("C:\Windows\ System32")

'The following method works fine:
'Textbox1.Lines = AllFiles

'This method displays the problem.
dim TempString as String
For Each TempString in AllFiles
TextBox1.Append Text(TempString & ControlChars.Cr Lf)
Next

I can't find this documented anywhere, so assume it must be a bug. Anyone
have a similar experience, or know a workaround?


Nov 21 '05 #8

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

Similar topics

1
1911
by: Wootaek Choi | last post by:
I've tried to record some data to the file with C#. The data should be added in the end of log file, And If there is no log file, A new log file should be created to write the data for that reason, AppendText() function used to open the log file. but AppendText() returns StreamWriter object using utf-8 encode mode. What shall i do to get a StreamWriter object using the other encode mode when i use AppendText()?
0
1655
by: Cordell Lawrence | last post by:
Okay guys, We are wondering if this is a bug in Framework 2.0.40607 and looking for some clarification on the issue. Take a look at the folowing code. public delegate bool BoundryTest(int myVal);
4
4862
by: Paul E Collins | last post by:
I'm writing an application with a TextBox control on its main form. I'm running the application under WinXP Pro, so (as I understand it) there should be no practical limit to the number of characters in a text box. However, when I paste in a large amount of text, the text box truncates it at exactly 32K characters. This is a problem, because I need to know exactly how many of each character were pasted; besides, I wasn't expecting the...
7
10411
by: Tamir Khason | last post by:
I have textbox. I do something in each Keypress (kindof validation) in order not to rewrite all text inside I'm using AppendText method to write in. BUT I'm unable to add backspace (\b); e.g I have to change each ZZ to Z so I want to do myTextBox.AppendText("\bZ"); or (char)8+"Z" - Both writes black square and Z. I know bout the issue of Win32, but is any way to overrde it? TNX -- Tamir Khason
5
1821
by: Ron | last post by:
Greetings, I am writing text to a multi line textbox on a timer as follows: txt1.AppendText(@"/* " + DateTime.Now.ToString() + "\n"); Here is what gets displayed /* 1/1/2004 11:12:11 AM|
2
1879
by: dc15 | last post by:
I am trying to write an application, taking input from various text boxes and appending it to a text file.... it was working, then I had to create various sub procedures to reflect limits set in place (class: A through C), (type: X, I, S), grade (4 through 6) Ive tried everything and it still wont work, anyone have any ideas? heres my code Public Class Form1
3
3061
by: Fritz Switzer | last post by:
I'm trying to AppendText to a TextEdit. I have a procedure that will go through the controls on a Windows form and return the control that has "focus". I have a number of TextEdits on my form and don't know which control has focus. I then want to paste text from the ClipBoard to this TextEdit control. The following code is what I'm using. Everything works fine, it identifies the correct control,
3
2642
geo039
by: geo039 | last post by:
I have a mortage calculator in vb.net. I am trying to transferring it into asp.net. Most of everything works from cut and paste except appendtext. I am not sure what to use in place of the appendtext. This snip displays the monthly payments, interest, balance etc For intMonth = 1 To intNumberPayments 'calculate interest paid and balance Dim dblInterestPaid As Double Dim dblBalance As Double ...
4
13491
by: =?Utf-8?B?UmF5IE1pdGNoZWxs?= | last post by:
Hello, I have a multiline RichTextBox that I use for data logging. I'm concerned about how the AppendText method reacts when over time the maximum number of characters have been added. Do the oldest characters it contains start rolling off the top into the bit bucket, does it simply start silently ignoring appends until some characters, are deleted, or does some kind of exception get thrown? I've heard numerous opinions on what the...
0
9685
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9538
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10249
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9068
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7563
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6804
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5461
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5584
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2937
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.