I have to insert a measure 5 digit 2 dec
sample 300.12 or 0.12
local nTop := 0
I take the value not from a dbf but fron an array
@ nRow, 20 GET aGet[6] VAR nTop OF oModulo SIZE 50, 20 PIXEL FONT oFont UPDATE
I wish no insert PICTURE "999.99" because on dialog I have 000.00
I with not show any 0 on get control I tried also with ###.##
I saw the samples testgetn.prg testgetr.prg on folder samples of fwh i have another problem
I explain you I have
@ nRow, 20 GET aGet[6] VAR nTop OF oModulo SIZE 50, 20 PIXEL FONT oFont PICTURE "999,99" UPDATE RIGHT
@ nRow, 82 GET aGet[7] VAR nLeft OF oModulo SIZE 50, 20 PIXEL FONT oFont PICTURE "999,99" UPDATE RIGHT
if I digit 0,1 it write 0 on first get and 1 on second get
but I need to wriyte 0,1 on first get
How I can resolve ?