摘要:
Join()好用例如string[]tableName=newstring[]{"1","2","3"};textBox1.Text=string.Join(",",tableName);输出:1,2,3 阅读全文
摘要:
正则表达式对照表 阅读全文
摘要:
combobox中有1,2,3三个item第1次选择1,四个事件都触发了,当我再次选择1时,4没出现,3,2,1均出现 private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) { Messa... 阅读全文
摘要:
Creating a selection filter that finds dynamic blocks in AutoCAD using .NETAn interesting question came in via email from Rob Outman. He’s interested ... 阅读全文
摘要:
/// /// 获取窗口中块说明 /// /// 数据库对象 /// 窗口选择角点1 /// 窗口选择角点2 /// public static void getBlocks(this Database db,Point3d pt1,Point3d p... 阅读全文
摘要:
材料密度不为空。使用时需要按材料类别进行分类搜索。 阅读全文
摘要:
奔腾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... 阅读全文
摘要:
string ccc = db.OriginalFileName;//对应dwt文件的路径string ddd = db.Filename;//.bak文件对应的路径string eee = doc.Name;//当前dwg文件的路径//当前dll的路径string path = System.Re... 阅读全文
摘要:
2013:Autodesk.AutoCAD.DatabaseServices.HostApplicationServices.Current.UserRegistryProductRootKey2010:Autodesk.AutoCAD.Runtime.SystemObjects.DynamicLi... 阅读全文
摘要:
try { psv.SetPlotConfigurationName(ps, cOre, null); } catch (SystemException ex) { ed.WriteMessage("\n错误行开始:"); ed.WriteMessage("\n错误状态:" + ex.InnerEx... 阅读全文
摘要:
注意将form2中的botton2的modyfier属性修改为publicform1代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawin... 阅读全文
摘要:
http://wenku.baidu.com/link?url=Fe1saXNgSuLM4OgiCzsklfkqqwh1SqxbqrWyPTYRaDgT1Y8KZEKK7jwL_FPgCyOVwg_SpiwNk2EjElT8_9TvDkE31EwG2SaOPG4h6JAzmTy 阅读全文
摘要:
form的autosize=true,formborderstyle=fixedsingletablelayoutpanel及其里面的容器的dock=fill,autosize=truelabel中的文字比较贴着窗体边缘时可以通过padding属性来调整因定宽度则可以使用tablelayoutpan... 阅读全文
摘要:
开发界面选择动态块,读取其中的参数写入到表1中,如果blockname相同,则不允许加入程序界面上四个下拉框,第一级用于选择动态块名,第二级用于选择各块中的分类选择了动态块名后通过其ID可以查询到表2中的第二、三、四级分类,并且通过表1中id=1(假设)和字段名中含有user字样且字段值不为空来得到... 阅读全文
摘要:
//假设你的项目名称为Demo,PictureBox控件名称为pic1,资源中的图像名称为“IMG”//获取该资源的代码如下,GetObject的参数可以用拼接字符串的方式来完成//注意Resources文件夹下的名称跟资源中定义的名称未必是一致的pic1.Image=(Image)global::... 阅读全文
摘要:
打开高版本的access,点击打开,选择数据库文件,当前对话框中打开按钮旁边有个小的下拉三角形,点开,点击以独占的方式打开。打开数据库后在【文件】/【保存并发布】选择低版本的数据库。#access 阅读全文
摘要:
Jet 引擎,可以访问 Office 97-2003,但不能访问 Office 2007。ACE 引擎是随 Office 2007 一起发布的数据库连接组件,既可以访问 Office 2007,也可以访问 Office 97-2003。另外:Microsoft.ACE.OLEDB.12.0 可以访问... 阅读全文
摘要:
条件编译的原理是满足【条件编译符号】(见下图)时代码才有用,这帮我们CAD二次开发人解决一个很大的难题,我们可以只用维护一套代码就可以了,避免多套代码管理起来混乱我采用的是:一套代码文件加若干project框架来实现,打个简单的比喻,project框架相当于是一个酒瓶子,而代码则是其中的酒,瓶子可以... 阅读全文
摘要:
很多时候我们需要得到一个英文字符的 ASCII 码,或者一个汉字字符的 Unicode 码,或者从相关的编码查询它是哪一个字符的编码。很多人,尤其是从 VB 程序序转过来学 C# 的人,会报怨 C# 里为什么没有提供现成的函数来做这个事情——因为在 VB 中有 Asc() 函数和 Chr() 函数用... 阅读全文
摘要:
C#转义字符·一种特殊的字符常量;·以反斜线"\"开头,后跟一个或几个字符。·具有特定的含义,不同于字符原有的意义,故称“转义”字符。 ·主要用来表示那些用一般字符不便于表示的控制代码。 ·它的作用是消除紧随其后的字符的原有含义 ·用一些普通字符的组合来代替一些特殊字符,由于其组合改变了原来字符表示... 阅读全文
摘要:
Console.WriteLine("Found {0} in position of {1}",val,pos); 阅读全文
摘要:
连续定义变量并连续赋值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 阅读全文
摘要:
默认情况下,C#中的伪随机数生成器Random是根据系统时间来设置其种子的。Random rd = new Random();int randNum=rd.next(1,101)若我们采用默认的方式,对Random进行初始化的时候不赋予任何参数,其随机种子便采用系统时间。如果我们用循环一次生成多个随... 阅读全文
摘要:
主要是想将以前的lisp程序整合到现在的.net菜单中才会这么干的using Autodesk.AutoCAD.Windows;using Autodesk.AutoCAD.Runtime;using System.Windows.Forms;using Autodesk.AutoCAD.Datab... 阅读全文
摘要:
using System;using Autodesk.AutoCAD.ApplicationServices;using Autodesk.AutoCAD.DatabaseServices;using Autodesk.AutoCAD.EditorInput;using Autodesk.Auto... 阅读全文
摘要:
namespace BCCDELWIPOUT{ public class DraftingTools { [CommandMethod("BCC:WOUT")] public static void BCCDELETEWIPOUT() { Document doc = Application.Doc... 阅读全文
摘要:
usingAutodesk.AutoCAD.Runtime;usingAutodesk.AutoCAD.ApplicationServices;usingAutodesk.AutoCAD.DatabaseServices;usingAutodesk.AutoCAD.Geometry;namespac... 阅读全文
摘要:
Autodesk Developer NetworkDevBlog:http://adndevblog.typepad.com/autocad/kean's blog:http://through-the-interface.typepad.com/autodesk c#.net forum:htt... 阅读全文
摘要:
[CommandMethod("changeZoom")]staticpublicvoidCommandChangeViewportZoom(){// access database and editorDatabasedb =Application.DocumentManager. MdiActi... 阅读全文