Hello Everyone,
Sorry for this very basic question.
How do I pull value from specific columns in XBROWSE when I am using an array. I am looking to get data from row 3, columns Asset No, Category and Descrition.
REDEFINE XBROWSE oItems ID 6000 ;
HEADERS "ASSET NO.", "CATEGORY", "DESCRIPTION", "VISUAL", "UT", "PT", "RFID Tag", "CERT Profile" ;
FIELDSIZES 200 , 300 , 608 , 100 , 100, 100, 400 , 200 ;
OF oDlg ARRAY aItems AUTOCOLS FONT oFont1
Thank you,
Xbrowse and Array
- cdmmaui
- Posts: 693
- Joined: Fri Oct 28, 2005 9:53 am
- Location: Houston ∙ Chicago ∙ Los Angeles ∙ Miami ∙ London ∙ Hong Kong
- Contact:
Re: Xbrowse and Array
I was able to find solution in sample code
oItems:aArrayData[ oItems:nArrayAt, 1 ]
oItems:aArrayData[ oItems:nArrayAt, 1 ]
- nageswaragunupudi
- Posts: 10721
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Been thanked: 8 times
- Contact:
Re: Xbrowse and Array
Code: Select all | Expand
oItems:aArrayData[ oItems:nArrayAt, 1 ]
can also be written as
Code: Select all | Expand
oItems:aRow[ 1 ]
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India