Re: [MSEide-MSEgui-talk] Grid

2020-09-20 Thread fredvs
Re-hello Med.

Ooops, in my previous post it will not do what you want: remove the vertical
line of the cell.

So, yes maybe it should be a onPaint from the grid himself, not a cell of
the grid.

So maybe like you proposed with grid.onpaint and only re-paint a part of the
canvas, corresponding where is the vertical line not wanted.

Fre;D






--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2020-09-20 Thread fredvs
> I believe that the work is around OnPaint Event?

Hello Med.

Yes I think it is the easier solution.

You way use grid.datalcols[0].ondrawcell and set as method:

procedure Tmyform.ondrawcell(const Sender: tcol; const Canvas: tcanvas; var
cellinfo: cellinfoty);
begin
if cellinfo.cell.row = -1 then // is fixed row
begin
// paint the canvas of fixed row, col 0 to what you want
end;
end;

Fre;D





--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2020-08-03 Thread mohamed hamza
Hello Fred,

   Thanks for the trick . It would be usable when we have few grids in  the 
project!
I believe that the work is around OnPaint Event?

Med.

De : fredvs 
Envoyé : dimanche 2 août 2020 22:23
À : mseide-msegui-talk@lists.sourceforge.net 

Objet : Re: [MSEide-MSEgui-talk] Grid

Hello Med.

Here the result of your demo without change:


<http://mseide-msegui-talk.13964.n8.nabble.com/file/t2/msegrid1.png>


And here with twidgetgrid1.fixcols.linewidth := 0;


<http://mseide-msegui-talk.13964.n8.nabble.com/file/t2/msegrid2.png>


Till now I did not catch how to hide only the first vertical line of the
first fixed column.
Maybe somebody knows how to do.

Here with a workaround, paste a little tstringdisp without frame with same
blue color in front of the vertical line to hide it:

<http://mseide-msegui-talk.13964.n8.nabble.com/file/t2/msegrid3.png>







--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2020-08-02 Thread fredvs
Hello Med.

Here the result of your demo without change:


 


And here with twidgetgrid1.fixcols.linewidth := 0;


 


Till now I did not catch how to hide only the first vertical line of the
first fixed column.
Maybe somebody knows how to do.

Here with a workaround, paste a little tstringdisp without frame with same
blue color in front of the vertical line to hide it:

 



 



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2020-08-01 Thread fredvs
Hello Med.

Could you give also the source pascal of the capture?

I did not understood what column you want to hide, but setting the width of
the column = 0, would it not be ok?

Fre;D
 



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-11-04 Thread fredvs
Re-re hello Med.

For selected row I use a boolean column : "Selected".

Here on the picture it is the "Mix" column.

 

Fre;D




--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-11-04 Thread fredvs
fredvs wrote
>> Hello,
> 
>>   (ctrl+leftclick)  does not select the curret row in case of
>> tdbwidgetgrid ?
> 
> Are you talking about gridselectedrow sample?
> 
> Here on Linux 64 it works.
> 
> Imho, the sample works like this: if you do (ctrl+leftclick) on a cell it
> will switch selected/unselected.
> 
> If the cell was selected, it become lightr-gray and if you click on button
> "selected row" there will be a list of all previously selected rows (the
> rows in light gray).
> 
> http://mseide-msegui-talk.13964.n8.nabble.com/file/t2/selectrow.png; 
> 
> Fre.D

Re-hello Med.

I think I understood what you want.
You want that on a tdbwidgetgrid, if you use (ctrl+leftclick) , you will
have the same result with tdbstringgrid.

So the row would switch to gray/blank.

I fear that you will need to create you own method for this, using
oncellevent();
It seems that for tdbwidgetgrid it is not enabled by default.

May I ask you why you do not want to use a tdbstringgrid in place of a
tdbwidgetgrid?

Fre.D







--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-11-04 Thread fredvs
> Hello,

>   (ctrl+leftclick)  does not select the curret row in case of
> tdbwidgetgrid ?

Are you talking about gridselectedrow sample?

Here on Linux 64 it works.

Imho, the sample works like this: if you do (ctrl+leftclick) on a cell it
will switch selected/unselected.

