約55,800件1ページ目

日本語のみで絞り込む

TMemo is a wrapper for a Windows multiline edit control. Use TMemo to put a standard Windows multiline edit control on a form. Multiline edit boxes allow ...

2021/5/25 -TRichMemo - Like Delphi TRichEdit component: formatted text (color, size, etc.) TListBox - A scrollable list of strings. LCL Components ...

TMemo is a multiline text editing control, providing text scrolling. Use TMemo to place a standard multiline edit control on a form.

2015/3/14 -I need to read each line in memo1.lines and perform a specific action on it. I tried this: procedure ...

Hello, When I add line(s) to a TMemo, the cursor is set to the bottom. So how can I set the view to the first line ? Thanks! David ^_^.

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 ...

2020/4/2 -Go to beginning / Go to top. 1. 2. RichEdit1 . SelStart := 0 ;. SendMessage(RichEdit1 . Handle, WM_VSCROLL, SB_TOP, 0 ); ...

I've got a visible TMemo on a form. I want to save the TMemo to an offscreen TMemo so I write. Memo2.Assign(Memo1);. When this line executes I get the error ...

2019/3/24 -But how can I determine the linenumber from this? I found this but this is for Delphi and not Lazarus. Code: Pascal [Select][+][-]. mi ...

2020/3/29 -I have a simple text file with two lines of text and a third line that is blank. The content was generated by two WriteLn() statements and then ...

A.ReadOnly ってプロパティっなかったっけ? 書き込みの時だけ、False にするとよいよ。 ←ごめん訂正。 体外のコンポーネントは、goEditingより、ReadOnlyの方が多いよー。

A.Memo1.Lines.Add('■'); とでもしているのでしょうか?最後に(改行なしで)追加するなら Memo1.Lines.Text := Memo1.Lines.Text + '■';

A.プロパティーを見てそれっぽいのを探す習慣を付けましょう♪ ---------- procedure TForm1.Button3Click(Sender: TObject); begin memo1