登录
首页 » C# » operation excel libraries, which applies to winform and webform

operation excel libraries, which applies to winform and webform

于 2022-02-03 发布 文件大小:9.90 kB
0 94
下载积分: 2 下载次数: 1

代码说明:

c#操作excel程序库,适用于winform和webform-operation excel libraries, which applies to winform and webform

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • SVG
    SVG matlab仿真模型 绝好的学习资料 无功补偿 谐波抑制(SVG matlab simulation model excellent learning materials reactive power compensation harmonic suppression)
    2014-03-07 09:22:00下载
    积分:1
  • vcPPsourcecode7
    说明:  600个大型项目源码之一: MATLAB与VC++混合编程实现一维小波多尺度分解 小波分析世纪80年代开始发展成熟起来的一个数学分支,其应用领域十分广泛,并逐步成为信号分析的又一有力工具。MATLAB的小波工具箱为我们提供了小波多尺度分解函数,方便了我们对小波的使用。但是用它所编写的软件不能脱离MATLAB编程环境在Windows平台下直接运行,代码执行效率低下,运行时占较多的系统资源,不能达到某些用户的需求。 VC++是由美国Microsoft 公司开发的可视化C/C++集成编程环境,是目前功能最强大的软件开发工具之一。被广泛应用于Win32平台的基础应用程序的开发。 它具有强大的图形界面编程能力且代码执行效率高,可生成脱离VC++环境而独立运行的应用程序。可是VC++在数值处理分析和算法工具等方面不如MATLAB。 本文结合VC++和MATLAB 的各自优点,以VC++图形界面作为前台框架,MATLAB作为后台进行数值运算和数据可视化,利用组件对象模型(COM)技术作为媒介,实现了一维小波多尺度分解。 (matlab and vc++ program: Wavelets are a class of a functions used to localize a given function in both space and scaling. A family of wavelets can be constructed from a function ... )
    2011-02-27 07:33:07下载
    积分:1
  • 194736
    该算法实现字母个数的统计,希望对大家有用!(The algorithm to achieve the number of letters statistics, we hope to be useful!)
    2018-09-06 06:38:04下载
    积分:1
  • SQLHelper连接数据库示例类
    [实例简介] 连接sql数据库 类 [核心代码]using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Configuration;using System.Data.SqlClient;using System.Data; namespace Itcast.Cn{ public static class SqlHelper { private static readonly string conStr = ConfigurationManager.ConnectionStrings["connStr"].ConnectionString; //执行增删改的 public static int ExecuteNonQuery(string sql, CommandType cmdType, params SqlParameter[] pms) { using (SqlConnection con = new SqlConnection(conStr)) { using (SqlCommand cmd = new SqlCommand(sql, con)) { cmd.CommandType = cmdType; if (pms != null) { cmd.Parameters.AddRange(pms); } con.Open(); return cmd.ExecuteNonQuery(); } } } //封装一个执行返回单个值的方法 public static object ExecuteScalar(string sql, CommandType cmdType, params SqlParameter[] pms) { using (SqlConnection con = new SqlConnection(conStr)) { using (SqlCommand cmd = new SqlCommand(sql, con)) { cmd.CommandType = cmdType; if (pms != null) { cmd.Parameters.AddRange(pms); } con.Open(); return cmd.ExecuteScalar(); } } } //返回SqlDataReader对象的方法 public static SqlDataReader ExecuteReader(string sql, CommandType cmdType, params SqlParameter[] pms) { SqlConnection con = new SqlConnection(conStr); using (SqlCommand cmd = new SqlCommand(sql, con)) { cmd.CommandType = cmdType; if (pms != null) { cmd.Parameters.AddRange(pms); } try { con.Open(); return cmd.ExecuteReader(CommandBehavior.CloseConnection); } catch (Exception) { con.Close(); con.Dispose(); throw; } } } //封装一个返回DataTable的方法 public static DataTable ExecuteDataTable(string sql, CommandType cmdType, params SqlParameter[] pms) { DataTable dt = new DataTable(); using (SqlDataAdapter adapter = new SqlDataAdapter(sql, conStr)) { adapter.SelectCommand.CommandType = cmdType; if (pms != null) { adapter.SelectCommand.Parameters.AddRange(pms); } adapter.Fill(dt); } return dt; } //封装一个带事务的执行Sql语句的方法 public static void ExecuteNonQueryTran(List list) { using (SqlConnection con = new SqlConnection(conStr)) { using (SqlCommand cmd = con.CreateCommand()) { con.Open(); using (SqlTransaction trans = con.BeginTransaction()) { cmd.Transaction = trans; try { foreach (var SqlObject in list) { cmd.CommandText = SqlObject.Sql; if (SqlObject.Parameters != null) { cmd.Parameters.AddRange(SqlObject.Parameters); } cmd.CommandType = SqlObject.CmdType; cmd.ExecuteNonQuery(); cmd.Parameters.Clear(); } trans.Commit(); } catch (Exception) { trans.Rollback(); } } } } } } public class SqlAndParameter { public string Sql { get; set; } public SqlParameter[] Parameters { get; set; } public CommandType CmdType { get; set; } }}
    2015-04-01下载
    积分:1
  • Digital-Image-Processing
    介绍了如何利用 MATLAB 及其图像处理工具箱进行数字图像处理, 并通过一些例子来说明利用 MATLAB 图像处理工 具箱进行图像处理的方法。 (Introduction to digital image processing using MATLAB and its image processing toolbox, and through some examples to illustrate the use of MATLAB image processing Toolbox for image processing method.)
    2014-02-24 20:41:46下载
    积分:1
  • 模拟S50卡片
    单片机控制PN532,模拟S50卡片,支持id号改写(特殊卡号除外),支持扇区读写,整机即为一张卡片,可通过普通mifare读卡器操作
    2023-05-30 07:10:03下载
    积分:1
  • Xtreme.ToolkitPro.v12.0.0
    Codejock Xtreme ToolkitPro v12.0.0, 当前最新版本,含全部源代码,以及103个例子工程,是VC界面开发的首选!其他就不多介绍了,干VC开发这一行的都知道其强大!!! 拜托管理员,我搞到这个不容易,上传这么大的文件更不容易,多给我一些点,上次我传XtremeToolkit1122近30M,结果我从网站只能下载几个代码!这次要多给一些(Codejock Xtreme ToolkitPro v12.0.0, the latest version of the current, including all source code, as well as 103 examples of the project is to develop the interface of choice for VC! Other not more than the introduction, dry VC to develop this line all know its strong! ! ! Please administrator, I get this is not easy to upload large files so more is not easy, give me some points, the last time I Chuan XtremeToolkit1122 near 30M, the results I can only download from the site of several code! The more to some)
    2020-06-26 02:40:02下载
    积分:1
  • SIM808-GPRS
    说明:  GPRS通讯,使用TCP/IP方式连接至服务器,自动连接并检测在线状态,定时发送数据(GPRS communication, use TCP / IP mode to connect to the server, automatically connect and detect the online status, and regularly send data)
    2019-11-05 15:08:14下载
    积分:1
  • XIAOZHILI
    /***************************************************************自平衡程序修改时间:2013.12.8***************************************************************/#include "main.h"#define position_max 6000  //位置最大值int j=0;int position=0;int k=0;int i=0;int speed1=0;int speed=0;int acc_y=0;int acc_z=0;int gyr_x=0;int receive=0;int pwm=0;float G_X=0,A_X=0;float gyro_angle=0;float balan_angle=0;float balan_angle1=0;float G_X1=0,A_X1=0,G_X2=0,G_X3=0,GXERRO=0;float erro[3]; int pwmneed=0;int pwmturn=0;void adjust(void);void judge(){  pwm=PID_control(erro[0],G_X)+PID_control_2(speed,position);  //pwm+=pwmneed;  if(pwm>100) //pwm限幅  {    pwm=100;  }  if(pwm
    2022-01-26 00:27:33下载
    积分:1
  • openrave-master
    openrave是一个开源的机器人开发平台,可以上面进行机器人的运动规划。(Openrave is an open source robot development platform, which can be used for robot motion planning.)
    2017-06-23 11:34:17下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载