REQUEST FOR XBROWSE FUNCTION

Post Reply
MOISES
Posts: 838
Joined: Wed Aug 22, 2007 10:09 am

REQUEST FOR XBROWSE FUNCTION

Post by MOISES »

Hello,

Hope first of all you are doing well.

I would like to make two requests for the Xbrowse() function please:

- Use FWstrings to translate MsgNoYes( "Delete Record?" ), ITEMS { "Search For", "Show Only" } ;, etc. the rest of messages.

- Make the size of the dialog bigger, as it is too small, also considering that monitors now offer more resolution.

Thank you. All the best
Saludos / Regards,

FWH 20.04, Harbour 3.2.0 dev (r1909261630) y BCC 7.40
User avatar
Otto
Posts: 6436
Joined: Fri Oct 07, 2005 7:07 pm
Has thanked: 48 times
Been thanked: 15 times
Contact:

Re: REQUEST FOR XBROWSE FUNCTION

Post by Otto »

Hello,
I am sure that you know that the source code of the xbrowse function is available to us in the FWH source folder.
I'm just mentioning it.
Best regards,
Otto

C:\FWH\source\function\xbrowser.prg

Code: Select all | Expand

    if WndMain() == nil      DEFINE FONT oFont NAME 'TAHOMA' ;         SIZE 0,-Min( 18, Max( 8, Int( GetSysMetrics(0) / 100 ) ) )   else      oFont := WndMain():oFont   endif   DEFINE FONT oFontB NAME "VERDANA" SIZE 0, -Min( 16, Max( 8, Int( GetSysMetrics(0) / 100 ) ) ) WEIGHT 500 
Post Reply