scf0413 发表于 2010-12-21 15:04:35

求vb.net实例

版主们,能否提供些关于vb.net的开发实例,供小弟学习学习,小弟在此先 谢谢了!

雪山飞狐_lzh 发表于 2010-12-21 15:12:06

开发手册里有很多的
官网的教程应该也有不少
http://www.adskconsulting.com/adn/cs/api_course_sched.php

scf0413 发表于 2010-12-21 15:36:20

谢谢指点

chpmould 发表于 2010-12-21 19:58:09

我也是刚学,简单画线和画圆public void LineCir()
      {
            Database db = HostApplicationServices.WorkingDatabase;
            using (Transaction ta = db.TransactionManager.StartTransaction())
            {
                BlockTable bt = (BlockTable)ta.GetObject(db.BlockTableId, OpenMode.ForRead);
                BlockTableRecord btr = (BlockTableRecord)ta.GetObject(bt, OpenMode.ForWrite);
                Line Lent = new Line(new Point3d(0, 0, 0), new Point3d(20, 10, 0));
                Circle Cent = new Circle(new Point3d(0, 0, 0), Vector3d.ZAxis, 5);
                btr.AppendEntity(Lent);
                       btr.AppendEntity(Cent);
                ta.AddNewlyCreatedDBObject(Lent, true);
                ta.AddNewlyCreatedDBObject(Cent, true);
                ta.Commit();
            }
      }
页: [1]
查看完整版本: 求vb.net实例