TDBBrwColumn and alias
Publicado: Mié Jun 29, 2011 12:13 pm
I try to show data from an other database into a TDBBrwColumn
WITH OBJECT TDBBrwColumn():New( ::oBrw )
:Cargo := 5
:cHeader := "CODE"
:nWidth := 93
:oDataField := "X_PR->PR_ID"
:Create()
END
Why is this not working?
//---
Fixed it with oncreate and getdata.
WITH OBJECT TDBBrwColumn():New( ::oBrw )
:Cargo := 5
:cHeader := "CODE"
:nWidth := 93
:oDataField := "X_PR->PR_ID"
:Create()
END
Why is this not working?
//---
Fixed it with oncreate and getdata.