Page 1 of 1

wBrowse

Posted: Sun Oct 21, 2007 1:30 pm
by 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

Re: wBrowse

Posted: Sun Oct 21, 2007 1:42 pm
by Enrico Maria Giordano
Can't you just use

( oBrw:cAlias ) -> ( EOF() )
( oBrw:cAlias ) -> ( BOF() )
( oBrw:cAlias ) -> ( ORDKEYCOUNT() ) = 0

?

EMG

Posted: Sun Oct 21, 2007 2:03 pm
by Otto
Thank you, Enrico.