Re: [MSEide-MSEgui-talk] simple listview from freepascal.ru :)

2014-07-14 Thread Martin Schreiber
On Monday 14 July 2014 10:06:27 Martin Schreiber wrote: Instead to use tmsesqlquery one could use tsqlresult for readonly queries which is even faster. :-) See attachment. Martin object mainfo: tmainfo bounds_x = 69 bounds_y = 139 bounds_cx = 441 bounds_cy = 336 container.bounds = (

Re: [MSEide-MSEgui-talk] simple listview from freepascal.ru :)

2014-07-14 Thread amateur
Ola -la... :) I just checked how quickly can import unknown projects in mse, and test the behavior. Without much change. -- Want fast and easy access to all the code in your enterprise? Index and search up to 200,000

Re: [MSEide-MSEgui-talk] simple listview from freepascal.ru :)

2014-07-14 Thread amateur
... and the base rate testing is needed more... For example i test opening (and showing) large cvs table (~ 1 000 000 row). All test in ubuntu and window (XP and 7). Used dbgrid and stringgrid... MSE vs Lazarus. MSE win. I tried to optimize display in lazarus. But

Re: [MSEide-MSEgui-talk] simple listview from freepascal.ru :)

2014-07-14 Thread Martin Schreiber
On Monday 14 July 2014 12:54:37 Martin Schreiber wrote: On Monday 14 July 2014 12:22:31 amateur wrote: ... and the base rate testing is needed more... For example i test opening (and showing) large cvs table (~ 1 000 000 row). BTW, for reading CVS-files

Re: [MSEide-MSEgui-talk] MSElang: Multiple inheritance for interfaces

2014-07-14 Thread Ivanko B
It does not compile for me: === As long as cls = class (i1,i2) compiles. -- Want fast and easy access to all the code in your enterprise? Index and search up to 200,000 lines of code with a free copy of

Re: [MSEide-MSEgui-talk] MSElang: Multiple inheritance for interfaces

2014-07-14 Thread Martin Schreiber
On Monday 14 July 2014 18:08:46 Ivanko B wrote: It does not compile for me: === As long as cls = class (i1,i2) compiles. That does not compile. :-) cls = class (ancestorclass,i1,i2) compiles. Martin

Re: [MSEide-MSEgui-talk] MSElang: Multiple inheritance for interfaces

2014-07-14 Thread Ivanko B
Then it behaves like a bug. -- Want fast and easy access to all the code in your enterprise? Index and search up to 200,000 lines of code with a free copy of Black Duck#174; Code Sight#153; - the same software that powers

Re: [MSEide-MSEgui-talk] MSElang: Multiple inheritance for interfaces

2014-07-14 Thread Martin Schreiber
On Monday 14 July 2014 21:25:13 Ivanko B wrote: Then it behaves like a bug. ??? The first argument is the class ancestor, the second and more are implemented interfaces, please see the FPC documentation. Martin --