If the cell was selected, it become lightr-gray and if you click on button
"selected row" there will be a list of all previously selected rows (the
rows in light gray).

 

Fre.D




--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-11-03 Thread fredvs
> by  way the   example in  ( mseuniverse\samples\db\gridselectedrow\)  works
only when the grid is  a tdbstringgrid and not  for a tdbwidgetgrid.

Hum, indeed, if adding in the sample:

---
procedure tmainfo.oncellev(const sender: TObject; var info:
celleventinfoty);
begin
if (info.eventkind = cek_buttonpress) then // that was missing

if (ss_double in info.mouseeventinfopo^.shiftstate) then
  begin  
 // here what to do if double-click on the cell
 end;
end;

I get, while compliing that error message:

main.pas(47,22) Error: Identifier not found "cek_buttonpress"
main.pas(56) Fatal: There were 1 errors compiling module, stopping

Strange because property oncellevent is published in tdbwidgetgrid (who is
descendant from tcustomdbwidgetgrid).

Sorry, I am lost.

Fre;D




--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-11-03 Thread fredvs
Ooops, my previous post was not saved...

Here the content:

> by  way the   example in  ( mseuniverse\samples\db\gridselectedrow\) 
> works only when the grid is  a tdbstringgrid and not  for a tdbwidgetgrid.

Hum, indeed, if adding in the sample:

---
procedure tmainfo.oncellev(const sender: TObject; var info:
celleventinfoty);
begin
if (info.eventkind = cek_buttonpress) then // that was missing

if (ss_double in info.mouseeventinfopo^.shiftstate) then
  begin  
 // here what to do if double-click on the cell
 end;
end;

I get, while compliing that error message:

main.pas(47,22) Error: Identifier not found "cek_buttonpress"
main.pas(56) Fatal: There were 1 errors compiling module, stopping

Strange because property oncellevent is published in tdbwidgetgrid (who is
descendant from tcustomdbwidgetgrid).

---

And this was the answer to that post:

Re-hello.

OK, I get it, adding "msegridsglob" in uses section in main.pas does the
trick.

It compiles and the oncellevent() for 2 x click works perfectly.

So, for me,  tdbstringgrid works like tdbwidgetgrid.

What problem did you find?

Fre.D






--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-11-03 Thread fredvs
Re-hello.

OK, I get it, adding "msegridsglob" in uses section in main.pas does the
trick.

It compiles and the oncellevent() for 2 x click works perfectly.

So, for me,  tdbstringgrid works like tdbwidgetgrid.

What problem did you find?

Fre.D



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-11-02 Thread mohamed hamza
Hello,

   Thanks for the answer and your loyalty , by  way the   example in  ( 
mseuniverse\samples\db\gridselectedrow\)  works only when the grid is  a 
tdbstringgrid and not  for a tdbwidgetgrid. Without wishing to order you,  
would you like to have a look?

Best Regards.

Med.

De : fredvs 
Envoyé : samedi 2 novembre 2019 12:54
À : mseide-msegui-talk@lists.sourceforge.net 

Objet : Re: [MSEide-MSEgui-talk] Grid

fredvs wrote
> Hello Med.
>
> Nice that you have found a solution!
>
> By the way, I finally found how to deal with 2xclick on a cell.
>
> ...

Re-hello.

Ooops, something was missing in previous code, here the good one:

procedure agrid.oncellev(const Sender: TObject; var info: celleventinfoty);
begin

if (info.eventkind = cek_buttonrelease) then // that was missing

if (ss_double in info.mouseeventinfopo^.shiftstate) then
  begin
 // here what to do if double-click on the cell
 end;

end;


Fre;D



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-11-02 Thread fredvs
fredvs wrote
> Hello Med.
> 
> Nice that you have found a solution!
> 
> By the way, I finally found how to deal with 2xclick on a cell.
> 
> ...

Re-hello.

Ooops, something was missing in previous code, here the good one:

procedure agrid.oncellev(const Sender: TObject; var info: celleventinfoty);
begin

if (info.eventkind = cek_buttonrelease) then // that was missing

