Re: [MSEide-MSEgui-talk] Twidgetgrid and assitive interface.

2016-12-06 Thread Fred van Stappen
>> ;-) Yes, thanks but... does it search for frame.Caption or hint too ? (I >> know, I am insupportable.) > Sure. That it does search for frame or that I am insupportable or both ? ;-) OK I will do some comparaison and decide after if i switch to getassistivecaption(). The thing is that with

Re: [MSEide-MSEgui-talk] Twidgetgrid and assitive interface.

2016-12-06 Thread Martin Schreiber
On 12/06/2016 01:13 PM, Fred van Stappen wrote: > >> Maybe use "iaSender.getassistivecaption()" instead? > > ;-) Yes, thanks but... does it search for frame.Caption or hint too ? (I > know, I am insupportable.) > Sure. The purpose of iassistiveclient is to provide the assistive server with the

Re: [MSEide-MSEgui-talk] Twidgetgrid and assitive interface.

2016-12-06 Thread Fred van Stappen
>> But selecting a "boolean" cell, there is a access violation error (see >> attachment twidgetgrid_crash.jpg). > function TSak.WhatName(iaSender: iassistiveclient): msestring; > [...] > if (Sender is tbooleaneditradio) then > begin > if (trim(Tbooleaneditradio(Sender).frame.Caption) <> '')

Re: [MSEide-MSEgui-talk] Twidgetgrid and assitive interface.

2016-12-05 Thread Martin Schreiber
On 12/05/2016 10:23 PM, Fred van Stappen wrote: > > Hello. > > > This a continuation of: > > > On Monday 05 December 2016 15:29:08 Fred van Stappen wrote: >> >> But there are some that make trouble. >> >> It is those in projectoptionsfo with boolean cells. >> There is a Access violation error

[MSEide-MSEgui-talk] Twidgetgrid and assitive interface.

2016-12-05 Thread Fred van Stappen
Hello. This a continuation of: On Monday 05 December 2016 15:29:08 Fred van Stappen wrote: > > But there are some that make trouble. > > It is those in projectoptionsfo with boolean cells. > There is a Access violation error when selecting a "boolean" cell (cell > with X). > > I do not find

Re: [MSEide-MSEgui-talk] twidgetgrid - how to hide standard popupmenu?

2016-11-24 Thread Martin Schreiber
On 11/24/2016 08:59 PM, Krzysztof wrote: > > Thanks. I need to update popup items before it show, is tpopupmenu.OnUpdate > for it? Because tpopupmenu.menu.onbeforeexecute is never fired > Yes. onbeforeexecute is fired if the menu item has been clicked. If it never is called it is a bug. Martin

Re: [MSEide-MSEgui-talk] twidgetgrid - how to hide standard popupmenu?

2016-11-24 Thread Krzysztof
2016-11-24 7:11 GMT+01:00 Martin Schreiber : > > > On 23.11.2016 21:58, Krzysztof wrote: > > Hi Martin, > > > > Assigned own tpopupmenu to the twidgetgrid and it appear below > > standard popupmenu (Undo, Copy...). How to hide this standard menu and > > show only my? Can't

Re: [MSEide-MSEgui-talk] twidgetgrid - how to hide standard popupmenu?

2016-11-23 Thread Martin Schreiber
On 23.11.2016 21:58, Krzysztof wrote: > Hi Martin, > > Assigned own tpopupmenu to the twidgetgrid and it appear below > standard popupmenu (Undo, Copy...). How to hide this standard menu and > show only my? Can't find it in optionswidget. > Please disable tcustomgrid.optionsgrid og_autopopup.

[MSEide-MSEgui-talk] twidgetgrid - how to hide standard popupmenu?

2016-11-23 Thread Krzysztof
Hi Martin, Assigned own tpopupmenu to the twidgetgrid and it appear below standard popupmenu (Undo, Copy...). How to hide this standard menu and show only my? Can't find it in optionswidget. Regards --

