用EXCEL维护了写字楼的租赁情况,需要用BI工具分析,于是就写了个VBA进行分析。Sub Rental_Click()
'判断变量的类型函数
'VarType = TypeName("fafafas")
'第一步拷贝EXCEL标题
Sheet2.Activate
Sheet2ColumnCount = Sheet2.UsedRange.Columns.Count
...
分类:
编程语言 时间:
2015-01-22 00:23:20
阅读次数:
322
Jquery+Ajax分页测试
$(function () {
InitPage(1, 10);
$(".nextPage").click(function () {
InitPage($("#nextpage").val(), 10);
});
...
分类:
Web程序 时间:
2015-01-21 18:11:02
阅读次数:
235
Graphics g;//画板 GraphicsPath path;//路径 private void button1_Click(object sender, EventArgs e) { //从路径中构造区域 ...
分类:
其他好文 时间:
2015-01-21 17:54:49
阅读次数:
197
private void button1_Click(object sender, EventArgs e) { UpdatePicBoxEventHandle UpdatePicBox = new UpdatePicBoxEventHandle(...
分类:
其他好文 时间:
2015-01-21 16:28:58
阅读次数:
80
对于单击事件而言,jQuery同样提供了动态交替的toggle()方法,这个方法接受两个参数,两个参数均为监听函数,在click事件中交替使用。
例子:点击事件的动态交互。
script type="text/javascript">
$(function() {
$("#ddd").toggle(
...
分类:
Web程序 时间:
2015-01-21 13:27:36
阅读次数:
200
/// /// 上移 /// /// /// private void tsbMoveUp_Click(object sender, EventArgs e) { i...
分类:
移动开发 时间:
2015-01-21 10:10:56
阅读次数:
151
trigger()可以触发指定事件是大家基本都知道的了。除了trigger()之外我们也可以这样来触发:html1 javascript1 $(function(){2 $('#box').click(function(){3 alert(11111)...
分类:
Web程序 时间:
2015-01-21 06:29:34
阅读次数:
207
【题目】
Determine whether an integer is a palindrome. Do this without extra space.
click to show spoilers.
Some hints:
Could negative integers be palindromes? (ie, -1)
If you are thinking of...
分类:
其他好文 时间:
2015-01-20 22:21:27
阅读次数:
153
1.前台js 1 $().ready(function () { 2 3 $('[name="checkAll"]').click(function () { 4 if ("checked" == $('input[name="checkAll"]').attr("...
分类:
数据库 时间:
2015-01-20 19:51:56
阅读次数:
180
鼠标事件:ActionChains 类? context_click() 右击? double_click() 双击? drag_and_drop() 拖动鼠标右键:from selenium.webdriver.common.action_chains import ActionChains #导...
分类:
Web程序 时间:
2015-01-20 17:43:17
阅读次数:
196