Hi I have a array xbrowse but If add a first record the xbrowse still empty, but if i move the mouse in xbrowse area the record show.
This is my code:
AADD( VetItem, { Cod_Pro , Nom_Pro, oArqItem:UNIDADE , Qtd_Pro, Tip_Ava, oArqItem:VALORUN, oArqItem:VALIDADE, oArqItem:EAN, Num_Not })
oBrw:SetArray( VetItem)
oBrw:nHeaderHeight :=30
oBrw:nStretchCol := STRETCHCOL_LAST
oBrw:GoBottom()
oBrw:Refresh()
xSetFocus(oBrw)
Any sugestion?
Thanks in advance.
Wanderson.
xbrowse refresh
- joseluisysturiz
- Posts: 2024
- Joined: Fri Jan 06, 2006 9:28 pm
- Location: Guatire - Caracas - Venezuela
- Contact:
Re: xbrowse refresh
Intenta en este orden, saludos...
Code: Select all
oBrw:nHeaderHeight :=30
oBrw:nStretchCol := STRETCHCOL_LAST
oBrw:SetArray( VetItem)
oBrw:GoBottom()
oBrw:Refresh()
xSetFocus(oBrw)
Dios no está muerto...
Gracias a mi Dios ante todo!
Gracias a mi Dios ante todo!
Re: xbrowse refresh
Perfect! Thank you very much!joseluisysturiz wrote:Intenta en este orden, saludos...
Code: Select all
oBrw:nHeaderHeight :=30 oBrw:nStretchCol := STRETCHCOL_LAST oBrw:SetArray( VetItem) oBrw:GoBottom() oBrw:Refresh() xSetFocus(oBrw)