Tagged Questions

TMemo is a VCL component wrapping a standard Windows multiline edit control. It's defined in the StdCtrls.pas unit.

learn more… | top users | synonyms

5
votes
1answer
182 views

Automatically allowing Ctrl+A to select all in a TMemo?

In Delphi 7's TMemo control, an attempt to do the key combo Ctrl + A to select all does not do anything (doesn't select all). So I've made this procedure: procedure TForm1.HTMLKeyDown(Sender: ...
4
votes
4answers
2k views

Can I make a TMemo size itself to the text it contains?

When you edit a TLabel's caption in the form designer, it resizes the TLabel for you. Is there any way I can get a TMemo to do that, at runtime? I'd like to be able to take a TMemo, assign something ...
3
votes
1answer
140 views

How to paste a custom format clipboard data into a TMemo?

This question refers to this one along with its accepted answer posted here on stackoverflow. I don't feel comfortable at Windows API programming. Exploring the way EasyGPS by Topografix handles ...
3
votes
1answer
144 views

Is there a faster component than TMemo on CodeGear C++ Builder?

I'm using CodeGear C++ Builder 2009 and have problems with the TMemo component. It's to slow. I use it to display ASCI text from the COM serial port. I need to display every single symbol when it ...
3
votes
2answers
296 views

In Delphi, Is there a way to adjust the line spacing of a TMemo?

I'm working with a TMemo component to display some text in a limited space. Currently it's using a truetype font which doesn't ship with windows and is installed by the app when it runs. On my PC ...
2
votes
1answer
123 views

Scrolling a Memo text using TTimer shows only the first 3 Lines

what i am trying to do right now is to create a scroling credit text using the TMemo component and TTimer procedure TAboutBox.Timer1Timer(Sender: TObject); begin Memo1.ScrollBy(0,-1); end; the ...
2
votes
1answer
441 views

Why CTRL+C is not working on TMemo component? (Vista + Delphi 7)

why it is not possible to copy selected text in TDBMemo component into clipboard? DELPHI 7, Windows Vista. Following code fails to catch ctrl+c event, whereas ctrl+a works fine. uses clipbrd; ...
2
votes
2answers
176 views

Is there a better way of adding a few characters to a TMemo?

I am using a TMemo to hold received characters from a serial port for viewing. As they arrive I am doing: Memo1.Text := Memo1.Text + sReceivedChars; This works fine but I presume it is rather ...
2
votes
4answers
274 views

How can I paste arbitrary data into a TMemo?

Copying and pasting text is easy enough, since it's built into TMemo, but it seems that it can only handle text. Seems to me that any kind of data can be represented as a string, though. If I copy ...
2
votes
2answers
4k views

Maximum Length of String in Delphi property Lines of TMemo

I've been searching the reason why the maximum length of String in a TMemo.Lines is 1024, but not found yet. I have a text file which contains delimited / csv data which length is around 2000 ...
2
votes
3answers
553 views

How can I correctly downcast the pointer from void* to TMemo* in C++Builder2009?

I am writing multi-thread socket chat in C++Builder 2009. It is almost complete in accordance with what I need to do but I have a little problem. I need to pass the TMemo* pointer into CreateThread ...
1
vote
1answer
220 views

Fast way to search lines of Tmemo

I have a TMemo on a form which allows users to enter a list of items. People can enter many items here. When they click Save the contents of the TMemo is checked and then added to the database. I ...
1
vote
4answers
457 views

Enable scroll bars in disabled TMemo control

Is there a way how to enable scroll bars in disabled TMemo component ? I want let the users scroll the content even if the control's Enabled property is set to False. I know about the possible ...
1
vote
2answers
666 views

Delphi Copy Memo to Richedit problem

I am having a problem copying the contents of a memo to a richedit component. I thought it would be Richedit.text := memo.text; However if I use this the Richedit starts a new line when the memo ...
1
vote
2answers
687 views

Delphi - Memo Right Click Get Line Number

How do I get the line number of a memo when I right click on it? A ListBox has .ItemAtPos but I've not been able to find a similar function -Brad
0
votes
2answers
150 views

How to change selected text attribute into bold in TMemo in delphi 7 ?

I use TMemo to be able to display multiple lines. I want to change selected text attribute in TMemo into bold using the shortcut Ctrl+B. For example, User enters "Hello, how are you?" in the Tmemo, ...
0
votes
3answers
227 views

How do I determine the height of a line of text in a TMemo programmatically?

I've got a TMemo, and I want to always make it exactly high enough to display the number of lines it contains. Unfortunately, I don't quite know how to calculate that. I can't base it off the ...
0
votes
1answer
267 views

Delphi - How can I prevent the main form capturing keystrokes in a TMemo on another non-modal form?

I have an app that opens a non-modal form from the main form. The non-modal form has a TMemo on it. The main form menu uses "space" as one of its accelerator characters. When the non-modal form is ...