Hi folks
i try to develop a new messagewindow-funktion (similar to showmessage).
but it should show besides the text the procedure and unit it is embeded.
As I will use it maybe only at designtime it could be in connection to the debugger if necessarry.
Probably someting that never works, but I have to ask.
What I have in short:
//This works
FormMSG.Memo1.lines[0] := Screen.ActiveForm.name;
FormMSG.Memo1.Append(screen.ActiveControl.Name);
FormMSG.Memo1.Append(msg);
//This is phantasie
FormMSG.Memo1.Append(laz.ActiveUnit.Name);
FormMSG.Memo1.Append(laz.ActiveFunction/procedure);
FormMSG.Memo1.Append(laz.ActiveFunction/procedure-Tree);
Any hints, besides thats not possible?