资源简介
支持从WORD读取数据,向Word写入表格,数据等,支持写入到指定位置
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.xml;
namespace LaboratoryManagementUI.publics
{
public partial class Fm_Create_Rep : Form
{
private List _li_v_demodata = null;
public Fm_Create_Rep(List li)
{
_li_v_demodata = li;
InitializeComponent();
}
private void button1_Click(object sender EventArgs e)
{
if (radioButton1.Checked)
{
if (txt_No.Text == ““)
{
MessageBox.Show(“请输入方案编号.“);
return;
}
if (_li_v_demodata[0].DemoNameName == “集中器“)
{
System.Threading.Thread th = new System.Threading.Thread(Create3);
th.IsBackground = true;
th.Start(GetBook());
}
else
{
System.Threading.Thread th = new System.Threading.Thread(Create);
th.IsBackground = true;
th.Start(GetBook());
}
}
else
{
//获取书签
System.Threading.Thread th = new System.Threading.Thread(Create2);
th.IsBackground = true;
th.Start(GetBook2());
//开始生成
}
btn_save.Enabled = false;
btn_close.Enabled = false;
}
///
/// 获取书签信息
///
///
private Dictionary GetBook()
{
StringBuilder code = new StringBuilder();
bool ling = false;
foreach (Model.v_DemoData item in _li_v_demodata)
{
if (ling)
{
code.AppendLine(item.DemoCode.Trim());
ling = false;
}
else
{
code.Append(item.DemoCode.Trim() + ““);
ling = true;
}
}
int leng = 25;
Dictionary Book = new Dictionary();
Book.Add(“DemoGG“ SetStr(_li_v_demodata[0].StandardName));
Book.Add(“DemoName“ SetStr(_li_v_demodata[0].DemoNameName));
Book.Add(“DemoNo“ txt_No.Text);
Book.Add(“DemoPCB“ SetStr(_li_v_demodata[0].DemoZBNO));
Book.Add(“DemoPlan“ SetStr(_li_v_demodata[0].PlantName));
Book.Add(“DemoPlan2“ SetStr(_li_v_demodata[0].PlantName));
Book.Add(“DemoType“ SetStr(txt_jyfs.Text));
Book.Add(“DemoXH“ Se
- 上一篇:C#权限管理系统--动态加载菜单栏
- 下一篇:c# 画流程图
相关资源
- C#对TXT读写
- GPSTXT文件C#读写分割管理
- C# SerialPort IO操作 支持大数据收发
- C# IC卡读写源码(纯代码,无封装)
- C# 基于Modbus TCP的西门子S7200PLC读写例
- C#winfrom非接触IC卡M1卡读写调试源代码
- C#读写内存
- C#向Excel写入数据和图表源
- C#.NET读写DWG格式的CAD文件 DWGdirect_NE
- Unity Excel插件 EPPlus 3.5+4.x
-
C# HOSTli
nk 通讯读写欧姆龙PLC含源代 - C#winform读写txt文件
- C#通过TCP读写S7-200 SMART PLC地址
- C#使用S7.Net,Sharp7连接读写PLC
- IC卡读写器 C# 代码
- C#寻找所有的U盘,获取U盘序列号,直
- C# spire.xls无水印破解版 可以读写exc
- C# 基于以太网使用MX Component控件读写
- C#通过S7.NET读写西门子S7PLC(DB块).
- C#使用sharp7读写S7-1200 寄存器模块数据
- C# NPOI读写Excel
- 基于C#的RFID卡识别和读写
- C#读写研华PCI-1750
- 通过ID卡识别用户信息(ID卡识别)
- C#实现文件读写
- Modbus 用C#实现ModBus读写功能
- DXF C#实现读写DXF代码
- C#访问OpcServer实现读写PLC
- C#通过OPC连接PLC读写数据
- C#实现AGV库位信息读写
评论
共有 条评论