相信现在绝大多数计算机上使用的是IE浏览器。如何通过编程控制IE的操作呢,本文将一步步介绍如何通过VB 调用IE的对象库来对IE进行控制。 本文使用的编程工具是VB6英文企业版,浏览器是IE5,以下的代码只能在IE4及以上版本下运行。另外为了能深 入了解程序代码,最好能安装MSDN。文中的所有对象、 ...
分类:
其他好文 时间:
2017-01-26 23:09:53
阅读次数:
235
How a Kalman filter works, in pictures I have to tell you about the Kalman filter, because what it does is pretty damn amazing. Surprisingly few softw ...
分类:
其他好文 时间:
2017-01-22 22:45:47
阅读次数:
378
Using this plugin one can navigate the code easily. Source code and detailed user manual in https://github.com/league1991/CodeAtlasSublime . Find Call ...
分类:
其他好文 时间:
2017-01-19 07:51:23
阅读次数:
293
selenium webdriver窗口切换,有时候在做自动化的时候需要打开很多很多的页面, 当在操作不同的页面的时候需要切换窗口,下面是如何切换到前后页面窗口的操作: 下面是却换到单个页面的前后页面,即:页面的前进和后退 driver.navigate().back();点击当前页面后退按钮dri ...
分类:
Web程序 时间:
2017-01-17 15:23:34
阅读次数:
288
2007 年 1 月 9 日,乔布斯在旧金山莫斯科尼会展中心发布了首款 iPhone,而在十年后的 1 月 9 日,微信小程序正式上线。张小龙以这样的形式,向乔布斯致敬。 小程序在哪里? 小程序功能模块在“发现”频道最下方的位置。如果没有,请先将微信升级到最新版本,然后在通讯录搜索‘小程序示例’,点 ...
分类:
微信 时间:
2017-01-16 12:47:02
阅读次数:
4970
在Ubuntu安装的PyCharm与Windows不同,除了Editor中的字体、配色需要设置外,文件操作栏(File--Edit--View--Navigate--Code--Refactor )也需要配置 配置方法:File->Settings->Appearance&Behavior->App ...
分类:
系统相关 时间:
2016-12-31 11:38:23
阅读次数:
1497
Download the build agent Downloading the build agent is really simple. Navigate to your TFS control panel, click on Agent pools and then Download agen ...
分类:
Web程序 时间:
2016-12-28 20:17:57
阅读次数:
454
从输入 URL 到浏览器接收的过程中发生了什么事情? What really happens when you navigate to a URL 上面两篇文章都解读的很好,值得阅读。 接下来在总结一下这个过程: 1、首先,会查询缓存,如果缓存存在的话则直接响应,否则继续下面过程; 2、当发送一个U ...
分类:
Web程序 时间:
2016-12-21 01:55:52
阅读次数:
245
js方式的页面跳转1.window.location.href方式 <script language="JavaScript" type="text/javascript"> window.location.href="target.aspx"; </script>2.window.navigate ...
分类:
Web程序 时间:
2016-12-06 18:20:28
阅读次数:
211
第一种方式 创建浏览器对象模式 如果提示无法创建对象时需要先打开对象。 Set ie = CreateObject("InternetExplorer.Application") ie.visible=true ie.navigate("http://www.baidu.com") Set ie = ...
分类:
其他好文 时间:
2016-12-05 19:15:50
阅读次数:
220