Re: [MSEide-MSEgui-talk] twidgetgrid - OnDoubleClick event?

2016-11-04 Thread Krzysztof
2016-11-04 11:29 GMT+01:00 Martin Schreiber : > On Friday 04 November 2016 00:12:53 Krzysztof wrote: > > Hi Martin, > > > > I would like to do something when double click on ttreeitemedit. What is > > the easiest whay to do that? ttreeitemedit.onmouseevent? > > > In

Re: [MSEide-MSEgui-talk] twidgetgrid - OnDoubleClick event?

2016-11-04 Thread Martin Schreiber
On Friday 04 November 2016 00:12:53 Krzysztof wrote: > Hi Martin, > > I would like to do something when double click on ttreeitemedit. What is > the easiest whay to do that? ttreeitemedit.onmouseevent? > In ttreeitemedit.onmouseevent use twidget.isdblclick(ainfo). Another option is

[MSEide-MSEgui-talk] twidgetgrid - OnDoubleClick event?

2016-11-03 Thread Krzysztof
Hi Martin, I would like to do something when double click on ttreeitemedit. What is the easiest whay to do that? ttreeitemedit.onmouseevent? Regards. -- Developer Access Program for Intel Xeon Phi Processors Access to

Re: [MSEide-MSEgui-talk] Twidgetgrid assisted.

