摘要: void addPicBox() { FormWindowControl c; DocuRef tmpDocuRef; Image tmpImage; int i = 1; int j, maxControl; container tmpBitmap; ; element.lock(); maxControl = groupPics.controlCount(); //获取gro... 阅读全文
posted @ 2011-07-26 17:37 perock 阅读(239) 评论(0) 推荐(0) 编辑
摘要: Container类型累加其实是添加元素。 如: Container c; ; C = [‘a’]; C +=[‘b’] 此时C中有两个元素分别为 [‘a’,’b’] 阅读全文
posted @ 2011-07-26 16:23 perock 阅读(293) 评论(0) 推荐(0) 编辑
摘要: static void ShowNum2Str(Args _args) { Real Num; ; Num = 2.001; info(Num2Str(Num,0,3,1,2)); //输出2.001 } ShowNum2Str参数介绍: ShowNum2Str(待转real,文本长度,小数位,小数点分隔符,千位分隔符) 文本长度:意指转换后的文本长度,不足位将用空格填充; 小数位:小数长... 阅读全文
posted @ 2011-07-26 15:22 perock 阅读(7324) 评论(0) 推荐(0) 编辑
摘要: static void ShowDate2Str(Args _args) { Date FrDate; ; FrDate = SystemDateGet(); info(date2str(FrDate,213,2,3,2,3,4)); //输出结果:05-26-2011 } Date2Str()参数说明: Date2Str(待转日期,日期格式,天长度,天分隔符,月长度,月分隔符,年长度)... 阅读全文
posted @ 2011-07-26 15:02 perock 阅读(3106) 评论(0) 推荐(0) 编辑