Hi,
You can customize Id attribute. Use dock-manager's OnGetComp/OnGetCompId event handlers. AComponent parameter of OnGetCompId event is a saving docking-panel; if you want to provide another Id for it, you can change AId parameter value. OnGetComp…
Block mode is an alternative selection mode. It supported in almost all code editors. For example, in Delphi source editor you can select some text using:1) MouseDown and Move.2) Shift +
However, you can also use block mode using:1) Alt + (MouseDow…
Hi,
VCL controls re-creates they handles on Parent change. There are some hande creation/re-creation related methodd: CreateParams, CreateHandle, CreateWnd, DestroyHandle, DestroyWnd, RecreateHandle, ect... Some of them are virtual. You should be fa…
Hi,
(a) Not possible. The color of the character (as well as the background) got from syntax scheme. So, for example, space characters inside string literal will have string literal color.
(b) AddHighlight, RemoveHighlight, ClearHighlight methods al…
Hi,
Its, of course, possible to show URLs highlighted; you should learn how to write syntax schemes and write your URLs highlighting scheme. Standard schemes available with package include text scheme where e-mails are highlighted.
But, there are no…
> Which version of the dockingcomponent are you using
I use latest version from SVN.
> Were you able to test the software with the sample project I attached?
No. The file has been removed from file-server.
Hi,
Yes. This is possible. You can use OnUnDock event of the TLMDDockSite like this:
procedure TForm1.SiteUnDock(Sender: TObject; Client: TControl; NewTarget: TWinControl; var Allow: Boolean); begin Allow := (NewTarget = Site); end;
However, th…