2015-12-13 Thread Fred van Stappen
> > If you are inside the engine, could you check TButton.onclick (It is not > > working here on Linux). > > > MSEgui tbutton has no onclick property? What do you mean with "It is not > working"? Hello Martin. tbutton.eventkind = ek_buttonpress is working perfectly for assistive. (There was a

Re: [MSEide-MSEgui-talk] Twidgetgrid assisted.

2015-12-12 Thread Fred van Stappen
> (experimental). Ok, many thanks, I will study and understand your code. > Please refer to the updated assistivemonitor example in order to check how to > use. > https://gitlab.com/mseide-msegui/mseuniverse/tree/master/testcase/assistive/monitor Perfect, same that for your experimental, I

Re: [MSEide-MSEgui-talk] Twidgetgrid assisted.

2015-12-11 Thread Fred van Stappen
> I am currently extending iassitiveclient for more convenience. I'll report > when it is ready. Huh, perfect, many thanks. If you are inside the engine, could you check TButton.onclick (It is not working here on Linux). Tbutton.onmousemove and onenter works perfectly. (But maybe it is a

Re: [MSEide-MSEgui-talk] Twidgetgrid assisted.

2015-12-11 Thread Martin Schreiber
On Friday 11 December 2015 14:18:11 Fred van Stappen wrote: > > I am currently extending iassitiveclient for more convenience. I'll > > report when it is ready. > > Huh, perfect, many thanks. > > If you are inside the engine, could you check TButton.onclick (It is not > working here on Linux). >

Re: [MSEide-MSEgui-talk] Twidgetgrid assisted.

2015-12-11 Thread Martin Schreiber
On Thursday 10 December 2015 17:14:03 Martin Schreiber wrote: > On Thursday 10 December 2015 16:56:05 Fred van Stappen wrote: > > I am currently extending iassitiveclient for more convenience. I'll report > when it is ready. > git master 8498d3f5d9ac0e3f44fb8e983dbb31f2aa4b1228 has: " type

Re: [MSEide-MSEgui-talk] Twidgetgrid assisted.

2015-12-10 Thread Fred van Stappen
Thanks Martin for explanation. When I get your ok about Twidgetgrid-assisted in mse, I jump in code. Fre;D -- ___ mseide-msegui-talk

Re: [MSEide-MSEgui-talk] Twidgetgrid assisted.

2015-12-10 Thread Martin Schreiber
On Thursday 10 December 2015 16:56:05 Fred van Stappen wrote: > Thanks Martin for explanation. > > When I get your ok about Twidgetgrid-assisted in mse, I jump in code. > I am currently extending iassitiveclient for more convenience. I'll report when it is ready. Martin

[MSEide-MSEgui-talk] Twidgetgrid assisted.

2015-12-09 Thread Fred van Stappen
Hello Martin. I am busy to make twidgetgrid assisted. But I do not catch how it works in mseide. How to have the same assistive-result as a tmemoedit with the grid in sourcepage.pas ? What is the difference with twidgetgrid vs tstringgrid ? Is your assistive-interface ready for twidgetgrid

Re: [MSEide-MSEgui-talk] Twidgetgrid assisted.

2015-12-09 Thread Martin Schreiber
On Wednesday 09 December 2015 22:01:29 Fred van Stappen wrote: > Hello Martin. > > I am busy to make twidgetgrid assisted. > > But I do not catch how it works in mseide. > > How to have the same assistive-result as a tmemoedit with the grid in > sourcepage.pas ? > > What is the difference with

Re: [MSEide-MSEgui-talk] twidgetgrid horizontal scrolling

2013-03-25 Thread Martin Schreiber
On Sunday 24 March 2013 20:05:23 Patrick Goupell wrote: I have a form with 2 twidgetgrids (see attached image). If I horizontally scroll thru the columns of the bottom grid I would like to top grid to scroll and show the same columns as is visible in the bottom grid. What properties in the

[MSEide-MSEgui-talk] twidgetgrid onevent question

2013-03-20 Thread Patrick Goupell
In a twidgetgrid what is the purpose of onselectionchanged? What, if anything, needs to be set to cause it to fire? In the datacols.col what is the purpose of onselectionchanged? What, if anything, needs to be set to cause it to fire? Thanks. Patrick

Re: [MSEide-MSEgui-talk] twidgetgrid onevent question

2013-03-20 Thread Martin Schreiber
On Wednesday 20 March 2013 14:06:27 Patrick Goupell wrote: In a twidgetgrid what is the purpose of onselectionchanged? Should be called if cell selection state of the grid changes. What, if anything, needs to be set to cause it to fire? Change the selection state of a cell of the grid. In

Re: [MSEide-MSEgui-talk] twidgetgrid onevent question

2013-03-20 Thread Patrick Goupell
On 03/20/2013 12:23 PM, Martin Schreiber wrote: Change the selection state of a cell of the column. For example the property tdatacol.selected can be used to change the selection state of a cell. I guess that is not what I really wanted to know. What I really want to know is in a

[MSEide-MSEgui-talk] twidgetgrid onrowdatachanged

2013-03-18 Thread Patrick Goupell
I have set an event handler for onrowdatachanged in my twidgetgrid but it does not seem to fire after I changed some column gridvalues and moved the focus to a different row. Do I have to set anything besides the on event handler in the properties? Thank you. Patrick

Re: [MSEide-MSEgui-talk] twidgetgrid onrowdatachanged

2013-03-18 Thread Martin Schreiber
On Monday 18 March 2013 15:51:30 Patrick Goupell wrote: I have set an event handler for onrowdatachanged in my twidgetgrid but it does not seem to fire after I changed some column gridvalues and moved the focus to a different row. Do I have to set anything besides the on event handler in the

Re: [MSEide-MSEgui-talk] twidgetgrid multiselect

2013-03-11 Thread Patrick Goupell
On 03/10/2013 01:03 PM, Martin Schreiber wrote: On Sunday 10 March 2013 12:24:31 Patrick Goupell wrote: On 03/10/2013 12:32 AM, Martin Schreiber wrote: You mean the value of cell[1,1] copying multiple times to cell[1,2]..[1,10]? This is not implemented. Should it be implemented? Yes, that

Re: [MSEide-MSEgui-talk] twidgetgrid multiselect

2013-03-11 Thread Ivanko B
Or tools/msedirclear. 2013/3/11, Martin Schreiber mse00...@gmail.com: On Monday 11 March 2013 14:30:39 Patrick Goupell wrote: Attempt to compile on 64 bit debian wheezy gets: Try build instead of make. Martin --

Re: [MSEide-MSEgui-talk] twidgetgrid multiselect

2013-03-10 Thread Martin Schreiber
On Sunday 10 March 2013 12:24:31 Patrick Goupell wrote: On 03/10/2013 12:32 AM, Martin Schreiber wrote: You mean the value of cell[1,1] copying multiple times to cell[1,2]..[1,10]? This is not implemented. Should it be implemented? Yes, that is what I mean. It is what an excel spreadsheet

Re: [MSEide-MSEgui-talk] twidgetgrid multiselect

2013-03-10 Thread Martin Schreiber
On Saturday 09 March 2013 07:47:44 Martin Schreiber wrote: On Friday 08 March 2013 20:50:09 Patrick Goupell wrote: I would not expect the column of selected cells to deselect. Or is this normal for a twidgetgrid? The MSEgui grids reset the cell selection by changing the focused cell,

Re: [MSEide-MSEgui-talk] twidgetgrid multiselect

2013-03-10 Thread Ivanko B
Patrick, we definitely need an entry on the main site for instant writting to the MSEgui library reference so that not to loose these things in future. -- Symantec Endpoint Protection 12 positioned as A LEADER in The

Re: [MSEide-MSEgui-talk] twidgetgrid multiselect

2013-03-10 Thread Martin Schreiber
On Sunday 10 March 2013 12:24:31 Patrick Goupell wrote: On 03/10/2013 12:32 AM, Martin Schreiber wrote: You mean the value of cell[1,1] copying multiple times to cell[1,2]..[1,10]? This is not implemented. Should it be implemented? Yes, that is what I mean. It is what an excel spreadsheet

Re: [MSEide-MSEgui-talk] twidgetgrid multiselect

2013-03-10 Thread Sieghard
Hallo Ivanko, Du schriebst am Sun, 10 Mar 2013 18:34:12 +0500: Patrick, we definitely need an entry on the main site for instant writting to the MSEgui library reference so that not to loose these things in future. That's very true and very much needed. On the other hnad: Don't you (also)

Re: [MSEide-MSEgui-talk] twidgetgrid multiselect

2013-03-09 Thread Patrick Goupell
On 03/09/2013 01:47 AM, Martin Schreiber wrote: The MSEgui grids reset the cell selection by changing the focused cell, I'll add an option to inhibit that behaviour. Either right click into the currently focused cell or activate co_leftbuttonfocusonly. Activate co_cancopy/co_canpaste. I

Re: [MSEide-MSEgui-talk] twidgetgrid multiselect

2013-03-09 Thread Martin Schreiber
On Saturday 09 March 2013 19:48:53 Patrick Goupell wrote: On 03/09/2013 11:00 AM, Martin Schreiber wrote: Works for me. The shortcut for copy cells is Ctrl+Shift+C, for paste Ctrl+Shift+V. For pasting the format must match, columns are separated by Tab, rows by Linefeed. In order to insert

Re: [MSEide-MSEgui-talk] twidgetgrid multiselect

2013-03-08 Thread Patrick Goupell
Thank you Patrick -- Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester Wave(TM): Endpoint Security, Q1 2013 and remains a good choice in the endpoint security space. For insight on selecting

Re: [MSEide-MSEgui-talk] twidgetgrid multiselect

2013-03-08 Thread Patrick Goupell
On 03/08/2013 01:12 PM, Ivanko B wrote: rowselect mouseselect ? I select and copy a single cell to the clipboard. I then click on a different cell, then shift click another cell so I have a column of cells selected. If I right click I get a popup menu with copy / paste / paste cells and

Re: [MSEide-MSEgui-talk] twidgetgrid

2013-03-05 Thread Ivanko B
Hmm.. a full replacement of FPC if fastest build time is an issue there's a need to use BPL DLLs in MSEgui code ? -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics

[MSEide-MSEgui-talk] twidgetgrid gridvalue

2013-03-05 Thread Patrick Goupell
I have a twidgetgrid with 55 columns. I know how to access the gridvalues using the column component name. But I don't really want to code wgcol1name.gridvalue := something; wgcol2name.gridvalue := something; wgcol3name.gridvalue := something; wgcol4name.gridvalue := something; Is there a

Re: [MSEide-MSEgui-talk] twidgetgrid

2013-03-05 Thread Martin Schreiber
On Tuesday 05 March 2013 06:48:04 Martin Schreiber wrote: On Monday 04 March 2013 20:53:11 Graeme Geldenhuys wrote: On 2013-03-04 19:26, Ivanko B wrote: Does Kylix here mean the need in quite old QT libs on target machines ? What is the running envirionment ? No, simply using the dcc

Re: [MSEide-MSEgui-talk] twidgetgrid

2013-03-05 Thread Ivanko B
Next step could be usind Delphi/Kylix IDE for debugging MSEgui apps :) That's w/o GDB. -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today:

