August 2017
Beginner to intermediate
480 pages
11h 7m
English
class PickList
{
/// <summary>
/// Runs the class with the specified arguments.
/// </summary>
/// <param name = "_args">The specified arguments.</param>
public static void main(Args _args)
{
Map choices;
str ret;
choices = new Map(
Types::Integer,
Types::String);
choices.insert(1, "Axapta 3.0");
choices.insert(2, "Dynamics AX 4.0");
choices.insert(3, "Dynamics AX 2009");
choices.insert(4, "Dynamics AX 2012");
choices.insert(5, "Dynamics AX 7");
choices.insert(6, "Dynamics 365");
ret = pickList(choices, "", "Choose version");
if (ret)
{
info(strFmt("You've selected option No. %1", ret));
}
}
}
Read now
Unlock full access