Button控件获取文件夹: Button打开磁盘文件夹: 1 System.Diagnostics.Process.Start("explorer.exe", FilePath); ...
实现的功能是把多个Excel文件的第一个工作表(Sheet)合并到一个Excel文件的多个工作表里,并且新工作表的名称等于原Excel文件的文件名。开发环境Excel2007,但是Excel2003应该也能用,Excel2000似乎不能用。代码如下:'功能:把多个工作簿的第一个工作表合并到一个工作簿 ...
分类:
其他好文 时间:
2017-09-27 19:03:44
阅读次数:
194
import requests from bs4 import BeautifulSoup jq='http://news.gzcc.cn/html/2017/xiaoyuanxinwen_0926/8262.html' res = requests.get(jq) res.encoding='gb... ...
分类:
其他好文 时间:
2017-09-27 13:27:32
阅读次数:
125
SQL常用命令使用方法:(1) 数据记录筛选:sql="select * from 数据表 where 字段名=字段值 order by 字段名 [desc]"sql="select * from 数据表 where 字段名 like '%字段值%' order by 字段名 [desc]"sql= ...
分类:
数据库 时间:
2017-09-27 11:38:01
阅读次数:
246
mysql> select * from test; +----+--------+ | id | name | +----+--------+ | 1 | apple | | 2 | banana | | 3 | cherry | | 4 | apple | | 5 | banana | | 6 ... ...
分类:
数据库 时间:
2017-09-26 22:17:03
阅读次数:
183
SELECT rpl.ID, rpl.DID, rpl.TRADE_TYPE, rpl.TRADE_TIME, rpl.CALL_TIME, rpl.TRADE_ADDR, rpl.RECEIVE_PHONE, rpl.CALL_TYPE, rpl.CREATE_DATE, rpl.CREATE_B... ...
分类:
其他好文 时间:
2017-09-26 19:44:14
阅读次数:
306
#!/bin/sh # add by lxr MYSQL_SOCK="/tmp/mysql.sock" MYSQL_PWD="qq139547" ARGS=1 if [ $# -ne "$ARGS" ];then echo "Please input one arguement:" fi case ... ...
分类:
数据库 时间:
2017-09-26 16:11:18
阅读次数:
195
一、数据库的创建create 创建 database 数据库1.创建数据库studentcreate database studentcreate database teacher 2.在student数据库中 打开数据库 use 数据库名use student二。表的创建创建数据表语法 creat ...
分类:
数据库 时间:
2017-09-26 16:06:31
阅读次数:
204
直接在查询分析器中执行以下代码就行: 方法一) 方法二) 返回所有出现过该字符串的存储过程名: ...
分类:
数据库 时间:
2017-09-26 15:57:39
阅读次数:
198
https://en.wikipedia.org/wiki/Time_complexity#Polynomial_time An algorithm is said to be of polynomial time if its running time is upper bounded by a ...
分类:
其他好文 时间:
2017-09-26 15:00:09
阅读次数:
441