Advertisements
BUNGUNDROP() Short: ------ BUNGUNDROP() Ends dropdown during BUNGEE() menu def sequence Returns: -------- NIL Syntax: ------- BUNGUNDROP() Description: ------------ BUNGUNDROP() ends a dropdown during a BUNGEE() menu definition sequence. Use BUNGSTART(), BUNGEND(), BUNGOPTION(), BUNGDROP(), BUNGUNDROP() together to create a menu definition array for BUNGEE(). While it is not necessary to use these functions to create the array, it is helpful when you have a complex, multi-level dropdown structure. See BUNGEE for more information. Examples: --------- bungstart() bungoption("Files") bungdrop() bungoption("Open" ,{} ,{||!lFileIsOpen} ) bungoption("Close",{||nil},{||lFileIsOpen } ) bungundrop() bungoption("Edit") bungdrop() bungoption("DBF" ,{||nil},nil ) bungoption("Ascii",{||nil},nil ) bungundrop() bungoption("Quit",{||bungeequit()},nil) aMenu := bungend() bungee(0,0,79,aMenu) Source: ------- S_BUNGDEF.PRG
Advertisements