首页 > 其他 > 详细

AX Note

时间:2014-01-20 19:26:35      阅读:376      评论:0      收藏:0      [点我收藏+]

1, The different between Table.Find() and Select * from table statement.

 Table.Find() is used to find a record in exist database. Select statement is used to find a record in exist database and memory.

 If user insert a record to table by using transaction, and the transction is not finished, use the Table.Find() cannot find the insert record before, use Select statement can be find out.

 2, Change text color. Use code below.

  public static void main(Args args)
  {
    Dialog dialog;
    DialogField field;
    Object ft;

    dialog = new Dialog("My Dialog");
    ft = dialog.addText("Select your favorite customer:").control();
    field = dialog.addField("ToDate");
    ft.ColorScheme(2);
    ft.BackgroundColor(WinAPI::RGB2int(240,240,240));
    ft.ForeGroundColor(WinAPI::RGB2int(255,0,0));
    dialog.run();
  }

 

AX Note

原文:http://www.cnblogs.com/markOfNick/p/3526508.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!