I will do some changes to support a installation of a libary.srod wrote:If I go down that path then I probably will make use of your installer.
(e.g. disable installer / no program directory needed)
I will do some changes to support a installation of a libary.srod wrote:If I go down that path then I probably will make use of your installer.
Code: Select all
onErrorGoto(?Fred)
That's funny, my girlfriend said that just the other night!rw wrote:Hi!
You are really fast!
Use the commandTested egrid with Purelvsort.
All Ok here.
One question:
How can i set the egrid selection box on a specific col/row
after the focus ist lost?
Keep up the good work
grettings
rw
Code: Select all
egrid_SelectCell(gadgetnum, columnindex, row, editingcell)
Absolutely. No problem at all. You can have as many different icons as their are cells etc.ricardo wrote:Great!!
One question:
Is possible to add different icons to different cells?? (Not always same icon to all column i mean)
Thanks for your answer!!srod wrote:Absolutely. No problem at all. You can have as many different icons as their are cells etc.ricardo wrote:Great!!
One question:
Is possible to add different icons to different cells?? (Not always same icon to all column i mean)
In the #egrid_NotifyCellType message in the CellCallback function you simply need to return different icon handles depending on which cell is being examined etc.
Code: Select all
Case #egrid_NotifyCellType
*cellinfo\celltype=#egrid_Icon
If (*cellinfo\column+*cellinfo\row)&1
*cellinfo\param=icon1 ;Set to 0 for no icon.
Else
*cellinfo\param=icon2 ;Set to 0 for no icon.
EndIf
Depends on what you mean?ricardo wrote:Great!!
One more question:
Can i 'hide' and then 'show' some cells?
I saw some egrid_MakeCellVisible(gadgetnum, columnindex, row)