try this :
/*
Assuming the selected table was "CustTable" and your
ComboBox-Control is named "FieldList"
*/
DictTable dictTable = new DictTable(tablenum(CustTable));
DictField dictField;
integer fieldCounter;
;
for (fieldCounter = 0; fieldCounter <= dictTable.fieldCnt();
fieldCounter++)
{
dictField = new DictField(dictTable.id(),
dictTable.fieldCnt2Id(fieldCounter));
if (!dictField.isSystem())
FieldList.add(dictField.name());
}
Regards
wohegro
| Yahoo! Groups Sponsor | |
|
|
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

