Re: [MSEide-MSEgui-talk] MSEide+MSEgui 4.0beta1 for FPC 3.0

2015-10-12 Thread Martin Schreiber
On Monday 12 October 2015 10:28:40 che fou wrote: > just because the way how it works , for example if you want to > displace a window and make its layout verticaly with other window , > you have to do : > 1 - press the circle button The circle button can be hidden by removing go_lockbutton,

Re: [MSEide-MSEgui-talk] MSEide+MSEgui 4.0beta1 for FPC 3.0

2015-10-12 Thread Graeme Geldenhuys
On 2015-10-12 09:44, Martin Schreiber wrote: > I seldom was able to achieve the wanted layouts with that functionality. Indeed. Once I got the hang of MSEide's panels and docking, I was very impressed with how well it works and how flexible layout one can achieve. The other important point is

Re: [MSEide-MSEgui-talk] MSEide+MSEgui 4.0beta1 for FPC 3.0

2015-10-12 Thread che fou
i am sure the simple user will be afraid if he seen this -- ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net

Re: [MSEide-MSEgui-talk] MSEide+MSEgui 4.0beta1 for FPC 3.0

2015-10-12 Thread che fou
is it possible to show the panel caption if the circle button is pressed ? 2015-10-12 11:51 UTC+01:00, che fou : > i am sure the simple user will be afraid if he seen this > --

Re: [MSEide-MSEgui-talk] MSEide+MSEgui 4.0beta1 for FPC 3.0

2015-10-12 Thread Martin Schreiber
On Monday 12 October 2015 13:09:09 che fou wrote: > is it possible to show the panel caption if the circle button is pressed ? > > 2015-10-12 11:51 UTC+01:00, che fou : > > i am sure the simple user will be afraid if he seen this > The caption is a part of the grip frame and is

Re: [MSEide-MSEgui-talk] MSEide+MSEgui 4.0beta1 for FPC 3.0

2015-10-12 Thread Martin Schreiber
On Monday 12 October 2015 12:51:33 che fou wrote: > i am sure the simple user will be afraid if he seen this Because of that we have the circle button. ;-) What can be improved is that it is better visible to which frame the buttons belong. I'll have a look. Martin

[MSEide-MSEgui-talk] how to build with Pascal Script

2015-10-12 Thread liug2
when i create a psexec build with fpc-3.0.0rc1 procedure tmainfo.click(const sender: TObject); var psexec:TPSScript; begin psexec:= TPSScript.Create(classes.TComponent(SELF)) end; error --

Re: [MSEide-MSEgui-talk] how to build with Pascal Script

2015-10-12 Thread liug2
> > procedure tmainfo.click(const sender: TObject); > var psexec:TPSScript; > begin > > psexec:= TPSScript.Create(classes.TComponent(SELF)) > end; > > > error > > > can be builded ,but when run ,then error --

Re: [MSEide-MSEgui-talk] how to build with Pascal Script

2015-10-12 Thread Martin Schreiber
On Tuesday 13 October 2015 05:19:03 liug2 wrote: > > procedure tmainfo.click(const sender: TObject); > > var psexec:TPSScript; > > begin > > > > psexec:= TPSScript.Create(classes.TComponent(SELF)) > > end; > > tmainfo does not inherit from "classes.TComponent" but from "mclasses.TComponent". You