Method :EditBaseRecord
Posted: Wed Dec 27, 2017 5:08 pm
Hello,
I am with a doubt as to the use of the method: EditBaseRecord, if in the rowset I put "* " The method works, if specified the field in the rowset does not work. Shouldn't he use all the fields in the rowset independent table?
Example: Doesn't work
oTabela: = oCon: RowSet ( "SELECT codigo, descricao FROM ocorrencia")
DEFINE VMENUITEM the item OF omenu;
IMAGE "";
CAPTION "incluir ";
ACTION (oTabela: EditBaseRecord (NIL,. T., {| oRec | Editar_Tabela (ORec, CTabela)}, OBrowse);
oTabela: Rewanty (),;
oBrowse: SetFocus ())
Example: works
oTabela: = oCon: RowSet ( "SELECT * FROM ocorrencia")
DEFINE VMENUITEM the item OF omenu;
IMAGE "";
CAPTION "incluir ";
ACTION (oTabela: EditBaseRecord (NIL,. T., {| oRec | Editar_Tabela (ORec, CTabela)}, OBrowse);
oTabela: Rewanty (),;
oBrowse: SetFocus ())
Did I misunderstand the operation of the method?
Att.,
Oliveiros Junior
I am with a doubt as to the use of the method: EditBaseRecord, if in the rowset I put "* " The method works, if specified the field in the rowset does not work. Shouldn't he use all the fields in the rowset independent table?
Example: Doesn't work
oTabela: = oCon: RowSet ( "SELECT codigo, descricao FROM ocorrencia")
DEFINE VMENUITEM the item OF omenu;
IMAGE "";
CAPTION "incluir ";
ACTION (oTabela: EditBaseRecord (NIL,. T., {| oRec | Editar_Tabela (ORec, CTabela)}, OBrowse);
oTabela: Rewanty (),;
oBrowse: SetFocus ())
Example: works
oTabela: = oCon: RowSet ( "SELECT * FROM ocorrencia")
DEFINE VMENUITEM the item OF omenu;
IMAGE "";
CAPTION "incluir ";
ACTION (oTabela: EditBaseRecord (NIL,. T., {| oRec | Editar_Tabela (ORec, CTabela)}, OBrowse);
oTabela: Rewanty (),;
oBrowse: SetFocus ())
Did I misunderstand the operation of the method?
Att.,
Oliveiros Junior