日本語のみで絞り込む
Use TMemo to put a standard Windows multiline edit control on a form. Multiline edit boxes allow the user to enter more than one line of text. They are ...
TMemo is a multiline text editing control, providing text scrolling. Use TMemo to place a standard multiline edit control on a form.
2020/3/29 -I want to press a button that opens the file and reads in each line and either per line writes the line to a Tmemo object, Memo1.Text := ???? or reads in each ...
2021/5/25 -A TMemo tmemo.png is a control with multiple lines of editable text. It is available from the Standard tab of the Component Palette.
2012/1/5 -I have a TMemo which contains quite a lot of texts, 80M (about 400K lines). The TMemo is set with WordWrap = FALSE, there is no need to find texts that wrapped ...
2020/10/8 -I'd like to search for, and then highlight a line or phrase of text in a TMemo. I can get the Caret to move to the start of the correct location via SelStart.
Q.Turbo Delphi(2006)のことで質問です。TMemoで改行しないようにするにはどうしたらいいでしょうか。 TMemoに、for文で指定された数だけ■の記号を横に表示させたいのですが、 1つ
A.Memo1.Lines.Add('■'); とでもしているのでしょうか?最後に(改行なしで)追加するなら Memo1.Lines.Text := Memo1.Lines.Text + '■';
Q.Delphiで、TMemoを編集不可にしたいのですが、どのようにすればよいでしょうか? GridならばgoEditingをfalseにすればよいのですが、Memoの場合、それがありません。 Aさ...
A.ReadOnly ってプロパティっなかったっけ? 書き込みの時だけ、False にするとよいよ。 ←ごめん訂正。 体外のコンポーネントは、goEditingより、ReadOnlyの方が多いよー。
Q.Delphiで、TMemoを編集不可にしたいのですが、どのようにすればよいでしょうか? GridならばgoEditingをfalseにすればよいのですが、Memoの場合、それがありません。 Aさ...
A.プロパティーを見てそれっぽいのを探す習慣を付けましょう♪ ---------- procedure TForm1.Button3Click(Sender: TObject); begin mem...
TMemo doesn't have a cursor position. I solve this problem by selecting the first (or any character depending on what you want visible) character in Lines.
2019/1/13 -I want to know is whether there are any way that I can extract the full string from TMemo. For example, a whole string within which the cursor is positioned.
I am trying to use Delphi (Delphi 2009) TMemo and TcxMemo components - I have WordWrap=True and Scrollbars=[vertical scrollbar] and I am adding 4 very long ...
2008/4/6 -The TMemo component loads the contents of a text file. After loading, I need to set the position to the beginning of the first line (row).