您的位置:ITPUB个人空间 >> 日志 >> 微软技术
EXCEL VBA 事件
事件1. 有触发条件2. 自动执行3. 工作表级14个,工作薄级36个(包含所有工作表级),应用程序级43个(包含所有工作薄,工作表级) 如下代码会产生递归调用问题:Private Sub Worksheet_Change(ByVal Target As Range) Target = Target -1End Sub 防止出现递归调用事件:Private Sub Worksheet_Change(ByVal Target As Ra... ...全文
tomshenhao (上海) 发表于 2011-11-11 评论: 4 点击(89)
FtpWebRequest类_ftp客户端
  测试提出代发工资模块上传加密文件报错,在vitual studio设置断点.定位到方法                            corFileList.Add(upFile2);     &n... ...全文
wisdomone1 (北京) 发表于 2011-10-28 评论: 5 点击(87)
在gridview中编辑时 用dropdownlist
.aspx页面的Gridview:   <asp:TemplateField HeaderText="活動名稱">                <ItemTemplate>                  &nb... ...全文
taogchan (广东) 发表于 2011-10-17 评论: 4 点击(127)
sql 性能優化
1.1 基本概念 与数据库技术密切相关的基本概念包括:数据、数据库、数据库管理系统和数据库系统四大概念。1.    数据(Data)    数据是对客观事物的一种描述,是由能被计算机识别与处理的数值、字符等符号构成的集合,即数据是指描述事物的符号记录。    广义地说,数据... ...全文
Flourish2004 (广东) 发表于 2011-09-16 评论: 4 点击(243)
c#之string.format方法示例
string.format方法示例// This code example demonstrates the String.Format() method.// Formatting for this example uses the "en-US" culture.using System;class Sample {      //color枚举,其值各为:黄,蓝,绿    enum Color {Yellow = 1, Blue, Green};//enum color {ye... ...全文
wisdomone1 (北京) 发表于 2011-09-13 评论: 4 点击(237)