Click here to Skip to main content
15,895,370 members
Home / Discussions / C#
   

C#

 
GeneralRe: Embedded User Control in IE Problem Pin
Heath Stewart14-Jun-04 3:56
protectorHeath Stewart14-Jun-04 3:56 
GeneralRe: Embedded User Control in IE Problem Pin
Yolan14-Jun-04 4:09
Yolan14-Jun-04 4:09 
GeneralRe: Embedded User Control in IE Problem Pin
Heath Stewart14-Jun-04 4:24
protectorHeath Stewart14-Jun-04 4:24 
GeneralRe: Embedded User Control in IE Problem Pin
Yolan14-Jun-04 4:34
Yolan14-Jun-04 4:34 
GeneralRe: Embedded User Control in IE Problem Pin
Heath Stewart14-Jun-04 4:47
protectorHeath Stewart14-Jun-04 4:47 
GeneralMultiThreaded Socket Pimp! Pin
Anonymous14-Jun-04 3:31
Anonymous14-Jun-04 3:31 
QuestionHow to? Adding a line to a textbox without reloading whole text? Pin
matthias s.14-Jun-04 2:53
matthias s.14-Jun-04 2:53 
AnswerRe: How to? Adding a line to a textbox without reloading whole text? Pin
Dave Kreskowiak14-Jun-04 3:19
mveDave Kreskowiak14-Jun-04 3:19 
The limit for a TextBox control .NET is available memory, IIRC. The "usable" limit is machine, and user, dependent. By this, I mean when you add or remove text, that operation takes longer the more text you have in the TextBox control already and what your doing.

There is no way to get around the Text property. You can use the TextBox's AppendText method to add to the end of the text string, but this will also cause the .NET Framework to copy the current contents of the Text property to a new string, appending the new text from AppendText, then dropping the original string. This is true for ANY modifications to the Text property of the TextBox.

If you wanted to control how much information you display in the TextBox, you'll have to write some code to remove the lines at the start of the Text property. Probably searching for the first occurance of the NewLine characters and removing the text up to and including that point in the string.


RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

Generalblinking Pin
sreejith ss nair14-Jun-04 2:31
sreejith ss nair14-Jun-04 2:31 
GeneralRe: blinking Pin
Dave Kreskowiak14-Jun-04 3:23
mveDave Kreskowiak14-Jun-04 3:23 
GeneralListView colomn color Pin
ahlam-roshan14-Jun-04 0:30
ahlam-roshan14-Jun-04 0:30 
GeneralRe: ListView colomn color Pin
Corinna John14-Jun-04 1:28
Corinna John14-Jun-04 1:28 
GeneralRe: ListView colomn color Pin
ahlam-roshan14-Jun-04 2:41
ahlam-roshan14-Jun-04 2:41 
GeneralRe: ListView colomn color Pin
Heath Stewart14-Jun-04 4:22
protectorHeath Stewart14-Jun-04 4:22 
QuestionHow to protect a software from crack Pin
SoftComplete14-Jun-04 0:24
SoftComplete14-Jun-04 0:24 
AnswerRe: How to protect a software from crack Pin
Dave Kreskowiak14-Jun-04 3:28
mveDave Kreskowiak14-Jun-04 3:28 
AnswerRe: How to protect a software from crack Pin
Wackatronic14-Jun-04 6:53
Wackatronic14-Jun-04 6:53 
QuestionHide taskbar and change DPI settings?? Pin
r913-Jun-04 23:47
r913-Jun-04 23:47 
AnswerRe: Hide taskbar and change DPI settings?? Pin
Dave Kreskowiak14-Jun-04 3:47
mveDave Kreskowiak14-Jun-04 3:47 
GeneralRe: Hide taskbar and change DPI settings?? Pin
Heath Stewart14-Jun-04 4:16
protectorHeath Stewart14-Jun-04 4:16 
GeneralRe: Hide taskbar and change DPI settings?? Pin
r914-Jun-04 6:55
r914-Jun-04 6:55 
GeneralRe: Hide taskbar and change DPI settings?? Pin
Heath Stewart14-Jun-04 8:43
protectorHeath Stewart14-Jun-04 8:43 
GeneralDate time format Pin
Member 445055113-Jun-04 23:46
Member 445055113-Jun-04 23:46 
GeneralRe: Date time format Pin
Stefan Troschuetz14-Jun-04 1:12
Stefan Troschuetz14-Jun-04 1:12 
GeneralRe: Date time format Pin
Heath Stewart14-Jun-04 4:12
protectorHeath Stewart14-Jun-04 4:12 

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.