if (ss_double in info.mouseeventinfopo^.shiftstate) then
  begin  
 // here what to do if double-click on the cell
 end;

end;


Fre;D



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-11-02 Thread fredvs
Hello Med.

Nice that you have found a solution!

By the way, I finally found how to deal with 2xclick on a cell.

Here is how I do (maybe usefull for others)

__

procedure agrid.oncellev(const Sender: TObject; var info: celleventinfoty);
 
begin

if (ss_double in info.mouseeventinfopo^.shiftstate) then
  begin   
 // here what to do if double-click on the cell
 end;

end;

___

Fre;D





--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-10-31 Thread mohamed hamza
Ok .   Found the answer in mseUniverse   ( sample/db/grid

Regards

De : mohamed hamza 
Envoyé : jeudi 31 octobre 2019 10:26
À : General list for MSEide+MSEgui 
Objet : [MSEide-MSEgui-talk] Grid

Hi there,

   Is there any option to activate grid row selection ?

Regards.
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-02-28 Thread Fred van Stappen
> i  suggest   use  lazarus

And you may use also ideU with "show properties" to true.

https://github.com/fredvs/ideU/releases

See video:

http://mseide-msegui-talk.13964.n8.nabble.com/file/t2/ideuhint.mp4

Fre;D


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-02-28 Thread fredvs
> i  suggest   use  lazarus  

And you may use also ideU with "show properties" to true.

https://github.com/fredvs/ideU/releases

See video:

ideuhint.mp4
  

Fre;D



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-02-27 Thread ??????
i  suggest   use  lazarus   
it can   Intelligent bring out___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-02-27 Thread fredvs
> grid.rowhidden[aindex] 

Yep, well seen!



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-02-27 Thread liuzg2
i  suggest   use  lazarus  
it can   Intelligent bring out



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-02-27 Thread liuzg2
grid.rowhidden[aindex]



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2019-01-27 Thread fredvs
Hello Med.

I am not sure it is possible to do this.

In Delphi and Lazarus it is not possible to hide/show a row.

Maybe you could try to set the row.height := 0 to hide it.

PS: Do not forget to answer when somebody help you, so other people can use
the solution if it works.

Fre;D



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2018-07-21 Thread Martin Schreiber
On Saturday 21 July 2018 16:22:58 mohamed hamza wrote:
> I am wondering if the grid can be automatically adjusted verticaly.
>
>
> I mean if we plan to use a grid with 20 rows and actually sometimes we have
>
>
> 0 row, 10 rows  ,20 rows ? the empty rows are spaced.
>
>
> Do we have recalculate CY of grid each time it is displayed ?
>
Yes. If you like you check how it is done in tdropdownlist 
(lib/common/editwidgets/msedropdownlist.pas).

Martin

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2013-06-03 Thread Martin Schreiber
On Sunday 02 June 2013 17:41:28 Martin Schreiber wrote:
 On Sunday 02 June 2013 15:59:01 Martin Schreiber wrote:
  We
  could fire an event in tdatasource (onenter/onexit) by focusing a
  connected widget.

 Done, git master a4fb46dd7e66c616cfe7e1ed4da51e9b2958c7a6.

I'll replace onenter/onexit by a more versatile iifiserver interface.

Martin



--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2013-06-03 Thread Med Hamza
Hi Martin,
  As we can select widget with shortcut keyboard , I think we can do it
with mouse click?

Best Regards.


2013/6/3 Martin Schreiber mse00...@gmail.com

 On Sunday 02 June 2013 17:41:28 Martin Schreiber wrote:
  On Sunday 02 June 2013 15:59:01 Martin Schreiber wrote:
   We
   could fire an event in tdatasource (onenter/onexit) by focusing a
   connected widget.
 
  Done, git master a4fb46dd7e66c616cfe7e1ed4da51e9b2958c7a6.
 
 I'll replace onenter/onexit by a more versatile iifiserver interface.

 Martin




 --
 Get 100% visibility into Java/.NET code with AppDynamics Lite
 It's a free troubleshooting tool designed for production
 Get down to code-level detail for bottlenecks, with 2% overhead.
 Download for free and get started troubleshooting in minutes.
 http://p.sf.net/sfu/appdyn_d2d_ap2
 ___
 mseide-msegui-talk mailing list
 mseide-msegui-talk@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2013-06-03 Thread Martin Schreiber
On Monday 03 June 2013 10:49:48 Med Hamza wrote:
 Hi Martin,
   As we can select widget with shortcut keyboard , I think we can do it
 with mouse click?

Setting the input focus to the clicked widget? Works if optionswidget 
ow_mousefocus is set (default true).

Martin

--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2013-06-03 Thread Med Hamza
Hi Martin,
   Clearly, we can not managed frame.caption zone with mouse ?




2013/6/3 Martin Schreiber mse00...@gmail.com

 On Monday 03 June 2013 10:49:48 Med Hamza wrote:
  Hi Martin,
As we can select widget with shortcut keyboard , I think we can do it
  with mouse click?
 
 Setting the input focus to the clicked widget? Works if optionswidget
 ow_mousefocus is set (default true).

 Martin


 --
 Get 100% visibility into Java/.NET code with AppDynamics Lite
 It's a free troubleshooting tool designed for production
 Get down to code-level detail for bottlenecks, with 2% overhead.
 Download for free and get started troubleshooting in minutes.
 http://p.sf.net/sfu/appdyn_d2d_ap2
 ___
 mseide-msegui-talk mailing list
 mseide-msegui-talk@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2013-06-03 Thread Martin Schreiber
On Monday 03 June 2013 12:34:38 Med Hamza wrote:
 Hi Martin,
Clearly, we can not managed frame.caption zone with mouse ?

No, the click must be in client area of the widget.

Martin

--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2013-06-03 Thread Martin Schreiber
On Monday 03 June 2013 12:54:08 Martin Schreiber wrote:
 On Monday 03 June 2013 12:34:38 Med Hamza wrote:
  Hi Martin,
 Clearly, we can not managed frame.caption zone with mouse ?

 No, the click must be in client area of the widget.

Git master 80770d6123c7d2ecd930f570507336880b30d4e1 has 
tcustomcaptionframe.options cfo_captionfocus.

Martin



--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2013-06-03 Thread Martin Schreiber
On Monday 03 June 2013 09:24:10 Martin Schreiber wrote:
 On Sunday 02 June 2013 17:41:28 Martin Schreiber wrote:
  On Sunday 02 June 2013 15:59:01 Martin Schreiber wrote:
   We
   could fire an event in tdatasource (onenter/onexit) by focusing a
   connected widget.
 
  Done, git master a4fb46dd7e66c616cfe7e1ed4da51e9b2958c7a6.

 I'll replace onenter/onexit by a more versatile iifiserver interface.

git master c5e57c17e17628e91d0c2a595fd8ceac5ff6290c has onifistatechanged 
instead (experimental).

Martin



--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2013-06-02 Thread Martin Schreiber
On Saturday 01 June 2013 18:37:21 Med Hamza wrote:
 Hi Martin,

   Why grid does not fire OncellEvent when we click on grid.frame.caption
  zone?

Because this area is no grid cell. What do you like to achieve?

Martin

--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2013-06-02 Thread Martin Schreiber
On Sunday 02 June 2013 14:30:44 Med Hamza wrote:
 Hi Martin,
As you know, I am working with OnFocusedWidgetChanged to set and reset
 datasource depending on widget the user
 select.

I do not understand why a datasource must be switched by focus change. We 
could fire an event in tdatasource (onenter/onexit) by focusing a connected 
widget. Would it fulfill your needs? 

 I want to optimize my code, Putting Dbgrid inside other frame and 
 testing theframe.OnEnter is not a smart solution I believe?

tform.onfocusedwidgetchanged can not be used?

Martin

--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Grid

2013-06-02 Thread Martin Schreiber
On Sunday 02 June 2013 15:59:01 Martin Schreiber wrote:

 We
 could fire an event in tdatasource (onenter/onexit) by focusing a connected
 widget.

Done, git master a4fb46dd7e66c616cfe7e1ed4da51e9b2958c7a6.

Martin



--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk