Re: [MSEide-MSEgui-talk] Bug in canvas mode smooth

2013-12-14 Thread wahono sri
After update today updates from git, it's OK for Windows, you fixed it
recently. Thanks

But for Linux (OpenSuse 12.3 64 bit), it still bug and draw very slowly.

What's package it depend on?


Thanks


On 14 December 2013 13:46, Martin Schreiber mse00...@gmail.com wrote:

 On Friday 13 December 2013 17:46:18 wahono sri wrote:
  I just update MSEgui from git, and I found new feature, smooth canvas,
 and
  I try with simple code to draw arc.
 
 ...
 
  And the result on smooth mode is broken as I attached.
 
 Works for me, see attachment. Which OS?

 Martin


 --
 Rapidly troubleshoot problems before they affect your business. Most IT
 organizations don't have a clear picture of how application performance
 affects their revenue. With AppDynamics, you get 100% visibility into your
 Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics
 Pro!
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 ___
 mseide-msegui-talk mailing list
 mseide-msegui-talk@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk




-- 
www.acosys.co.id
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Bug in canvas mode smooth

2013-12-14 Thread wahono sri
Here the screenshot
attachment: bug.png--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Bug in canvas mode smooth

2013-12-14 Thread Martin Schreiber
On Saturday 14 December 2013 17:13:44 wahono sri wrote:
 Here the screenshot

Works for me on 32 bit Linux. Can you test on 32 bit?

Martin

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Bug in canvas mode smooth

2013-12-14 Thread Martin Schreiber
On Saturday 14 December 2013 17:13:03 wahono sri wrote:
 After update today updates from git, it's OK for Windows, you fixed it
 recently. Thanks

 But for Linux (OpenSuse 12.3 64 bit), it still bug and draw very slowly.

 What's package it depend on?

Solely XRender.

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MSElang, implicit type conversions

2013-12-14 Thread Ivanko B
I think there should be no implicit type conversions in MSElang.
===
Maybe no UNSAFE (unsigned -2-signed etc with possible range/precision
loss,..) implicit type conversion ?

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] Maybe tscrollbox bug

2013-12-14 Thread wahono sri
Place a tscrollbox, and set anchor right and bottom to true
Place a button on this tscrollbox
Resize tscrollbox until to left or top of tbutton
repeat resize it once again
You can see tscrollbox is resized to top and left of tbutton

Thanks
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MSElang, implicit type conversions

2013-12-14 Thread Martin Schreiber
On Saturday 14 December 2013 18:24:20 Ivanko B wrote:
 I think there should be no implicit type conversions in MSElang.
 ===
 Maybe no UNSAFE (unsigned -2-signed etc with possible range/precision
 loss,..) implicit type conversion ?

Yes.

var
 i1,i2: integer;
 c1: cardinal;
begin
 f1:= 1.0;            //ok
 f1:= float(1);       //ok
 i1:= 1;              //ok
 c1:= 1;  //ok
 i2:= i1 + c1;//error
end;

Martin

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Maybe tscrollbox bug

2013-12-14 Thread Martin Schreiber
On Saturday 14 December 2013 18:33:16 wahono sri wrote:
 Place a tscrollbox, and set anchor right and bottom to true
 Place a button on this tscrollbox
 Resize tscrollbox until to left or top of tbutton

Design time or run time?

 repeat resize it once again
 You can see tscrollbox is resized to top and left of tbutton

I see nothing special.

Martin

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Maybe tscrollbox bug

2013-12-14 Thread wahono sri
design time and runtime.
It makes problem in docking form


On 15 December 2013 01:51, Martin Schreiber mse00...@gmail.com wrote:

 On Saturday 14 December 2013 18:33:16 wahono sri wrote:
  Place a tscrollbox, and set anchor right and bottom to true
  Place a button on this tscrollbox
  Resize tscrollbox until to left or top of tbutton

 Design time or run time?

  repeat resize it once again
  You can see tscrollbox is resized to top and left of tbutton
 
 I see nothing special.

 Martin


 --
 Rapidly troubleshoot problems before they affect your business. Most IT
 organizations don't have a clear picture of how application performance
 affects their revenue. With AppDynamics, you get 100% visibility into your
 Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics
 Pro!
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 ___
 mseide-msegui-talk mailing list
 mseide-msegui-talk@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk




