我再次向大家致敬,当然,在编码时遇到了另一个问题。
我写了以下片段:
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.MsgBox 但仍然不成功..