摘要: [代码] 阅读全文
posted @ 2009-12-29 18:32 clown 阅读(2851) 评论(0) 推荐(0) 编辑
摘要: [代码] 阅读全文
posted @ 2009-12-29 18:28 clown 阅读(688) 评论(0) 推荐(0) 编辑
摘要: [代码] 阅读全文
posted @ 2009-12-29 18:27 clown 阅读(701) 评论(0) 推荐(0) 编辑
摘要: [代码] 阅读全文
posted @ 2009-12-29 18:26 clown 阅读(815) 评论(0) 推荐(0) 编辑
摘要: VB掌管WebBrowser访问MSHTML成员虽然较VC++有限,但对大多数的应用问题不大,而且实现过程也很简单.一.在VB中使用WebBroswer控件1.在VB中使用Microsoft Internet Controls做浏览器最方便,但远不能尽WebBrowser之所能. VB能够实现的一些功能如下: >掌管WebBrowser控件实现浏览功能 >自动化IE >捕捉IE事... 阅读全文
posted @ 2009-12-29 18:26 clown 阅读(603) 评论(0) 推荐(0) 编辑
摘要: Function URLEncode(strURL) Dim I Dim tempStr For I = 1 To Len(strURL) If Asc(Mid(strURL, I, 1)) < 0 Then tempStr = "%" & Right(CStr(Hex(Asc(Mid(strURL, I, 1)))), 2) tempStr = "%" & Left(CSt... 阅读全文
posted @ 2009-12-29 18:24 clown 阅读(4136) 评论(0) 推荐(1) 编辑
摘要: [代码] 阅读全文
posted @ 2009-12-29 18:23 clown 阅读(2495) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1WebBrowser取消弹出式窗口23PrivateSubWebBrowser1_NavigateComplete2(ByValpDispAsObject,URLAsVariant)4DimoDoc... 阅读全文
posted @ 2009-12-29 18:22 clown 阅读(923) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--vb创建隐藏系统管理员'用法: HideUser用户名,密码OptionExplicit'系统账户操作PrivateDeclareFunctionNetUserAddLib"netapi32.dll"... 阅读全文
posted @ 2009-12-29 18:20 clown 阅读(631) 评论(0) 推荐(0) 编辑
摘要: 先看一下不需要传入参数的多线程例子:例1ThreadStart threadStart=new ThreadStart(Calculate); Thread thread=new Thread(threadStart);  thread.Start();  public void Calculate(){  double Diameter=0.5;  Console.Write("The Area... 阅读全文
posted @ 2009-12-20 13:41 clown 阅读(3724) 评论(2) 推荐(1) 编辑