Yes, this is because in VCL main form should be fully created first. VCL use main form's handle to specify owner (in Windows terms) for other forms, including LMD DockingPack floating forms.
Hi,
In a couple of days we will publish minor release in which I've added new OnGetCellColors event (in addition to existing OnGetCellColor), which allows to change both background and font colors.
LMD-IDETools contains only simplified versions of some complex Delphi editors. IT will take too much time to implement full analogs of such editors.However, its always possible to re-create and register your own editors based on custom property and …
Hi,
There no built-in property editor for that. You should implement the editor yourself. To write a custom property editor you need to declare a class as a descendant of TLMDPropEditor or one of existing property editors and override its virtual fu…
The problem is in standard Delphi's TButtonStyleHook.WMLButtonDblClk method, which sets Handled parameter to True even in design-time. This way DElphi's styling system in incompatible with Delphi's designer system.As a workaround you can declare and…
Hi,
I've added DISPATCH_PROPERTYPUTREF as described in your message. As well, I've added DISPATCH_PROPERTYPUT to TLMDDispWrapperData.AddDispProp as shown:
if AIsWritable then begin if AType() = varDispatch then invflag := invflag or DISPA…
Hi,
I'm sorry for previous message, whwre I mistunderstood you and checked things in NativeVB lang.I just re-checked issue with HellowWorld demo, in which I've changed the Language to slVBScript and code in memo to the following:
sub Main (p1, p2)
…
Hi,
But, it works in the demo:
dim rec = new TPoint rec.X = 3 rec.Y = 5 dim recstr = "(" + CStr(rec.X) + ", " + CStr(rec.Y) + ")"
May be the problem is that you do not use "new" VB operator?..
This may be possible with custom style creation:
You should replace "color" layers in SiteBack/Normal or Floating or Doc elements in style's XML with "stretch" or "center" layers. Style bitmap should be also changed to include back image.
Please re…
I've found the issue. As a hot fix, please replace the following line in TLMDHTMLHeaderControl.DrawThemedSection method:
hght := lTextRect.Right - lTextRect.Left;
to correct one:
hght := lTextRect.Bottom - lTextRect.Top;
I've checked, it aviods stack overflow. But, the rest of a long line become un-parsed, and thus - uncolored (drawn with black default color). However, same regexps are used to process code folding, and potentially, in some other places. And its hard…
Hi,
I've added the following code to MatchPrim method:
if FMatchPrimDepth >= MaxMatchPrimDepth then begin if RaiseMatchPrimDepthError then Assert(False); Result := False; Exit; end;
So, you can set RaiseMatchPrimDepthError globa…