Re: [MSEide-MSEgui-talk] twidgetgrid

2013-03-04 Thread Ivanko B
Does Kylix here mean the need in quite old QT libs on target machines ? What is the running envirionment ? -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite

Re: [MSEide-MSEgui-talk] twidgetgrid

2013-03-04 Thread Graeme Geldenhuys
On 2013-03-04 19:26, Ivanko B wrote: Does Kylix here mean the need in quite old QT libs on target machines ? What is the running envirionment ? No, simply using the dcc (kylix) compiler (not the Kylix IDE), doesn't mean you need Qt. MSEgui and MSEide doesn't use QT either, so you compile from

Re: [MSEide-MSEgui-talk] twidgetgrid

2013-03-04 Thread Martin Schreiber
On Monday 04 March 2013 20:53:11 Graeme Geldenhuys wrote: On 2013-03-04 19:26, Ivanko B wrote: Does Kylix here mean the need in quite old QT libs on target machines ? What is the running envirionment ? No, simply using the dcc (kylix) compiler (not the Kylix IDE), doesn't mean you need Qt.

Re: [MSEide-MSEgui-talk] twidgetgrid

2013-03-03 Thread Patrick Goupell
While doing a google search for twidgetgrid I found postings about mseide+msegui on this website: http://en.usenet.digipedia.org Are there other mseide+msegui forums besides the msetalk forum on news.gmane.org? Or is this just an old forum site? Patrick

