上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: '定义变量 Dim arr1 '数组赋值 arr1 = array(3, 6, 8, 7, 1, 2, 9,10) For m = 0 To UBound(arr1) For i = m+1 To UBound(arr1) k=arr1(m) If arr1(m) < arr1(i) Then arr1(m) = arr1... 阅读全文
posted @ 2017-08-26 16:14 LLSix 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 简单冒泡排序: 阅读全文
posted @ 2017-08-26 15:58 LLSix 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 数组内容双位数排序: 数组内容不同位数升序: a.sort()方法 sort方法还有两个可选参数:key和reverse key在使用时必须提供一个排序过程中调用的方法 reverse实现同位数降序排序,需要提供一个布尔值: 阅读全文
posted @ 2017-08-26 15:57 LLSix 阅读(1005) 评论(0) 推荐(0) 编辑
摘要: Dim fso,f,a set oExcel = CreateObject( "Excel.Application" ) oExcel.Visible = false '4) 打开已存在的工作簿: oExcel.WorkBooks.Open( "F:\1.xlsx" ) On Error Resume Next '判断是否存在Sheet2工作表,不存在新建 If oExcel.Wor... 阅读全文
posted @ 2017-08-26 11:39 LLSix 阅读(646) 评论(0) 推荐(0) 编辑
摘要: Vbs查找Excel中Sheet2工作表是否存在,不存在创建个新工作表 阅读全文
posted @ 2017-08-24 16:26 LLSix 阅读(1119) 评论(0) 推荐(0) 编辑
摘要: VBS控制Excel的一些常见方法:(一)使用动态创建的方法 首先创建Excel对象,使用ComObj: oExcel=CreateObject("Excel.Application")1)显示当前窗口: oExcel.Visible=True2)更改Excel标题栏: oExcel.Caption="应用程序调用MicrosoftExcel"3)添加新工作簿: oExcel.WorkBooks... 阅读全文
posted @ 2017-08-24 13:40 LLSix 阅读(3083) 评论(0) 推荐(0) 编辑
摘要: set oExcel = CreateObject( "Excel.Application" ) '创建oExcel对象 oExcel.Visible = false '4) 打开已存在的工作簿: oExcel.WorkBooks.Open( "C:\Users\Desktop\123.xlsx" ) '5) 设置第1个工作表为活动工作表: oExcel.WorkSheets(1).Activ... 阅读全文
posted @ 2017-08-24 13:24 LLSix 阅读(244) 评论(0) 推荐(0) 编辑
摘要: vbs代码: test.txt内容 阅读全文
posted @ 2017-08-23 14:11 LLSix 阅读(2705) 评论(0) 推荐(0) 编辑
摘要: selenium 阅读全文
posted @ 2017-08-23 09:29 LLSix 阅读(4604) 评论(0) 推荐(0) 编辑
摘要: 论在测试中版本迭代管理机制的实现和作用 当在一个项目中版本迭代更新慢,测试开发处于1对1的模式下版本迭代机制的实用性处于一般级别。 当在一个项目中版本迭代更新快,bug一大堆时,这时需要一个迭代管理机制是尤为必要的。 目前项目中开发测试的比例一般是4对1的上下浮动。 从开发角度:多个开发人员不能保证 阅读全文
posted @ 2017-08-21 21:53 LLSix 阅读(1091) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页