Options

How Can I write text/data in the subItem?

MadizeMadize Member Posts: 2
edited 2005-07-01 in Dynamics AX
Hi everybody!
I'm new in Axapta and have a problem.

I have the following item(before this there are the declarations)
_myListColumn.text(");
_myListColumn.width(100);
lvwGunMenu.addColumn(0,_myListColumn);
_myListColumn.text("SubItem");
_myListColumn.width(100);
lvwGunMenu.addColumn(1,_myListColumn);

for(i = 0; i<=10; i++)
{
_myListItem.text(int2str(i));
lvwGunMenu.addItem(_myListItem);
//I want to write in the secound column in this list, and I don't know how to use the subItem() if that's needed.
}


Thank you very much,

Tamas
Sign In or Register to comment.