Could someone please tell me the syntax for how to detect if a listbox is eof() or bof() or rather empty.
Or is it possible to evaluate oBrw:bLine if yes how?
Thanks in advance.
Regards,
Otto
Could someone please tell me the syntax for how to detect if a listbox is eof() or bof() or rather empty.
Or is it possible to evaluate oBrw:bLine if yes how?
Thanks in advance.
Regards,
Otto
Can't you just use
( oBrw:cAlias ) -> ( EOF() )
( oBrw:cAlias ) -> ( BOF() )
( oBrw:cAlias ) -> ( ORDKEYCOUNT() ) = 0
?
EMG
Thank you, Enrico.