I'am convering a LISTBOX into a XBROWSE in my program.
In a listbox I can do:
- Code: Select all Expand view
- REDEFINE listbox .... ;
.....
ON CHANGE myfunction() ;
ON CLICK myfunction()
In xbrowse I get an compile-error.
I Can only do:
- Code: Select all Expand view
- REDEFINE xbrowse .... ;
.....
ON CHANGE myfunction()
How can I execute a function after someone select that browse, even when it's not changed.
Sometimes there is is only 1 item in the browse, and I can't execute the function by selecting first something else...