摘要:
Flex 3 学习总结2009-02-06 11:20--------------------Repeater--------------- --------------------XML搜索方法------------ private function prodByCategoryHandler(... 阅读全文
摘要:
《Flex 3 权威指南》要点整理Posted by chenchao | Filed under RIA相关一年前整理的文档,整理文档的时候发现了,先分享出来下载1.应用程序layout属性设置为absolute,才可以使用绝对定位。2.标签,需要指定relativeTo和position属性,r... 阅读全文
摘要:
GetTickCount函数 函数功能:GetTickCount返回(retrieve)从操作系统启动到现在所经过(elapsed)的毫秒数,它的返回值是DWORD。 函数原型: DWORD GetTickCount(void); VB版 VB声明: Declare Funct... 阅读全文
摘要:
c++ 如何获取系统时间2008-04-28 15:34//方案— 优点:仅使用C标准库;缺点:只能精确到秒级 #include #include int main( void ) { time_t t = time(0); char tmp[64]; strftime( tmp, sizeof... 阅读全文