FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveMac / FivePhone (iPhone, iPad) Mas funciones para usar con SAY y Get
Posts: 1516
Joined: Thu May 27, 2010 02:06 PM
Mas funciones para usar con SAY y Get
Posted: Thu Aug 12, 2010 12:58 PM
Otras funciones para usar con say y get :

Code (fw): Select all Collapse
HB_FUNC( TXTSETENABLED ) // hGet --> cText
{
    NSTextField * get = ( NSTextField * ) hb_parnl( 1 );
    [get setEnabled: YES  ];
    [get setTextColor: [NSColor controlTextColor]];
}  


HB_FUNC( TXTSETDISABLED ) // hGet --> cText
{
    NSTextField * get = ( NSTextField * ) hb_parnl( 1 );
    [get setEnabled: NO  ];
    [get setTextColor: [NSColor secondarySelectedControlColor]];
} 


HB_FUNC( TXTISENABLED ) // hGet --> cText
{
    NSTextField * get = ( NSTextField * ) hb_parnl( 1 );
    hb_retl( ( BOOL ) [ get isEnabled ] );
}


Saludos.

Continue the discussion