Guys:
I know this is legacy, but how do I set a title on a CONSOLE (text) window ? Thank you very much !
Guys:
I know this is legacy, but how do I set a title on a CONSOLE (text) window ? Thank you very much !
Antonio:
Thank you for the reply. Since it's not done via native Harbour, how do I implement this in my code ? Is there any Harbour function to do this ? Thank you very much !
yourprg.prg
... your code ... // SetConsoleTitle( "test" )
HB_FUNC( SETCONSOLETITLE )
{
  hb_retl( SetConsoleTitle( ( char * ) hb_parc( 1 ) ) );
}
Antonio:
Working great !!! Thank you very much !!!