Page 1 of 1

Soporte de MsgBar

PostPosted: Wed Jul 07, 2010 2:39 am
by Antonio Linares
Code: Select all  Expand view
#include "FiveMac.ch"

function Main()

   local oWnd
   
   DEFINE WINDOW oWnd TITLE "Tutor02" ;
       FROM 200, 200 TO 600, 400
       
   DEFINE MSGBAR OF oWnd    

   ACTIVATE WINDOW oWnd ;
      ON CLICK MsgInfo( "Click" ) ;
      VALID MsgYesNo( "Want to end ?" )  

return nil
 


Image

Re: Soporte de MsgBar

PostPosted: Wed Jul 07, 2010 3:00 am
by Antonio Linares
Image