欢迎加我的QQ群:193522571,一起来讨论、交流!
上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: Join()好用例如string[]tableName=newstring[]{"1","2","3"};textBox1.Text=string.Join(",",tableName);输出:1,2,3 阅读全文
posted @ 2014-07-08 21:28 swtool 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 正则表达式对照表 阅读全文
posted @ 2014-07-08 21:27 swtool 阅读(145) 评论(0) 推荐(0) 编辑
摘要: combobox中有1,2,3三个item第1次选择1,四个事件都触发了,当我再次选择1时,4没出现,3,2,1均出现 private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) { Messa... 阅读全文
posted @ 2014-07-08 21:26 swtool 阅读(1095) 评论(0) 推荐(0) 编辑
摘要: Creating a selection filter that finds dynamic blocks in AutoCAD using .NETAn interesting question came in via email from Rob Outman. He’s interested ... 阅读全文
posted @ 2014-07-08 21:25 swtool 阅读(494) 评论(0) 推荐(0) 编辑
摘要: /// /// 获取窗口中块说明 /// /// 数据库对象 /// 窗口选择角点1 /// 窗口选择角点2 /// public static void getBlocks(this Database db,Point3d pt1,Point3d p... 阅读全文
posted @ 2014-07-08 21:24 swtool 阅读(438) 评论(0) 推荐(0) 编辑
摘要: 材料密度不为空。使用时需要按材料类别进行分类搜索。 阅读全文
posted @ 2014-07-08 21:23 swtool 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 奔腾4 2.4GHZ FSB=800MHZ 内部带宽=CPU的主频×32位/8 =2400MHZ×32bit/8 =2400M/S×4B =9600MB/S 外部带宽(FSB的带宽)=FSB的频率×64位/8 =800MHZ×64bit/8 =800M/S×8B =6400MB/S例如:奔腾4 2... 阅读全文
posted @ 2014-07-08 21:22 swtool 阅读(587) 评论(0) 推荐(0) 编辑
摘要: string ccc = db.OriginalFileName;//对应dwt文件的路径string ddd = db.Filename;//.bak文件对应的路径string eee = doc.Name;//当前dwg文件的路径//当前dll的路径string path = System.Re... 阅读全文
posted @ 2014-07-08 21:21 swtool 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 2013:Autodesk.AutoCAD.DatabaseServices.HostApplicationServices.Current.UserRegistryProductRootKey2010:Autodesk.AutoCAD.Runtime.SystemObjects.DynamicLi... 阅读全文
posted @ 2014-07-08 21:21 swtool 阅读(201) 评论(0) 推荐(0) 编辑
摘要: try { psv.SetPlotConfigurationName(ps, cOre, null); } catch (SystemException ex) { ed.WriteMessage("\n错误行开始:"); ed.WriteMessage("\n错误状态:" + ex.InnerEx... 阅读全文
posted @ 2014-07-08 21:20 swtool 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 注意将form2中的botton2的modyfier属性修改为publicform1代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawin... 阅读全文
posted @ 2014-07-08 21:19 swtool 阅读(5130) 评论(0) 推荐(0) 编辑
摘要: http://wenku.baidu.com/link?url=Fe1saXNgSuLM4OgiCzsklfkqqwh1SqxbqrWyPTYRaDgT1Y8KZEKK7jwL_FPgCyOVwg_SpiwNk2EjElT8_9TvDkE31EwG2SaOPG4h6JAzmTy 阅读全文
posted @ 2014-07-08 21:18 swtool 阅读(169) 评论(0) 推荐(0) 编辑
摘要: form的autosize=true,formborderstyle=fixedsingletablelayoutpanel及其里面的容器的dock=fill,autosize=truelabel中的文字比较贴着窗体边缘时可以通过padding属性来调整因定宽度则可以使用tablelayoutpan... 阅读全文
posted @ 2014-07-08 21:17 swtool 阅读(673) 评论(0) 推荐(0) 编辑
摘要: 开发界面选择动态块,读取其中的参数写入到表1中,如果blockname相同,则不允许加入程序界面上四个下拉框,第一级用于选择动态块名,第二级用于选择各块中的分类选择了动态块名后通过其ID可以查询到表2中的第二、三、四级分类,并且通过表1中id=1(假设)和字段名中含有user字样且字段值不为空来得到... 阅读全文
posted @ 2014-07-08 21:16 swtool 阅读(243) 评论(0) 推荐(0) 编辑
摘要: //假设你的项目名称为Demo,PictureBox控件名称为pic1,资源中的图像名称为“IMG”//获取该资源的代码如下,GetObject的参数可以用拼接字符串的方式来完成//注意Resources文件夹下的名称跟资源中定义的名称未必是一致的pic1.Image=(Image)global::... 阅读全文
posted @ 2014-07-08 21:15 swtool 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 打开高版本的access,点击打开,选择数据库文件,当前对话框中打开按钮旁边有个小的下拉三角形,点开,点击以独占的方式打开。打开数据库后在【文件】/【保存并发布】选择低版本的数据库。#access 阅读全文
posted @ 2014-07-08 21:14 swtool 阅读(1489) 评论(0) 推荐(0) 编辑
摘要: Jet 引擎,可以访问 Office 97-2003,但不能访问 Office 2007。ACE 引擎是随 Office 2007 一起发布的数据库连接组件,既可以访问 Office 2007,也可以访问 Office 97-2003。另外:Microsoft.ACE.OLEDB.12.0 可以访问... 阅读全文
posted @ 2014-07-08 21:13 swtool 阅读(1390) 评论(0) 推荐(0) 编辑
摘要: 条件编译的原理是满足【条件编译符号】(见下图)时代码才有用,这帮我们CAD二次开发人解决一个很大的难题,我们可以只用维护一套代码就可以了,避免多套代码管理起来混乱我采用的是:一套代码文件加若干project框架来实现,打个简单的比喻,project框架相当于是一个酒瓶子,而代码则是其中的酒,瓶子可以... 阅读全文
posted @ 2014-07-08 21:12 swtool 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 很多时候我们需要得到一个英文字符的 ASCII 码,或者一个汉字字符的 Unicode 码,或者从相关的编码查询它是哪一个字符的编码。很多人,尤其是从 VB 程序序转过来学 C# 的人,会报怨 C# 里为什么没有提供现成的函数来做这个事情——因为在 VB 中有 Asc() 函数和 Chr() 函数用... 阅读全文
posted @ 2014-07-08 21:11 swtool 阅读(1578) 评论(0) 推荐(0) 编辑
摘要: C#转义字符·一种特殊的字符常量;·以反斜线"\"开头,后跟一个或几个字符。·具有特定的含义,不同于字符原有的意义,故称“转义”字符。 ·主要用来表示那些用一般字符不便于表示的控制代码。 ·它的作用是消除紧随其后的字符的原有含义 ·用一些普通字符的组合来代替一些特殊字符,由于其组合改变了原来字符表示... 阅读全文
posted @ 2014-07-08 21:10 swtool 阅读(340) 评论(0) 推荐(0) 编辑
摘要: Console.WriteLine("Found {0} in position of {1}",val,pos); 阅读全文
posted @ 2014-07-08 21:07 swtool 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 连续定义变量并连续赋值int num1,num2,num3;num1=num2=num3=1;++i--->i+1--i--->i-1int j = i++;--->int j=i 且 i+1i += 1-->i=i+1i -= 1-->i=i-1i *= i-->i=i*1 阅读全文
posted @ 2014-07-08 21:06 swtool 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 默认情况下,C#中的伪随机数生成器Random是根据系统时间来设置其种子的。Random rd = new Random();int randNum=rd.next(1,101)若我们采用默认的方式,对Random进行初始化的时候不赋予任何参数,其随机种子便采用系统时间。如果我们用循环一次生成多个随... 阅读全文
posted @ 2014-07-08 20:58 swtool 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 主要是想将以前的lisp程序整合到现在的.net菜单中才会这么干的using Autodesk.AutoCAD.Windows;using Autodesk.AutoCAD.Runtime;using System.Windows.Forms;using Autodesk.AutoCAD.Datab... 阅读全文
posted @ 2014-07-08 20:56 swtool 阅读(957) 评论(0) 推荐(0) 编辑
摘要: using System;using Autodesk.AutoCAD.ApplicationServices;using Autodesk.AutoCAD.DatabaseServices;using Autodesk.AutoCAD.EditorInput;using Autodesk.Auto... 阅读全文
posted @ 2014-07-08 20:55 swtool 阅读(1598) 评论(0) 推荐(0) 编辑
摘要: namespace BCCDELWIPOUT{ public class DraftingTools { [CommandMethod("BCC:WOUT")] public static void BCCDELETEWIPOUT() { Document doc = Application.Doc... 阅读全文
posted @ 2014-07-08 20:54 swtool 阅读(421) 评论(0) 推荐(0) 编辑
摘要: usingAutodesk.AutoCAD.Runtime;usingAutodesk.AutoCAD.ApplicationServices;usingAutodesk.AutoCAD.DatabaseServices;usingAutodesk.AutoCAD.Geometry;namespac... 阅读全文
posted @ 2014-07-08 20:52 swtool 阅读(276) 评论(0) 推荐(0) 编辑
摘要: Autodesk Developer NetworkDevBlog:http://adndevblog.typepad.com/autocad/kean's blog:http://through-the-interface.typepad.com/autodesk c#.net forum:htt... 阅读全文
posted @ 2014-07-08 20:49 swtool 阅读(237) 评论(0) 推荐(0) 编辑
摘要: [CommandMethod("changeZoom")]staticpublicvoidCommandChangeViewportZoom(){// access database and editorDatabasedb =Application.DocumentManager. MdiActi... 阅读全文
posted @ 2014-07-08 20:43 swtool 阅读(1339) 评论(0) 推荐(0) 编辑
摘要: usingAutodesk.AutoCAD.ApplicationServices;usingAutodesk.AutoCAD.DatabaseServices;usingAutodesk.AutoCAD.EditorInput;usingAutodesk.AutoCAD.Runtime;using... 阅读全文
posted @ 2014-07-07 17:42 swtool 阅读(1504) 评论(0) 推荐(0) 编辑
摘要: usingAutodesk.AutoCAD.Runtime;usingAutodesk.AutoCAD.ApplicationServices;usingAutodesk.AutoCAD.DatabaseServices;usingAutodesk.AutoCAD.EditorInput;using... 阅读全文
posted @ 2014-07-07 08:31 swtool 阅读(407) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.InteropServices;using Autodesk.AutoCAD.Runtime;... 阅读全文
posted @ 2014-07-07 08:30 swtool 阅读(734) 评论(0) 推荐(1) 编辑
摘要: /// /// 从句柄转换成ObjectId /// Version : 2010.03.29 Sieben /// /// 句柄,可以是Handle,string,int,long数据类型 /// 成功返回句柄所对应的ObjectId,否则返回ObjectId.Null publi... 阅读全文
posted @ 2014-07-07 07:57 swtool 阅读(624) 评论(0) 推荐(0) 编辑
摘要: §LinemyLine = (Line)myObject;§‘as’操作符-Line myLine = myObjectasLine; -§如果失败,没有异常,但对象为null !§‘is’操作符–if (myObj is Line) …§typeof操作符 – if typeof (obj1) =... 阅读全文
posted @ 2014-07-07 07:56 swtool 阅读(176) 评论(0) 推荐(0) 编辑
摘要: /// /// 过滤选择集合 /// 调用方法如: ObjectIdCollection EntityCollection = GetSelection(); /// /// 对象集合 public static ObjectIdCollection GetSelection() { Docu... 阅读全文
posted @ 2014-07-07 07:54 swtool 阅读(638) 评论(0) 推荐(0) 编辑
摘要: /// /// 作线的垂线 /// [CommandMethod("sText_MoveOfLine")] public void sText_MoveOfLine() { Database db = HostApplicationServices.WorkingDatabase; Editor... 阅读全文
posted @ 2014-07-07 07:48 swtool 阅读(497) 评论(0) 推荐(0) 编辑
摘要: /// /// 文字打断 /// [CommandMethod("sText_break")] public void sText_break() { Document doc = MgdAcApplication.DocumentManager.MdiActiveDocument; Datab... 阅读全文
posted @ 2014-07-07 07:46 swtool 阅读(447) 评论(0) 推荐(0) 编辑
摘要: //测试注册表 ////////////////////////////////////////////////////////////////////////// /// /// 读注册表 /// /// 获取路径 /// 要得到的值 /// 返回注册表指定键值 public static ... 阅读全文
posted @ 2014-07-07 07:45 swtool 阅读(323) 评论(0) 推荐(0) 编辑
摘要: ......省略一些usingusing Autodesk.AutoCAD.ApplicationServices;using Autodesk.AutoCAD.DatabaseServices;using Autodesk.AutoCAD.Runtime;using Autodesk.AutoCA... 阅读全文
posted @ 2014-07-07 07:43 swtool 阅读(882) 评论(0) 推荐(0) 编辑
摘要: ObjectIdCollection ids = STools.GetSelection(); if (ids.Count == 0) return; using (Transaction trans = doc.TransactionManager.StartTransaction()) { Li... 阅读全文
posted @ 2014-07-07 07:42 swtool 阅读(479) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页
欢迎加我的QQ群:193522571,一起来讨论、交流!