RE: task macro paste task not working properly
please find below my code snippet for pasting the coppied text on clip board.
[Control("Button")]
class FetchWeight
{
/// <summary>
///
/// </summary>
public void clicked()
{
super();
FormStringControl1.setFocus();
//element.task(771); // 771 = copy task number in system.
element.task(772); // 772 = paste task number in system.
info(strFmt("%1",FormStringControl1.valueStr()));
}
}