登录
首页 » C# » ConvertDwgToPDF

ConvertDwgToPDF

于 2021-04-18 发布 文件大小:18KB
0 157
下载积分: 1 下载次数: 15

代码说明:

  将dwg文件转换为pdf文件通过C#语言编写成功能代码(Convert the DWG file to a PDF file)

文件列表:

ConvertDwgToPDF\ConvertDwgToPDF.sln
ConvertDwgToPDF\ConvertDwgToPDF.suo
ConvertDwgToPDF\ConvertDwgToPDF\ConvertDwgToPDF.csproj
ConvertDwgToPDF\ConvertDwgToPDF\ConvertDwgToPDF.csproj.user
ConvertDwgToPDF\ConvertDwgToPDF\Program.cs
ConvertDwgToPDF\ConvertDwgToPDF\obj\Debug\ConvertDwgToPDF.csproj.FileListAbsolute.txt
ConvertDwgToPDF\ConvertDwgToPDF\obj\Debug\ConvertDwgToPDF.csproj.ResolveComReference.cache
ConvertDwgToPDF\ConvertDwgToPDF\obj\Debug\ConvertDwgToPDF.exe
ConvertDwgToPDF\ConvertDwgToPDF\obj\Debug\ConvertDwgToPDF.pdb
ConvertDwgToPDF\ConvertDwgToPDF\obj\Release\ConvertDwgToPDF.csproj.FileListAbsolute.txt
ConvertDwgToPDF\ConvertDwgToPDF\obj\Release\ConvertDwgToPDF.csproj.ResolveComReference.cache
ConvertDwgToPDF\ConvertDwgToPDF\obj\Release\ConvertDwgToPDF.exe
ConvertDwgToPDF\ConvertDwgToPDF\obj\Release\ConvertDwgToPDF.pdb
ConvertDwgToPDF\ConvertDwgToPDF\Properties\AssemblyInfo.cs
ConvertDwgToPDF\ConvertDwgToPDF\obj\Debug\TempPE
ConvertDwgToPDF\ConvertDwgToPDF\obj\Release\TempPE
ConvertDwgToPDF\ConvertDwgToPDF\obj\Debug
ConvertDwgToPDF\ConvertDwgToPDF\obj\Release
ConvertDwgToPDF\ConvertDwgToPDF\bin
ConvertDwgToPDF\ConvertDwgToPDF\obj
ConvertDwgToPDF\ConvertDwgToPDF\Properties
ConvertDwgToPDF\ConvertDwgToPDF
ConvertDwgToPDF

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

发表评论

