摘要:
1: 过滤所有的工作集 2:过滤工作集中的所有元素 阅读全文
摘要:
private void spinEdit1_EditValueChanging(object sender, DevExpress.XtraEditors.Controls.ChangingEventArgs e) { string s = Convert.ToString(e.NewValue); if (s == "") ... 阅读全文
摘要:
declare mycur cursor for( select RowGuid,PositionX,PositionY FROM [LY_BIMPM_RoadBridge].[dbo].[SpacePositionCategory] WHERE PositionX>0 AND PositionY>0) OPEN mycur; declare @rowguid varchar(50... 阅读全文
摘要:
USE [BIMPM_ModelData] GO INSERT INTO [dbo].[Model_ItemEFile] ([RowGuid] ,[ParentRowGuid] ,[Title] ,[Description] ,[Size] ,[ExtendNam... 阅读全文
摘要:
----循环查找构件表,在构件关系表中,给每个构件关联4张图纸declare @itemRowGuid varchar(50) declare auth_cur cursor for select RowGuid from [BIMPM_RoadBridge].[dbo].[ProjectConstructionItemInfo] where BidSectionRowGuid = '8373... 阅读全文
摘要:
/// /// 获取整棵树的所有选中的节点 /// /// /// private List GetSelectedNodes(DevExpress.XtraTreeList.TreeList treeList) { List sNodes = new List(); ... 阅读全文
摘要:
USE [R_BIMPM_RoadBridge]GOINSERT INTO [dbo].[ProjectConstructionType_Relation] ([RowGuid] ,[ProjectRowGuid] ,[Constructi... 阅读全文
摘要:
DECLARE My_Cursor1 CURSOR --定义游标FOR (SELECT RowGuid , ProjectRowGuid FROM [BIMPM_Base].[dbo].[ProjectPermission_Role] where SubSystemRowGuid = 'A93183... 阅读全文
摘要:
在autocad使用代码生成三维模型[CommandMethod("cww")] public void CreateWedge() { // Get the current document and database, and start a transaction Document acDoc = Application.DocumentManager.MdiActiveDocument; Database acCurDb = acDoc.Database; Editor ed = acDoc.Editor; using (Transaction acTrans = a 阅读全文