> git master 0b9bd0ab4349afd4915cb8a59053eae2bfce8be9 has 
> getassistivecaretindex()

Hello Martin.

OK, updated to last MSEgui commit.

Now, with that procedure =>

//////////////////////////
procedure TSAK.docellevent(const sender: iassistiveclientgrid; 
                                     const info: celleventinfoty);
var
 mstr: msestring;
begin
 if (Sender.getinstance is Twidgetgrid) then 
begin
 if info.eventkind = cek_keyup then
 begin  
mstr1:= ' column = '+ inttostrmse(sender.getassistivecaretindex())+ ' row = 
'+inttostrmse(info.cell.row);
 end;
end;
end;
/////////////////////

=> Always => " column = -1 " ;-( , but row is ok ;-) .

_________________________________

Other thing.

With Linux 64 bit, at compile, with last MSE commit, there are those errors =>

mibconnection.pas(1563,15) Error: Incompatible types: got "Pointer" expected 
"LongWord"
mibconnection.pas(1650,15) Error: Incompatible types: got "Pointer" expected 
"LongWord"
mibconnection.pas(1722,9) Error: Incompatible types: got "Pointer" expected 
"LongWord"
mibconnection.pas(1734,12) Error: Operator is not overloaded: "LongWord" = 
"Pointer"
mibconnection.pas(1915,4) Fatal: There were 5 errors compiling module, stopping
Fatal: Compilation aborted

=> fixed with => 

blobHandle:= nil =>  blobHandle:= 0;
dbha:= nil =>  dbha:= 0;
trha:= nil =>  trha:= 0;
if dbha <> nil => if dbha <> 0 

Thanks.

Fre;D

                                          
------------------------------------------------------------------------------
_______________________________________________
mseide-msegui-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to