Re: [MSEide-MSEgui-talk] twidgetgrid

2013-03-03 Thread Patrick Goupell
I also found the answer to my problem for the twidgetgrid. Patrick -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today:

Re: [MSEide-MSEgui-talk] twidgetgrid

2013-03-03 Thread Martin Schreiber
On Sunday 03 March 2013 17:56:52 Patrick Goupell wrote: While doing a google search for twidgetgrid I found postings about mseide+msegui on this website: http://en.usenet.digipedia.org Are there other mseide+msegui forums besides the msetalk forum on news.gmane.org? Or is this just an old

Re: [MSEide-MSEgui-talk] twidgetgrid

2013-03-03 Thread Martin Schreiber
On Sunday 03 March 2013 18:08:10 Patrick Goupell wrote: I also found the answer to my problem for the twidgetgrid. Sorry, I forgot your mail because of the very hard Delphi/Kylix job. There are examples on mseuniverse. Please place the needed editwidgets in the widgetgrid. Martin

[MSEide-MSEgui-talk] twidgetgrid

2013-03-02 Thread Patrick Goupell
Is there an example of a twidgetgrid? I want a widgetgrid that has some stringedits, integeredits, and droplistedit components in it. Thank you. Patrick -- Everyone hates slow websites. So do we. Make your web apps

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-04 Thread Martin Schreiber
On Monday 04 February 2013 07:50:59 Ivanko B wrote: Please try with the attached photos :) [200K archive] (especially choose small) Empty memory is 1796kB, after loading 2260kB, after clearing the grid 2012kB. Martin

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-04 Thread Ivanko B
Looks nice :) Some utlities have good decent conversion speed: 1) http://www.graphicsmagick.org/GraphicsMagick.html genetares thumbnails 48x48 from 6M JPEG in a half os second for %%f in (*.jpg) do gm convert %%f -thumbnail 48x48 -gravity center .\rsz\gm_%%f 1) ffmpeg (libswscale) : # for %%f

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-04 Thread Martin Schreiber
On Monday 04 February 2013 16:44:51 Ivanko B wrote: Looks nice :) Some utlities have good decent conversion speed: 1) http://www.graphicsmagick.org/GraphicsMagick.html genetares thumbnails 48x48 from 6M JPEG in a half os second for %%f in (*.jpg) do gm convert %%f -thumbnail 48x48 -gravity

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Martin Schreiber
On Sunday 03 February 2013 20:32:01 Ivanko B wrote: - unpack the attached project - put many 100KB..200KB JPG files to the project directory - build run the project The project should show small previews for the images. for i:= 0 to high(filenames) do begin r:=

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Ivanko B
Load the thumbs in a timagelist and use a tlistviw for displaying. = How to get these thumbs so that not to take 150..200M of RAM for 35..40 of 100K JPEGs ? (the testcase east 145..160M of RAM fro these)

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Ivanko B
It dosn't buil on vanilla FPC 2,.6.0: === Compiling D:\GITROOT\mseide-msegui\lib\common\kernel\windows\msewindnd.pas Compiling main.pas Compiling main_mfm.pas Compiling D:\GITROOT\mseide-msegui\lib\common\image\mseformattiffread.pas Compiling

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Martin Schreiber
On Monday 04 February 2013 05:50:54 Ivanko B wrote: It dosn't buil on vanilla FPC 2,.6.0: === Compiling D:\GITROOT\mseide-msegui\lib\common\kernel\windows\msewindnd.pas Compiling main.pas Compiling main_mfm.pas Compiling

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Ivanko B
Not git-pushed yet :) -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_jan

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Ivanko B
100+Mbytes looks strange. With the widgetgrid based testcase at Yours ? -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today:

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Martin Schreiber
On Monday 04 February 2013 06:29:54 Ivanko B wrote: Not git-pushed yet :) It is, see attachment. Please note the *master* branch. Martin attachment: gitorious.png-- Everyone hates slow websites. So do we. Make your web

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Martin Schreiber
On Monday 04 February 2013 06:40:33 Ivanko B wrote: 100+Mbytes looks strange. With the widgetgrid based testcase at Yours ? I don't have so much images. ;-) Martin -- Everyone hates slow websites. So

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Ivanko B
It is, see attachment. Please note the *master* branch. Me use mclasses as the default. Should me switch back to the master one ? -- Everyone hates slow websites. So do we. Make your web apps

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Martin Schreiber
On Monday 04 February 2013 06:59:18 Ivanko B wrote: It is, see attachment. Please note the *master* branch. Me use mclasses as the default. Should me switch back to the master one ? Yes, mclasses has been merged to master.

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Ivanko B
The listview example shows empty area for aprox 30 JPEGs after 1 minute of waiting. -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today:

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Ivanko B
But 50...100 times as slower compared to preview window of XNView (for 102 files of total size 53MB ) -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Ivanko B
FastImageResizer 0.98 (considered to be a good resizer) shows results similar to the listview project. It seems that XNview applies some kind of trickery :) -- Everyone hates slow websites. So do we. Make your web apps

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Ivanko B
fpImage is slow. === No too much. Really 1.5..2 as slower times compared to FastImageResizer. -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download

Re: [MSEide-MSEgui-talk] TWidgetGrid TDataImage-s : errors on reading draphic data

2013-02-03 Thread Ivanko B
And others resizers too :) -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_jan

[MSEide-MSEgui-talk] twidgetgrid

2013-01-17 Thread Patrick Goupell
I am trying to use a ttreeitemedit in a twidgetgrid for a treeview. I want to dynamically build and destroy the treeview. When I try to clear the first build of the twidgetgrid (twidgetgrid.rowcount := 0;) I get an access error. How do I safely clear the twidgetgrid / treeview? Patrick

Re: [MSEide-MSEgui-talk] twidgetgrid

2013-01-17 Thread Martin Schreiber
On Thursday 17 January 2013 19:30:05 Patrick Goupell wrote: I am trying to use a ttreeitemedit in a twidgetgrid for a treeview. I want to dynamically build and destroy the treeview. When I try to clear the first build of the twidgetgrid (twidgetgrid.rowcount := 0;) I get an access error.

Re: [MSEide-MSEgui-talk] twidgetgrid + tdataimage

2012-10-27 Thread Martin Schreiber
On Friday 26 October 2012 19:13:56 Alexandre Minoshi wrote: tdataimage1.gridvalue[i] := readfiledatastring(path to file); Program crashed if file not found : === An unhandled exception occurred at $0813CACF : EFCreateError : Unable to open file

