日本語のみで絞り込む
2014/5/3 -You can use the Lines.CommaText property for this. Do the following: CommaString := Memo1.Lines.CommaText; Its also useful to use the DelimitedText property.
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 ...
The following event handler searches a TMemo object called Memo1 and replaces FindText with ReplaceText. It uses TMemo's SelStart, SelLength, and SelText ...
2020/12/1 -Memo1.Text has total 3 sql commands like below - Create Table A (ID Integer); - Insert into A Values(1); - Update A set ID=2 Where ID=1;
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 ...
2013/7/6 -I have a memo with a few lines of text in it, and a button for the user to click to copy the text to the clipboard.
Q.delphiのプログラムでform2に有るmemo1のテキストをform3に映し出させるにはどうしたら良いのでしょうか? 現在、delphiで社員が書いたアンケートの内容を企画部に送るように設定...
A.form2のmemo1で入力した値をform3のmemo1に単に移すだけなら簡単です。 転送用のボタンがあるなら次の通り。 Uses で Form3 を設定します。 // OnClick
Q.delphiのプログラミングについての質問です。 Delphi初心者です。 memo1の内容を、memo2に追加していきたいのですが、 Memo1.Lines.add(memo2.Lines...
A.Memo1.Lines.Assign(Memo2.Lines); とします。 Lines.Addメソッドの引数の型をよく見てください。 これに対して、Memo2.Linesの持つ型を見てください。
Q.Delphiでコンポーネントのサイズの自動調整について DelphiでFormのサイズを変更するときにMemo1のサイズも自動で調整したいのですが、 画像のように少し小さくしただけでもたまに大き...
A.Delphi 2006でTFormのOnResizeイベントでやってみましたが、 とくにそれらしき現象は再現しませんでした。 問題はこの処理自体ではなく、他との兼ね合いの可能性も考えられます。
I'm a Delphi newbie, so please bear with me! I am trying to insert lines into a memo, wherever the cursor may be. That's fine if what I'm trying to add in ...
2016/5/9 -I want to load a text file into Memo1. The method I am using comes from a Wikipedia tutorial (bad idea?): -----------------------------
How do I clear the memo text in the corner of a delphi memo component, I cannot seem to find a caption property ? Also How do you declare a memo field in ...
This video explains how to use the TMemo and TRichedit components in Delphi along with some of their basic properties.
YouTube Mr Long Education - IT & CAT