La idea era esta, pero no va :
- Code: Select all Expand view
HB_FUNC( BRWCOLSETWIDTH )
{
NSTableView * browse = ( NSTableView * ) hb_parnl( 1 );
TableColumn * column = [ [ TableColumn alloc ] init ];
column->id = hb_prnl(2) ;
[column setWidth : hb_parnl( 3 ) ];
[ browse reloadData ];
}
por otro lado he realizado esta funcion primaria para el uso de los mensajes en sheet y pare que funciona .
- Code: Select all Expand view
HB_FUNC( MSGALERTSHEET )
{
NSString * msg;
NSWindow * window = ( NSWindow * ) hb_parnl( 2 );
CocoaInit();
ValToChar( hb_param( 1, HB_IT_ANY ) );
msg = [ [ [ NSString alloc ] initWithCString: ISCHAR( -1 ) ? hb_parc( -1 ) : "" ] autorelease ];
NSBeginAlertSheet(nil, nil, nil, nil, window, nil , NULL, NULL,NULL, msg);
hb_ret();
}
Saludos.