如何在delphi过程中调用TRichEdit方法



我再次向大家致敬,当然,在编码时遇到了另一个问题。

我写了以下代码片段:
procedure add_text(text : String);
begin
  MsgBox.SetFocus;
  MsgBox.SelStart := MsgBox.GetTextLen;
  MsgBox.Perform(EM_SCROLLCARET, 0, 0);
  MsgBox.SelText := time_stamp + ' ' + text + #13#10; //time_stamp is a function
end;

问题是,我如何在一个过程中访问那些MsgBox的方法?(程序无法编译,因为"未声明的标识符MsgBox"

注意:如果不够清楚,请编辑问题。注2:也尝试使用TChatForm。MsgBox/ChatForm。

用你的Richedit作为参数来调用程序:

procedure add_text(MsgBox:TRichedit;const text : String);
begin
  MsgBox.SetFocus;
  MsgBox.SelStart := MsgBox.GetTextLen;
  MsgBox.Perform(EM_SCROLLCARET, 0, 0);
  MsgBox.SelText := time_stamp + ' ' + text + #13#10; //time_stamp is a function
end;

相关内容

  • 没有找到相关文章

最新更新