# -*- coding: utf-8 -*- """ Created on Thu Mar 06 11:22:03 2014 @author: Administrator """ import win32com.client from win32com.gen_py import msof,mspp,msxl from string import uppercase from pandas import Series #%% 将常量发布到全局命…
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Data.SqlClient; using S…
转载自Kun Lee "Creating SQL Server performance based reports using Excel" 性能测试调优中对数据库的监控十分重要,使用Excel方便地生成report对我们的工作效率提高也很重要.本文用到的Excel数据在另一篇博文"怎样获取Windows平台下SQL server的性能计数器值"里有详细描写.或者进到本文中给出的博客链接"Setting up Performance Monitor to…
function addTable(){ createTable1(1000); //createTable2(1000); //createTable3(1000); //createTable4(1000); //createTable5(1000); } function createTable1(rows){ var div = document.getElementById("div1Id"); var child = div.childNodes; for(var i =…
Sub AddSheets() Dim i As Integer Dim DaysInt As Integer Dim NameStr As String DaysInt = DateAdd(, Now) - Now NameStr = Month(Now) & "-" Application.DisplayAlerts = False For i = Sheets.Count To Step - If Sheets(i).Name <> ActiveSheet.N…
,新建C#控制台应用程序(Excel创建图表) using System; using System.Collections.Generic; using System.Linq; using System.Text; //解决方案中 添加引用 Execl(COM组件) using MSExcel = Microsoft.Office.Interop.Excel; using System.IO; using System.Reflection; namespace ExeclCharts {…
项目中经常用到需要操作Excel文件,例如:导出数据库中的数据,读取数据等.但是电脑又没有安装office,不能直接调用微软的库,最后经过查找,找到这样的一个不用安装office的库.一个.NET库,可以读取/写入没有安装Microsoft Office的Office格式.没有COM +,没有互操作. public class ExcelNpoiTest { /// <summary> /// NPOI基础的Excel创建 /// </summary> public static…