当前位置:  编程技术>.net/c#/asp.net

c#在excel中添加超链接示例分享

    来源: 互联网  发布时间:2014-10-25

    本文导语:  1.新建一个项目 2.给项目添加引用:Microsoft Excel 12.0 Object Library (2007版本) 代码如下:using Excel = Microsoft.Office.Interop.Excel; 3.对excel的简单操作:如下代码“添加超链接”等。 代码如下:using System;using System.Collections.Generic;using Syst...

1.新建一个项目

2.给项目添加引用:Microsoft Excel 12.0 Object Library (2007版本)

代码如下:

using Excel = Microsoft.Office.Interop.Excel;

3.对excel的简单操作:如下代码“添加超链接”等。

代码如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Excel = Microsoft.Office.Interop.Excel;

namespace ExcelExample
{
    class Program
    {
        static void Main(string[] args)
        {
            Excel.Application excelApp = new Excel.Application();  // Creates a new Excel Application
            excelApp.Visible = true;  // Makes Excel visible to the user.

            // The following line if uncommented adds a new workbook
            //Excel.Workbook newWorkbook = excelApp.Workbooks.Add();

            // The following code opens an existing workbook
            string workbookPath = "F:\11.xlsx";  // Add your own path here

            Excel.Workbook excelWorkbook = null;

            try
            {
                excelWorkbook = excelApp.Workbooks.Open(workbookPath, 0,
                    false, 5, "", "", false, Excel.XlPlatform.xlWindows, "", true,
                    false, 0, true, false, false);
            }
            catch
            {
                //Create a new workbook if the existing workbook failed to open.
                excelWorkbook = excelApp.Workbooks.Add();
            }

            // The following gets the Worksheets collection
            Excel.Sheets excelSheets = excelWorkbook.Worksheets;

            // The following gets Sheet1 for editing
            string currentSheet = "Sheet1";
            Excel.Worksheet excelWorksheet = (Excel.Worksheet)excelSheets.get_Item(currentSheet);

            // The following gets cell A1 for editing
            Excel.Range excelCell = (Excel.Range)excelWorksheet.get_Range("A1", "B1");

            // The following sets cell A1's value to "Hi There"
            excelCell.Value2 = "Hi There";

            Excel.Worksheet excelWorksheet2 = (Excel.Worksheet)excelSheets.get_Item("Sheet2");
            Excel.Range excelCell2 = (Excel.Range)excelWorksheet2.get_Range("A1", Type.Missing);
            excelCell2.Value2 = "Hi Here";

            // Add hyperlinks to the cell A1
            //excelWorksheet.Hyperlinks.Add(excelCell,"http:\www.baidu.com",Type.Missing,"baidu",Type.Missing);

            // Add hyperlinks from "sheet1 A1" to "sheet2 A1"
            excelWorksheet.Hyperlinks.Add(excelCell, "#Sheet2!A1", Type.Missing, Type.Missing, Type.Missing);

            // Close the excel workbook
            //excelWorkbook.Close(true,Type.Missing,Type.Missing);

            //Quit the excel app
            //excelApp.Quit();
        }
    }
}


    
 
 

您可能感兴趣的文章:

  • c#如何生成Excel(.xls和.xlsx)文件
  • C#连接Excel2003和Excel2007以上版本做数据库的连接字符串
  • .NET下 c#通过COM组件操作并导出Excel实例代码
  • 解析c#操作excel后关闭excel.exe的方法
  • c#连接excel示例分享
  • C#连接Excel驱动与示例代码分享
  • C#将Sql数据保存到Excel文件中的方法
  • c#(asp.net)连接excel的实例代码
  • C#将html table 导出成excel实例
  • c#生成excel示例sql数据库导出excel
  • c# 验证本机excel版本的代码
  • c#读取excel内容内容示例分享
  • 验证本机的excel版本的C#代码
  • c#实现excel中添加超链接的代码
  • C#利用com操作excel释放进程的解决方法
  • C#读取EXCEL文件内容写入数据库的代码
  • C#基于NPOI生成具有精确列宽行高的Excel文件的方法
  • C#中datagridview导出Excel并打开的实现代码
  • c#利用Excel直接读取数据到DataGridView
  • c# 读取与写入Excel的代码
  • C#操作EXCEL DataTable转换的实例代码
  • php读取excel文件示例分享(更新修改excel)
  • php导出word文档与excel电子表格的简单示例代码
  • ASP.NET中上传并读取Excel文件数据示例
  • jquery使用jxl插件导出excel示例
  • 将excel数据转换成dataset示例
  • jxl操作excel写入数据不覆盖原有数据示例
  • php检测上传excel文件类型的示例代码
  • npoi2.0将datatable对象转换为excel2007示例
  • phpexcel导入excel到mysql数据库(示例)
  • PHP 导出Excel示例分享
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java操作excel2007文档介绍及代码例子
  • php读写excel类 excel_php
  • php导入excel php使用phpexcel导入excel文件
  • 公司要给客户做报表,从数据库返回数据,他们死活要返回的格式为Excel格式,请问我怎样才能把数据库返回的数据存为Excel的格式?
  • 如何上传EXCEL文件?以及在页面中显示EXCEL文件?
  • PHP导出excel php使用phpexcel导出excel文件
  • 请教:JSP怎样连接Excel?将Excel的数据读取出来用表格显示在浏览器上?
  • 填充Excel列表工具 Excel2Entity
  • 急问:如何用JSP在excel中画图表???
  • 请问 Java 里面有生成 Excel 文件的类吗?
  • 关于Excel做后台数据调用!已经变通到这样了!高手们来帮忙吧!
  • PHP Excel Reader
  • 如果用在个JSP页面直接显示EXCEL内容?
  • JSP能否访问Excel?JDBC吗?
  • vb.net借助剪贴板将图片导入excel内
  • Java 的 Excel 组件 Aspose.Cells
  • Java能调用OLE对象吗?怎样利用Java生成Excel报表?
  • Biff Excel Reader
  • 怎样从java中导出一个excel文件??
  • 那位老大查询过EXCEL文件,请进来帮忙!多谢
  • 怎么用JSP动态查询EXCEL文件中的数据????????????????????


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3