11 2009 档案

摘要:1.第一个函数 Ext.onReady(function() { alert("Congratulations! You have Ext configured correctly!");}); 2.对DOM操作var myDiv = document.getElementById('myDiv');//返回的是DOM node var myDiv = ... 阅读全文
posted @ 2009-11-30 14:33 Fan Zhang 阅读(188) 评论(0) 推荐(0)
摘要:想知道某类中的所有成员变量和函数 for temp in dir(request):     print temp 阅读全文
posted @ 2009-11-10 14:28 Fan Zhang 阅读(83) 评论(0) 推荐(0)
摘要:创建一个虚拟鼠标,在AddDevice中 status = IoCreateDevice (DriverObject, sizeof(DEVICE_EXTENSION), NULL, FILE_DEVICE_MOUSE, 0, true, // Not exclusive &fdo);这样创建的设备,即便创建符号链接,也不可能在应用程序中打开。这需要在DriverEntry中创... 阅读全文
posted @ 2009-11-01 23:32 Fan Zhang 阅读(471) 评论(0) 推荐(0)