Page 1 of 1

Puede cambiarse el prompt de un Button en run time?

Posted: Mon Apr 02, 2007 9:37 pm
by Rafael Clemente
Pues eso: Es posible cambiar el texto de un botón durante la ejecución del programa. Este ejemplo no hace nada:

Code: Select all

#include "Fivewin.ch" 
Function Main() 
Define Window ownd from 0,0 to 200,200 pixel 
@ 10,10 Button oBtn Prompt "Hello" size 60,20 pixel of ownd action Change(oBtn) 
Activate window oWnd 
Return Nil 

Function Change(oBtn) 
oBtn:cCaption := "Bye" 
oBtn:Refresh() 
Return nil
Agradeceré cualquier sugerencia. Un saludo,

Rafael

Posted: Mon Apr 02, 2007 10:19 pm
by Alfredo Arteaga
oBtn:SetText("&Bye")

Posted: Tue Apr 03, 2007 7:28 am
by Rafael Clemente
Muchas gracias, Alfredo!!!
Rafael