Hi,
Unfortunately, there no such option. If you want to change site background you should create your own style. But, again, styles does not provide a way to draw gradients.
Hi,
This is a known bug of TTreeView. It will happen in any docking operation, including standard Delphi docking. The technical problem is that tree view recreates all items when its Handle is recreated. It saves items to internal stream and restore…
Hi,
> please is there any way to dock my existing forms into docksite
But, what is the problem? Can you describe it more precisely, because there should be no problem to dock ANY Delphi control into our docking site.
Btw, of course, using forms y…
Hi,
I've just checked it, and I can't reproduce your problem; everything works good.
So, first, please check that a zone your try to resize is really a VERT zone; may be you just trying to resize some another wrong zone.And second, if you can, plea…
Hi,
This behavior does not related to Docking Pack. This is how VCL and standard Windows controlds (MENU) works. I'm sure that you will not be able to create a simple project with two standard forms, which works as you want.
Visual Studio is based o…
Hi,
1) UseTabDocs property specifies, whether tabbed **documents** feature is enabled. Tabbed documents - are special kind of docking panels, which has different look and behavior, and as well, which supported by the special top positioned tabs on t…
Hi,
We use standard VCL TClipboard class to copy/paste text. This class itself use standard Windows API, which is the only way to access clipboard. I think, in Unicode version UTF16 is always used to transfer text (like in any other Unicode Windows …
Hi,
This is strange. One reason of such behavior can be the fact that you create panels at run-time dynamically, and probably without assigning any Name(s) to them.\
Docking manager needs a name of the panel while saving layout. It uses saved name t…
Hi,
You should use site's GetHiTest method. The method will return a lot of information, whic allow to determine, whether you clicking on a splitter, and as well splitter's parent zone, which contains all child zones.
So, this zone tree provide you…
Are you sure that the problem is in docking pack related things?
Can you try to switch off alClient align of the site and try to resize it so, that it not occupy the whole form. And check?Also, can you place some other controls on the form, like TP…
Hi,
Currently there no way to change this color. This is due to the fact that property inspector descends from TCustomGrid, and this area is filled inside base class code.
I'm myself looked several times at this problem, and found no way to override…
Hi,
Basically, you should import your function declarations. However, we does not provide an importer for C++, the importer is available only for Delphi (Pascal).
So, the only way is to write Delphi (*.pas) unit with abstract base classes, and incl…
There no full support, because C++ does not support Delphi attributes. So, its not possible to use defined in Serialization Pack attributes. However, simple use is possible.
I can reproduce the problem, but don't know what's wrong.
Addict has no well defined interface for third-party controls, and all interaction is happens using Windows EDIT specific messages. We implemented handlers of these messages. And all of them…
Hi,
I've checked everything, and, unfortunately, I can't find whats going wrong. Here is my setup:
I've made a simple app with syntax edit view on the main form. Edit document lines are set to single line, containing word 'Hoke' at design-time. The …
Hi,
The source of the problem is that project files are slitgtly differ from version to version, and even from update to update. I'll check it on my PC, but even this does not guarantee that it will work in your system.
I'm, personally, use SaveAll …
Hi, again :)
I've checked symbol ';'. So, I see no issues. If its not in word separators, it treated as a part of word. JUST LIKE in notepad. So, fort example "abc;" will be one word, but "abc ;" - will be two, because there is a space between "abc"…
Hi,
1) Your runtime panel is not saved because it has no name. Some identifier (string) should be saved into XML to aloow later to find a panel while loading layout. So, you can specify usual Name property value or, if you don't want to use Delphi N…
> I could not get it to stop before the ';' character, where ';' was a word separator or not.
Strange about ';' symbol, I'll look...
> would be more words if there are more characters in WordSeparators
Word separators are characters, which (ad…
Word and Notepad are general text editors, while syntax-edit is a code oriented editor. Thus, it works like Delphi code editor. However, there exist a possibility to customize this feature slightly: WordSeparators property.
I don't know how screen …
Hi again,
Situation is following:
Folding functions has been complitely fixed. However, the comments themself cannot be folded, if they reside inside function header ot if header:
function P()/* * unfoldable comment */{}
if (true)/* * unfoldable com…