Ondrej Pokorny via Lazarus wrote:
> I didn't know you can use the object inspector to inspect
> controls/components in runtime. How to enable it? Is this documented
> somewhere?
>
> Ondrej
Yes, Lazarus/examples/objectinspetor/ is an example. My tests based on
this and mine is here https://gith
On Thu, 15 Feb 2018 22:02:21 +0100
Ondrej Pokorny via Lazarus wrote:
>[...]
> I didn't know you can use the object inspector to inspect
> controls/components in runtime. How to enable it? Is this documented
> somewhere?
examples/objectinspector/
Mattias
--
___
Hi,
Yesterday, TMS Software has released a tech preview of their "TMS Web core"
product for Delphi.
Now that it's official, I don't need to be secretive about it anymore :)
You can read about it on their Blog (2 articles):
http://www.tmssoftware.com/site/blog.asp
It uses pas2js as the comp
On 15.02.2018 19:03, Andreas Frieß via Lazarus wrote:
For testing purposes, i want to create a form at runtime with chained
panels - to make it simple.
I use this code
// Create components
ATestForm := TForm.Create(nil);
ATestForm.Name:= 'Main';
// Create a Panel
ATestPanel :=
On Thu, 15 Feb 2018 19:03:37 +0100
Andreas Frieß via Lazarus wrote:
> For testing purposes, i want to create a form at runtime with chained
> panels - to make it simple.
>
> I use this code
>
>
> // Create components
> ATestForm := TForm.Create(nil);
> ATestForm.Name:= 'Main';
> // Cr
For testing purposes, i want to create a form at runtime with chained
panels - to make it simple.
I use this code
// Create components
ATestForm := TForm.Create(nil);
ATestForm.Name:= 'Main';
// Create a Panel
ATestPanel := TPanel.Create(ATestForm);
ATestPanel.Parent:=ATestForm;
A
Now it is working, thank you :)
On Wed, Feb 14, 2018 at 3:37 PM, Marc Weustink via Lazarus <
lazarus@lists.lazarus-ide.org> wrote:
> Hi all,
>
> Due to a typo, the netmask of the network adapter was /8 instead of /24
>
> Since Lazarus has IP 37.97.187.115, all 37.x.x.x traffic got routed locally
I've been seeing this from time immemorial, probably since 0.something,
both under windows and linux/gtk/qt (though under linux is much more
frequent):
when I select an object on the form, sometimes I see a ghost selection
(or more than one, see the attached screenshots, first one windows,
se