Показать сообщение отдельно
Старый 13.01.2009, 18:32   #1  
bakingtheiron is offline
bakingtheiron
Участник
 
2 / 10 (1) +
Регистрация: 13.01.2009
Infolog: using prefix with one message
I'm currently using the infolog to warn users when they have entered a duplicate employee.

X++:
setprefix('Customer record added has one or more duplicate name and search-name combinations:');

while select blah........
{
    info(strFmt('Name: %1, Name Alias: %2, Group: %3, Currency: %4', tCustTable.Name,tCustTable.NameAlias,tCustTable.CustGroup, tCustTable.Currency));
}
Problem is in most cases there will only be one other user with the same first and last name combination. If there are no other messages present in the infolog, the infolog display like a dialog box cutting out my tree title explanation.

How do I get the full size infolog with only one message in it (or one prefix containing one message)?

Working in AX4.0 SP2