Hi Sharok
In order to update get individually you use
oGet:Refresh()
If you want to update all get in I engage in a dialog uses clausula UPDATE in each GET and with odlg:update() you update all get in a single step, for example:
DEFINE DIALOG oImpDlg RESOURCE "D_CARIMP" of oInv FONT oWnd

Font
REDEFINE CHECKBOX oChkI1 VAR lColorPrn ID 105 OF oImpDlg;
UPDATE
REDEFINE GET oGETI2 VAR nVelC ID 107 OF oImpDlg;
PICTURE "999.9";
WHEN lColorPrn
UPDATE
REDEFINE GET oGETI3 VAR nVelBN ID 109 OF oImpDlg;
PICTURE "999.9";
MESSAGE "Ingrese la Velocidad Maxima a B/N";
WHEN nTipo > 1
UPDATE
ACTIVATE DIALOG oImpDlg CENTERED
It uses oImpDlg:Update() to update all Dialog and the objects within.
If you have doubts and problems you warn to me
Greetings
Jesus Tarre
VENEZUELA