mawg
mawg
Yes, I can see that the file is auto-generated. When I editted it to my path, the file was overwritten when I built. What I did was to copy those...
Can you show a very basic demo of adding a non-VCL control class and showing its properties in the inspector?
I tried TMyClass = Class(TObject) public val :Integer; motto : String; End; myObject : TMyClass; and procedure TMain.FormCreate(Sender: TObject); begin GetObjsList; EnumStyles; myObject := TMyClass.Create(); myObject.val := 13; myObject.motto :=...
You are correct !!! I changed it to TMyClass = Class(TObject) private myValue : Integer; myMotto : String; Published property val :Integer read myValue write myValue; property motto : String...
Sigh ! And Dagre looked so promising too :-( Oh, well, that's the end of that. Can anyone suggest a library that will layout like that, and also auto-resize after...