0 个回复

  • TMS320C6711DandFPGA
    为满足某捷联导引头上图像辅助末制导系统的需要,设计了以高速浮点DSP芯片TMS320C6711D和现场可编程门阵列FPGA为核心的高性能图像匹配处理平台。文中详述了该系统的软、硬件设计以及各模块的组成和功能,最后通过软硬件联合测试表明,该系统可完全满足图像导引头上处理速度快、存储容量大、实时性强的要求,并具有小型化、低成本和集成度高的优点。 更多还原(In order to meet the demands of image-aided terminal guidance system,a high-performance scene-matching system based on TMS320C6711D and FPGA is designed.The overall hardware and software design and the composition of all function modules are described.Experiment results show that the scheme can totally meet the demands of high-speed,large storage and real-time performance of the strapdown seeker,and also has the merits of small volume,low cost and nice stability. 更多还原)
    2012-08-11 17:49:36下载
    积分:1
  • ArcGIS-Engine
    ArcGIS Engine基础开发资料,有兴趣的可以参考参考(ArcGIS Engine-based development information, interested can refer to reference)
    2013-12-04 09:50:22下载
    积分:1
  • IPEidtDemo
    vc ——使用IP地址控件显示和设置IP地址IPEidtDemo(vc- use the IP address control to display and set the IP address IPEidtDemo)
    2011-07-24 20:46:05下载
    积分:1
  • Wireless-collaborative-network
    无线协作网络中存在干扰时的中继选择协议 无线协作网络中存在干扰时的中继选择协议(Wireless collaborative network exists in the relay selection protocol interference)
    2011-04-26 23:15:59下载
    积分:1
  • 951190
    说明:  深入了解mpeg4,MPEG-4技术白皮书,有参考意义,还可以(An in-depth understanding of the mpeg4,MPEG-4 Technology White Paper is useful, but also useful)
    2019-04-18 17:10:27下载
    积分:1
  • VCPP-MFC-Print
    VC++ 用MFC编写的打印程序,希望对大家有用(VC++ MFC Print)
    2012-05-10 19:48:58下载
    积分:1
  • work-experience-in-fighting
    说明:  让你少奋斗10年的工作经验 认真阅读和领悟相信大家能受益匪浅(Least 10 years of your work experience in fighting)
    2011-04-03 15:15:28下载
    积分:1
  • c# 扫描IP Http Header
    c# 扫描IP Http Headerusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Threading;using System.IO;namespace HScan{ public partial class Form1 : Form { int _currentThreads = 0; int _maxThreads = 100; Thread main = null; Thread mt = null; List threads = new List(); public Form1() { InitializeComponent(); Control.CheckForIllegalCrossThreadCalls = false; } private void btnStart_Click(object sender, EventArgs e) { btnStart.Enabled = false; if (txtStart.Text.Trim() == "") { MessageBox.Show("起始IP不能为空."); return; } if (txtEnd.Text.Trim() == "") { MessageBox.Show("结束IP不能为空."); return; } int ts = Convert.ToInt32(txtThreads.Text); _maxThreads = ts; string startIp = txtStart.Text; string endIp = txtEnd.Text; TParameter tp=new TParameter(); tp.StartIp=startIp; tp.EndIp=endIp; tp.ThreadCount=ts; main = new Thread(new ParameterizedThreadStart(StartMe)); main.Start(tp); } protected void ThreadManage() { Thread c=null; while (true) { System.Object lockThis = new System.Object(); lock (lockThis) { for (int i = 0; i < threads.Count; i ) { if (threads[i] != null && !threads[i].IsAlive) { c = threads[i]; break; } } if (c != null) { threads.Remove(c); } } } } protected void StartMe(object ob) { mt = new Thread(new ThreadStart(ThreadManage)); mt.Start(); TParameter p = ob as TParameter; string curIp = p.StartIp; while (true) { for (int i = 0; i < _maxThreads; i ) { if (curIp != "") { if (_currentThreads >= _maxThreads) break; System.Object lockThis = new System.Object(); lock (lockThis) { _currentThreads ; if (_currentThreads > _maxThreads) _currentThreads = _maxThreads; string tip = curIp; Thread t = new Thread(new ParameterizedThreadStart(Run)); t.Start(tip); threads.Add(t); curIp = IPUtility.getLastIp(curIp, p.EndIp, 1); } } else { break; } } } } protected void Run(object ob) { string ip = ob.ToString(); SocketGetHead h = new SocketGetHead(); string ret = h.GetHtml(ip, 80); if (ret.IndexOf("DVRDVS-Webs") > 0) { ListViewItem item = new ListViewItem(); item.SubItems[0].Text = (listView1.Items.Count 1).ToString(); ListViewItem.ListViewSubItem lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = ip; item.SubItems.Add(lvSubItem); lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = "DVRDVS-Webs"; item.SubItems.Add(lvSubItem); listView1.Items.Add(item); } System.Object lockThis = new System.Object(); lock(lockThis) { lblCurIp.Text = ip; _currentThreads--; if (_currentThreads < 0) _currentThreads = 0; } } private void tsmCopy_Click(object sender, EventArgs e) { if (listView1.SelectedItems.Count > 0) { string ip = listView1.SelectedItems[0].SubItems[1].Text; Clipboard.SetText(ip); } } private void tsmExport_Click(object sender, EventArgs e) { StreamWriter writer = new StreamWriter(AppDomain.CurrentDomain.BaseDirectory "\export.txt",true); foreach (ListViewItem item in listView1.Items) { string ip=item.SubItems[1].Text; writer.WriteLine(ip); writer.Flush(); } writer.Flush(); writer.Close(); MessageBox.Show("导出成功!"); } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } Thread.Sleep(5000); } private void btnStop_Click(object sender, EventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } btnStart.Enabled = true; } }}
    2014-06-23下载
    积分:1
  • elfp
    linux elf的加壳工具,需要的可以参考参考(linux elf packers tools need to refer to the reference)
    2013-08-27 19:14:35下载
    积分:1
  • 基于ACE网络库的天气预报信息获取工具。代码展现了1:ACE socket的基本用法;2:unicode与GBK互转;3:base64码;...
    基于ACE网络库的天气预报信息获取工具。代码展现了1:ACE socket的基本用法;2:unicode与GBK互转;3:base64编码;-A weather reporter tool based on ACE. you can learn to know the usage of the ACE_Sock_Stream and Base64 algorithm
    2022-08-09 09:01:23下载
    积分:1
  • 696516资源总数
  • 106428会员总数
  • 7今日下载