#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg
LOCAL cVar := SPACE( 30 )
DEFINE DIALOG oDlg
@ 1, 1 GET cVar RIGHT
@ 3, 1 BUTTON "Close";
ACTION oDlg:End()
ACTIVATE DIALOG oDlg
RETURN NILEMG
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg
LOCAL cVar := SPACE( 30 )
DEFINE DIALOG oDlg
@ 1, 1 GET cVar RIGHT
@ 3, 1 BUTTON "Close";
ACTION oDlg:End()
ACTIVATE DIALOG oDlg
RETURN NIL#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg
LOCAL oFont1
LOCAL oFont2
LOCAL cVar := "FIVEWIN"
DEFINE FONT oFont1 NAME "COURIER NEW" SIZE 0, -11 // NOT PROP.
DEFINE FONT oFont2 NAME "TAHOMA" SIZE 0, -10 // PROP
DEFINE DIALOG oDlg
@ 1, 1 GET cVar RIGHT FONT oFont1
@ 2, 1 GET cVar RIGHT FONT oFont2
@ 3, 1 BUTTON "Close";
ACTION oDlg:End()
ACTIVATE DIALOG oDlg
RELEASE FONT oFont1
RELEASE FONT oFont2
RETURN NILThank you, but your sample doesn't work right here (latest FWH version).
EMG
Dear Enrico,
We are checking it
many thanks for your feedback
Thank you, Master! ![]()
EMG
// \samples\enrico99.prg
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg, aGet := ARRAY(5), oFont, oFnt
LOCAL cVar := "ENRICO MARIA Right..." // SPACE( 30 )
LOCAL cVar2 := "GIORDANO DE ITALIA..."
DEFINE FONT oFnt NAME "Ms Sans Serif" SIZE 0, 14 BOLD
DEFINE FONT oFont NAME "Ms Sans Serif" SIZE 0, -14 BOLD
DEFINE DIALOG oDlg
oDlg:lHelpIcon := .F.
@ 1, 1 GET aGet[1] VAR cVar PICTURE "@K!" SIZE 090, 10 FONT oFnt RIGHT
@ 2, 1 GET aGet[2] VAR cVar2 PICTURE "@K!" SIZE 090, 10 FONT oFnt // LEFT
@ 3, 1 BUTTON "Close";
ACTION oDlg:End()
ACTIVATE DIALOG oDlg
oFont:End()
oFnt:End()
RETURN NILPlease, try to write something in the RIGHT aligned GET and you'll see the problem.
EMG
#include "Fivewin.ch"
function main()
local oDlg, oFont
local cVar1 := PAD( "FiveTech Soft, Spain", 20 )
local cVar2 := PAD( "Hello World", 20 )
SetGetColorFocus()
DEFINE FONT oFont NAME "Courier New" SIZE 0,-20
DEFINE DIALOG oDlg SIZE 450,150 PIXEL TRUEPIXEL FONT oFont TITLE FWVERSION
@ 20, 20 GET cVar1 SIZE 410,26 PIXEL OF oDlg RIGHT
@ 50, 20 GET cVar2 SIZE 410,26 PIXEL OF oDlg RIGHT
@ 90, 20 BUTTON "Close" SIZE 100,40 PIXEL OF oDlg ACTION oDlg:End()
ACTIVATE DIALOG oDlg CENTERED
RELEASE FONT oFont
return nil
Sorry, I thought that RIGHT worked like ES_RIGHT, but it's not.
EMG
Both these Gets have ES_RIGHT style and this is how Windows displays text with trailing spaces with this style. Does not "trim" the string and then right-align the trimmed string.
However, we can think of an enhancement by trimming the string and right-align when the Get does not have focus. Just thinking ...
Whether Windows does it or not, we can still do it if we like.
Ok, all is clear now. I missed the trailing spaces, sorry. ![]()
EMG
#include "Fivewin.ch"
function Main()
local oDlg, oFont, oGet1, oGet2
local cVar1 := PAD( "123", 10 )
local cVar2 := PAD( "12345", 15 )
DEFINE FONT oFont NAME "Courier New" SIZE 0,-20
DEFINE DIALOG oDlg SIZE 450,150 PIXEL TRUEPIXEL FONT oFont TITLE FWVERSION
@ 20, 20 EDIT oGet1 VAR cVar1 SIZE 410,26 PIXEL OF oDlg RIGHT LIMITTEXT
oGet1:bGotFocus := { || oGet1:SetColor( CLR_BLACK, RGB( 235, 235, 145 ) ) }
oGet1:bLostFocus := { || oGet1:SetColor( CLR_BLACK, CLR_WHITE ) }
@ 50, 20 EDIT oGet2 VAR cVar2 SIZE 410,26 PIXEL OF oDlg RIGHT LIMITTEXT
oGet2:bGotFocus := { || oGet2:SetColor( CLR_BLACK, RGB( 235, 235, 145 ) ) }
oGet2:bLostFocus := { || oGet2:SetColor( CLR_BLACK, CLR_WHITE ) }
@ 90, 20 BUTTON "Close" SIZE 100,40 PIXEL OF oDlg ACTION oDlg:End()
ACTIVATE DIALOG oDlg CENTERED
RELEASE FONT oFont
cVar1 := PAD( cVar1, 10 )
cVar2 := PAD( cVar2, 15 )
return nilThank you, Rao.
EMG
hi Mr. Rao
But with EDIT does not work up / down arrow to leave control only TAB or RETURN.
Bye