MsgBars support

Post Reply
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

MsgBars support

Post by Antonio Linares »

Code: Select all

#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
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: MsgBars support

Post by Antonio Linares »

Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
IBTC
Posts: 103
Joined: Sat Oct 18, 2008 8:13 pm
Location: Stuttgart, Germany
Contact:

Re: MsgBars support

Post by IBTC »

Great!

Is it also possible to use message bar with the menu? So we can use this:

Code: Select all

 MENUITEM [ <oMenuItem> PROMPT ] <cPrompt> ;  
 [ MESSAGE <cMsg> ];  
 [ ACTION <uAction> ] ;  
 [ ACCELERATOR <cKey> ]  

<cMsg> The associated message of this control.

And also Msgitems?

Thanks.
Best Regards,
Ruediger Alich

---
HMG 3.1.3 | FTDN/FWH 13.12 | Harbour 3.2 | BCC/MinGW | Windows XP/Vista/7/8/10 (32/64-Bit), Wine (Linux/Mac) - started 1999 with FW, 1989 with Clipper
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: MsgBars support

Post by Antonio Linares »

Ruediger,

Not yet, but surely we will have it soon :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply