2009年6月18日
摘要:
ActiveX异步回调JavaScript 开发环境:VC6.0。 背景知识:COM/ActiveX/JavaScript/MFC/Thread 想必用过Ajax的童鞋们都知道xmlhttp这个东西吧,通过设定onreadystatechange属性,我们就可以指定他状态改变的回调函数,当状态改变时,ActiveX控件就会调用我们通过onreadystatechange属性制定的回调函数。从而就出...
阅读全文
posted @ 2009-06-18 10:47
我一路走来。。。
阅读(1322)
推荐(0)
2009年5月13日
摘要:
使用了Q_OBJECT宏之后在编译的时候会遇到下面的错误: --------------------Configuration: testqt - Win32 Debug--------------------Linking...test.obj : error LNK2001: unresolved external symbol "public: virtual int __thiscall ...
阅读全文
posted @ 2009-05-13 21:47
我一路走来。。。
阅读(1606)
推荐(0)
2008年9月5日
摘要:
继续贴几个MessageQ的函数: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->/**//* *使用qstatus的时候要将.init文件中的ENABLE_SBS设置为YES *ENABLE_SBS MessageQ给出的解释:start s...
阅读全文
posted @ 2008-09-05 06:47
我一路走来。。。
阅读(549)
推荐(0)
2008年8月19日
摘要:
创建自定义事件的步骤:
定义事件类,该事件类必须继承自wx.PyCommandEvent,并定义get和set方法来获取和设置事件参数。
创建一个事件类型和一个绑定器对象去绑定该事件到特定的对象。
创建自定义事件对象,设置事件参数,并且使用ProcessEvent()方法将这个实例引入事件处理系统。
绑定自定义事件的event handler。
阅读全文
posted @ 2008-08-19 09:20
我一路走来。。。
阅读(2355)
推荐(0)
2008年8月14日
摘要:
关于MessageQ的编程资料网上比较少,bea提供的文档里有比较详细的说明。多读几次MessageQ的文档就能写出程序来。下面是几个MessageQ的操作函数: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->#include #incl...
阅读全文
posted @ 2008-08-14 15:41
我一路走来。。。
阅读(886)
推荐(0)
摘要:
你可以从oracle的网站www.oracle.com上获取MessageQ的安装包。 获取后解压压缩包,然后执行安装脚本就可以安装上。安装过程比较简单,关键是一些环境变量的以及初始化文件的设置: profile: export BEADIR=/root/test export LD_LIBRARY_PATH=/root/test/lib:$LD_LIBRARY_PATH export DMQ_...
阅读全文
posted @ 2008-08-14 15:34
我一路走来。。。
阅读(947)
推荐(0)
2008年8月5日
摘要:
先定义一些我们使用的类: Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> class School { private IList m_Classes = new List(); in...
阅读全文
posted @ 2008-08-05 15:46
我一路走来。。。
阅读(331)
推荐(0)