Click here to Skip to main content
16,008,183 members
Home / Discussions / C#
   

C#

 
GeneralRe: get contextmenu control Pin
Luc Pattyn21-Jun-07 23:38
sitebuilderLuc Pattyn21-Jun-07 23:38 
QuestionDataSet Arrays and Stored Procedures [modified] Pin
MAW3021-Jun-07 14:47
MAW3021-Jun-07 14:47 
AnswerRe: DataSet Arrays and Stored Procedures Pin
RepliCrux21-Jun-07 15:18
RepliCrux21-Jun-07 15:18 
GeneralRe: DataSet Arrays and Stored Procedures Pin
MAW3021-Jun-07 17:13
MAW3021-Jun-07 17:13 
GeneralRe: DataSet Arrays and Stored Procedures Pin
RepliCrux21-Jun-07 17:19
RepliCrux21-Jun-07 17:19 
GeneralRe: DataSet Arrays and Stored Procedures Pin
MAW3021-Jun-07 18:25
MAW3021-Jun-07 18:25 
QuestionImprove RichTextBox performance Pin
Latheesan21-Jun-07 11:14
Latheesan21-Jun-07 11:14 
AnswerRe: Improve RichTextBox performance Pin
Luc Pattyn21-Jun-07 11:27
sitebuilderLuc Pattyn21-Jun-07 11:27 
I am not surprised since a textbox is holding all its data in one string;
doing anything fancy to it does not scale well, it is at least quadratic:
when the text grows, so does the number of operations required, AND the cost
of each operation (creating a new string copying all the characters).

I see no easy way out; I did my own line-oriented text editor (with syntax
highlighting and everyting) in a plain Panel; and I do all screen-based logging
to a ListBox.

I am not a big fan of either TextBoxes or RichTextBoxes because
of their degrading performance. I only use them for short texts (say 50 lines),
and preferably texts that dont change.

Smile | :)


GeneralRe: Improve RichTextBox performance Pin
Latheesan21-Jun-07 13:19
Latheesan21-Jun-07 13:19 
GeneralRe: Improve RichTextBox performance Pin
Luc Pattyn21-Jun-07 13:45
sitebuilderLuc Pattyn21-Jun-07 13:45 
QuestionFind ASCII value Pin
stone_sks21-Jun-07 7:48
stone_sks21-Jun-07 7:48 
AnswerRe: Find ASCII value Pin
PIEBALDconsult21-Jun-07 7:58
mvePIEBALDconsult21-Jun-07 7:58 
GeneralRe: Find ASCII value Pin
stone_sks21-Jun-07 8:07
stone_sks21-Jun-07 8:07 
GeneralRe: Find ASCII value Pin
PIEBALDconsult21-Jun-07 8:11
mvePIEBALDconsult21-Jun-07 8:11 
GeneralRe: Find ASCII value Pin
stone_sks21-Jun-07 8:23
stone_sks21-Jun-07 8:23 
GeneralRe: Find ASCII value Pin
PIEBALDconsult21-Jun-07 8:42
mvePIEBALDconsult21-Jun-07 8:42 
GeneralRe: Find ASCII value Pin
Luc Pattyn21-Jun-07 9:30
sitebuilderLuc Pattyn21-Jun-07 9:30 
GeneralRe: Find ASCII value Pin
PIEBALDconsult21-Jun-07 10:32
mvePIEBALDconsult21-Jun-07 10:32 
GeneralRe: Find ASCII value Pin
stone_sks22-Jun-07 3:44
stone_sks22-Jun-07 3:44 
GeneralRe: Find ASCII value Pin
Luc Pattyn22-Jun-07 3:48
sitebuilderLuc Pattyn22-Jun-07 3:48 
GeneralRe: Find ASCII value Pin
stone_sks22-Jun-07 3:40
stone_sks22-Jun-07 3:40 
GeneralRe: Find ASCII value Pin
stone_sks21-Jun-07 8:16
stone_sks21-Jun-07 8:16 
AnswerRe: Find ASCII value Pin
Luc Pattyn21-Jun-07 8:05
sitebuilderLuc Pattyn21-Jun-07 8:05 
QuestionDGV Value Translation Pin
netizenk21-Jun-07 7:48
professionalnetizenk21-Jun-07 7:48 
QuestionRemote file editing using Domain admin credentials Pin
Mike Donner21-Jun-07 7:21
Mike Donner21-Jun-07 7:21 

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.