Hi,
You can create a panel, like any other component, for example:
pnl := TLMDDockPanel.Create(Self);
To make it floating, use standard Delphi method ManualFloat, for example:
pnl.ManualFloat(Rect(100, 100, 200, 200));
Eugene,LMD Innovative.
Hi,
IanGoldby, can you modify the source of TBufDrawData.Flush procedure as shown below and recheck:
procedure TBufDrawData.Flush;var x, y: Integer; w, h: Integer;begin Assert(FInited); RestoreCanvas;
x := FR.Left; // Source origin should be e…
Hi,
First of all, I have to note that if you want to prevent panels from been undocked from the site, you need to set DragContent property of the docking style to False, because otherwise the panel is undocked at the draggin start, and, so, there no…
Hi,
1) You again forgot about fill-read mode. Should be like this:
function TwdeObjectsListConverter.GetReadMode: TReadMode;begin Result := rmFillRead;end;
2) Object list CAN be deserialized directly; Yes, they still need converters, but you can wr…
Hi,
1) I said EditFormat, not DisplayFormat.2) You should exclude opDrawFocusSelected flag from Grid.Options.
> Where can I find the header file containing the attributes to the TLMDGridColumn? I want to custom draw my cells, can't find where th…
> Also, I just want to display the data in the grid, I don't want it to appear like anyrow is selected. The first field in the first row has a thicker black border around it, how do I get rid of that?
Here I can't understand what you speak about…
Hi,
About FloatFormat: In Db version of the grid this property is linked with the corresponding TField.EditFormat property. For better understanding you can review the following code (which is a part of LMDGrid package):
procedure TLMDGridFloatColum…
Hi,
the issue was fixed, using small hack. To determine back color of the hint, the component now draws the hint there part on the internal bitmap, and then calculates average color (of course, excluding some border).
Hi,
In current code version (from SVN) the line you mention alrady present in the constructor. Please check your version, and update sources from SVN.
Eugene.
Hi,
You should make one of the panels floating using ManualFloat standard VCL method. Actually, after this, panel's parent form with the site on it will bve created automatically.
So, then, you can acces this implicitly created site via Panel1.Site …
Hi,
Are you sure? Delphi documentation says that $RTTI directive is applicable to specific class or record only:
The $RTTI directive is used to control the amount of extended RTTI (Run-Time Type Information) information that is emitted for a class o…
Hi,
Really, ElPack implementation just executes standard WinAPI function: TaskDialogIndirect. So, the rule of using only #10 is not our (LMD related) rule. It just how WinAPI works.Actually, I'm also, can't understand, why #13#10 are not recognized.…
Hi,
I'm sorry for delay. I've tryied to play with command link buttons in ther task dialog, but I can't undewrstand what you mean. Can you please send a small demo app to our support e-mail.
Hi,
There no way/ With the new version of your application you should supply new default XML layout. Other way will be to process new panels separately, in code, and make them, for example floating.
Anyway, this is application specific task, which h…
Hi,
I don't know why this happens, I just created a small new application, just placing a dock site and some panels on the form. Floating panels looks Ok.
But, you can check, whether you use a **single** TLMDDockManager, and whether it connected to…