Re: RecordGrid question

2005-05-29 Thread Friedger
Hi Maekawa, I would suggest you add a event handler for SelectionChanged to your RecordGrid, store the current selection and react on changes. {let current-selection-index = -1} {RecordGrid record-source = {LocalRecordSet {RecordFields {RecordField "A"},

Re: RecordGrid question

2005-05-29 Thread Friedger
{RecordGrid record-source = {LocalRecordSet {RecordFields {RecordField "A"}, {RecordField "B"}}, {RecordData A = "aa", B = "bb"}, {RecordData A = "aaa", B = "bbb"} }, {on SelectionChanged at rg:RecordGrid do {rg.deselect-record current-selection-index} set

Re: how to always show the record added RecordGrid??

2005-05-29 Thread Friedger
Hi Maekawa, I can't see an immediate solution as RecordGrid doesn't make use of ScrollBox. Instead it implements its own scroll mechanism. If you look at StandardRecordGridUI there is a private method scroll-to-reveal. You should derive your own UI that allows to react on

Is there encode library with Curl ?

2005-05-29 Thread 前川享仁
Hi gurus, Now I've understood to customize {HashTable-of}'s 'key-hash-proc' and 'key-equality-proc'. I think it's the best and cool to use some encoding algorythms for those two elements(create hash value and key predication), but I can't find any libraries such as md5 and

Re: Is there encode library with Curl ?

2005-05-29 Thread Mat Hostetter
takanobu I think it's the best and cool to use some encoding takanobu algorythms for those two elements(create hash value and key takanobu predication), but I can't find any libraries such as md5 takanobu and so on. You can compute SHA-1 hashes, which serve a similar purpose to MD5, using the