erase button on ribbonbar- Resolved
Posted: Fri May 17, 2019 9:23 am
I must erase 4 button on a ribbonbar on a group to recreate it each time I open a function
I made
and try also with
I
but it make error on second time I try to end the button and recreate it
I made
Code: Select all
IF oApp():oNavigaZoom != nil
oApp():oNavigaZoom:end()
For n= 1 to 4
oBtnNav[n]:destroy() //end()
next
oApp():oNavigaZoom := oApp():oReBar:AddGroup( 300, "Navigazione", 1,,, )
else
oApp():oNavigaZoom := oApp():oReBar:AddGroup( 300, "Navigazione", 1,,, )
Endif
@ 9,5 ADD BUTTON oBtnNav[1]......
and try also with
I
Code: Select all
F oApp():oNavigaZoom != nil
AEVal( oBtnNav, { | oBtn | oBtn:end() } )
oApp():oNavigaZoom:end()
oApp():oNavigaZoom := oApp():oReBar:AddGroup( 300, "Navigazione", 1,,, )
else
oApp():oNavigaZoom := oApp():oReBar:AddGroup( 300, "Navigazione", 1,,, )
Endif
but it make error on second time I try to end the button and recreate it