Newsgroups : Borland : borland.public.delphi.rtl.win32 : 2005 May : How to get current method name?
| Subject: | How to get current method name? |
| Posted by: | "Toysun" (toysun..@163.com) |
| Date: | Wed, 18 May 2005 11:27:15 |
Hi,
How to get current method name?
procedure TForm1.FormCreate(Sender: TObject);
var
MethodName:String;
begin
MethodName:=.....;//??MethodName='FormCreate'
Showmessage(MethodName);
end;
Thanks a lot,
Toysun