Re: [MSEide-MSEgui-talk] twidgetgrid + tdataimage

2012-10-27 Thread Martin Schreiber
On Friday 26 October 2012 19:13:56 Alexandre Minoshi wrote: tdataimage1.gridvalue[i] := readfiledatastring(path to file); Program crashed if file not found : === BTW, if you don't want to crash the program by an exception move the critical code from onloaded to

[MSEide-MSEgui-talk] twidgetgrid + tdataimage

2012-10-26 Thread Alexandre Minoshi
Hello! Today two questions: 1. How to use twidgetgrid + tdataimage? For example I want to show list of pictures and descriptions for them. I try next code twidgetgrid1.rowcount := 3; for i := 0 to 3 do begin tdataimage1[i] := path to file; tstringedit1[i] := 'This is picture number ' +

Re: [MSEide-MSEgui-talk] twidgetgrid + tdataimage

2012-10-26 Thread Martin Schreiber
On Friday 26 October 2012 17:49:37 Alexandre Minoshi wrote: Hello! Today two questions: 1. How to use twidgetgrid + tdataimage? For example I want to show list of pictures and descriptions for them. I try next code twidgetgrid1.rowcount := 3; for i := 0 to 3 do begin tdataimage1[i]

Re: [MSEide-MSEgui-talk] twidgetgrid + tdataimage

2012-10-26 Thread Alexandre Minoshi
Thank you very much. Yours, Alexandre Minoshi On Friday 26 October 2012 17:49:37 Alexandre Minoshi wrote: Hello! Today two questions: 1. How to use twidgetgrid + tdataimage? For example I want to show list of pictures and descriptions for them. I try next code twidgetgrid1.rowcount := 3;

Re: [MSEide-MSEgui-talk] twidgetgrid + tdataimage

2012-10-26 Thread Alexandre Minoshi
tdataimage1.gridvalue[i] := readfiledatastring(path to file); Program crashed if file not found : === An unhandled exception occurred at $0813CACF : EFCreateError : Unable to open file /mnt/data/projects/mse/mplayer/xelplayer14 Победа $0813CACF TMSEFILESTREAM__CREATE, line

Re: [MSEide-MSEgui-talk] twidgetgrid + tdataimage

2012-10-26 Thread Sieghard
Hallo Alexandre, Du schriebst am Sat, 27 Oct 2012 00:13:56 +0700: tdataimage1.gridvalue[i] := readfiledatastring(path to file); Program crashed if file not found : That's probabely intended behaviour - there are no data to process if there is no file to provide them. That's why there are