Page 1 of 1

How to specify dialog size when using xbrowser?

Posted: Fri Oct 11, 2024 4:36 am
by hua
Hi guys.
When using the XBROWSER command is it possible to specify the wanted height and width of its dialog?

TIA

Re: How to specify dialog size when using xbrowser?

Posted: Fri Oct 11, 2024 4:47 am
by Antonio Linares
Dear Hua,

Code: Select all | Expand

XBROWSER uValue TITLE "My xbrowse" SETUP Setup( oBrw )

function Setup( oBrw )

   oBrw:oWnd:SetSize( 400, 200 ) // desired width and height

return nil

Re: How to specify dialog size when using xbrowser?

Posted: Fri Oct 11, 2024 7:26 am
by hua
Thanks for such prompt response Antonio!