-- 
www.acosys.co.id
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Maybe tscrollbox bug

2013-12-14 Thread Martin Schreiber
On Saturday 14 December 2013 20:04:18 wahono sri wrote:
 design time and runtime.
 It makes problem in docking form

Then I need a testcase and exact steps how to reproduce.

Martin

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MSElang, implicit type conversions

2013-12-14 Thread Martin Schreiber
On Saturday 14 December 2013 18:47:22 Martin Schreiber wrote:
 
 var
  i1,i2: integer;
  c1: cardinal;
 begin
  f1:= 1.0;            //ok
  f1:= float(1);       //ok
  i1:= 1;              //ok
  c1:= 1;  //ok
  i2:= i1 + c1;//error
 end;
 
Correction:

var
 i1,i2: integer;
 c1: cardinal;
begin
 i1:= 1;  //ok
 c1:= 1;  //ok
 i2:= i1 + c1;//error
end;


Martin



--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MSElang, implicit type conversions

2013-12-14 Thread Martin Schreiber
On Saturday 14 December 2013 19:59:34 Ivanko B wrote:
 With easy-to-get descriptive error messages, correct ?

Yes, 'Error: Icompatible types: got cardinal expected integer'.

Martin

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MSElang, implicit type conversions

2013-12-14 Thread Ivanko B
Or avoiding boring investigations: denying to assign unsigned to
signed because of possible value truncation - use explicit typecast if
sure what You're doing.

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Maybe tscrollbox bug

2013-12-14 Thread Martin Schreiber
On Saturday 14 December 2013 20:58:15 wahono sri wrote:
 Here it is, it's very simple project but you can see the big bug :)

The fillarc problem most likely is 64 bit only, see attachment. What is the 
problem with the scrollbox? an_bottom, an right widgets do not trigger 
extending of virtual form client area with scrollbars until the shrinking is 
limited by embedded widgets.

Martin
attachment: smooth.png--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MSElang, implicit type conversions

2013-12-14 Thread Martin Schreiber
On Saturday 14 December 2013 21:09:38 Ivanko B wrote:
 Or avoiding boring investigations: denying to assign unsigned to
 signed because of possible value truncation - use explicit typecast if
 sure what You're doing.

Rejected. ;-)

Martin

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Maybe tscrollbox bug

2013-12-14 Thread wahono sri
Hi Martin, Did you find the solution for tcrollbox bug?

Or any properties should be set to avoid stretced scrollbox?

Thanks
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Maybe tscrollbox bug

2013-12-14 Thread wahono sri
In my simple test project above, I want to set tscrollbox strecth to form
size when form is resized, than I should set the properties :

- anchor : an_right, an_bottom = true
- bounds : cx = 790 ( or drag right scrollbox to form border)
- bounds : cy = 200 ( or drag right scrollbox to form border)

Yo will see tscollbox is stretched to tbutton1 position


On 15 December 2013 14:24, Martin Schreiber mse00...@gmail.com wrote:

 On Saturday 14 December 2013 21:53:58 wahono sri wrote:
  tscrollbox is resized to maximum object position, and we want to resize
  tscrollbox only to form area, this is the function of scrollbox
 
 I don't understand, please explain more.

 Martin


 --
 Rapidly troubleshoot problems before they affect your business. Most IT
 organizations don't have a clear picture of how application performance
 affects their revenue. With AppDynamics, you get 100% visibility into your
 Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics
 Pro!
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 ___
 mseide-msegui-talk mailing list
 mseide-msegui-talk@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk




-- 
www.acosys.co.id
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Maybe tscrollbox bug

2013-12-14 Thread Martin Schreiber
On Sunday 15 December 2013 08:32:11 wahono sri wrote:
 In my simple test project above, I want to set tscrollbox strecth to form
 size when form is resized, than I should set the properties :

 - anchor : an_right, an_bottom = true
 - bounds : cx = 790 ( or drag right scrollbox to form border)
 - bounds : cy = 200 ( or drag right scrollbox to form border)

 Yo will see tscollbox is stretched to tbutton1 position

I probably understand now, there is a new feature in 
tcustomscalingwidget.getminshrinksize(). It probably should be made optional 
or switched off for tscrollbox. I'll have a look.

Martin

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk