Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
187 views

How to break someone into testing?

OK. Our product works. Beta testers are actually getting their stuff done. Time for the next iteration. But how to ensure quality? We need a tester! How do I get someone fresh off the street started ...
3
votes
2answers
99 views

.NET code coverage tools don't work on native applications that load .net assemblies

I am writing a plug-in module for Revit Architecture, which provides a .NET API. Essentially, you create an assembly with classes that implement a specific interface. Revit then loads the assembly ...
2
votes
1answer
316 views

C# Need to wait for a COM event to fire before continuing execution without control over event

I've read a few other questions that seem similar but I'm still very confused, and none of the answers seem to be working for me so I decided to ask another question. Please bear with me, I'm not very ...
0
votes
1answer
57 views

Access elements from a linked revit model

I have two revit projects, MainProject.rvt and ProjectToLink.rvt. MainProject.rvt contains a link to ProjectToLink.rvt. Using the code below while in the MainProject.rvt document I can access the ...
0
votes
1answer
62 views

Silent save without prompting in Revit API

I'm using the Revit 2011 API and when I do Document.Save() on an existing family file it prompts me with the "Save As" dialog to specify a file name. How can I have it save without prompting the ...
0
votes
1answer
50 views

Integrating Autocad Revit 12 to .net Application

I have been given a work to integrate Rwevit 12 to my .net application.Can any one please help me and give me guidelines on how to begin this.I am supposed to read the file and save it to my ...
0
votes
1answer
100 views

How to get extents in a drafting view in Revit

I want to be able to mirror all of the elements in a drafting view according to the midpoint of the x value extents of the drawing. xMidpoint in the example below is what I'm trying to get. I have ...
0
votes
1answer
99 views

Anyone using WPF / MVVM in the Revit environment?

Anyone using WPF / MVVM in the Revit environment? Be interested yo hear any feedback ie framework or not? Is it possible? I'd also like to embed some Silverlight controls later like Pivotviewer. ...
0
votes
1answer
63 views

Revit api placing detail component using PromptForFamilyInstancePlacement

I'm trying to place a detail component using 'PromptForFamilyInstancePlacement', but am having trouple properly defining the FamilySymbol. Examples I have found show how to to this using a ...
0
votes
1answer
368 views

C#, Revit architecture 2012: how to change any wall in curtain wall and how to manage the curtain lines

I'm programming in C# with the Revit API 2012. I have a programm which select a wall and get differents parameters, but i don't know how to change a wall in curtain wall. And after i want to control ...
0
votes
1answer
195 views

Revit, how get Position, length and height in a select wall

I have this code and i don't know i can display the position, the height and the lenght of my wall selected using System; using System.Collections.Generic; using System.Linq; using System.Text; ...
0
votes
1answer
258 views

revit families and filtering elements

Hi guys i need to filter the selected elements by family. We have a timber beam family and i need to modify only selected elements that are part of the timber family. Ive looked online but cant ...
0
votes
1answer
87 views

revit 2011 get length of a wall

Has anyone got any code to get the length of a wall. Currently I use :- ElementCategoryFilter WallsFilter = new ElementCategoryFilter(BuiltInCategory.OST_Walls); FilteredElementCollector ...
0
votes
1answer
78 views

Advanced Transfer Project Standards Functionality Using Revit API

I would like to create Revit plugin using Revit API for transferring project standards between multiple Revit projects. Is this possible using Revit API?
0
votes
0answers
62 views

how to create a installer for revit 2011 in visual studio 2008

Can anyone tell me how to create a installer for revit 2011 in visual studio 2008? What i felt creating an installer for revit 2011 is that folder structure is contrasting from what it is in other ...
0
votes
0answers
70 views

Understanding .NET 4 security for hosted DLLs

I've been having some problems upgrading some DLL's of mine from .NET 3.5 to .NET 4.0. They are addins for a program (Autodesk Revit) that sit on a network drive. When the user clicks on a button in ...
0
votes
1answer
96 views

Rendering Revit files to a graphics surface in a Windows Forms/WPF app

I noted on AutoDesk forum post that there are commercial SDKs that allow you do read/write/render DWG files within your Windows Forms application. http://www.woutware.com/cadlib/4.0/pricing.html is ...
0
votes
1answer
1k views

System.BadImageFormatException An attempt was made to load a program with an incorrect format

I'm writing a plug-in for another program that is based on a public .NET API. Typically these plugins are made by creating a class library DLL that references the API assembly. Then a command class is ...
0
votes
1answer
207 views

How to get all parameter choices in Revit?

There is an element's parameter that has like 5 choices (combobox's style). I know how to get the current selected one, but is there a way to retrieve the 4 other choices?
0
votes
2answers
506 views

How to create Revit add-in Windows installer in Visual Studio 2008

Process of manually installing Revit 2011 add-in: 1. Put add-in's DLLs in desired location, for example C:Program Files\RevitAddin\RvtAddin.dll 2. Create .addin xml file that contains information ...
0
votes
1answer
91 views

In Revit how to manipulate the tangents of Hermite spline programly?

I want to choose 3d graphic (not for game) development as my major growing direction. Which books should i read? Which background knowledge I need to learn?
0
votes
2answers
83 views

In Revit how to do interference detecting programly?

More precisely, How can I determine whether a Solid intersecting with another element. I looked over the Revit API, and had no idea about this. Any advice will be appreciated!
0
votes
1answer
410 views

Placing a library part using the Revit Api

I am using the revit api to import a family symbol. The code below is working however it loads the family into revit, and then you have to manually drag it from the familys tree or insert using the ...
0
votes
1answer
547 views

Autodesk Revit MEP 2010 .NET API C# room to door relation

working with VS 2008 and Autodesk Revit MEP 2010 in C# i am trying to find out if a door is connecting to rooms: ElementSetIterator elementsetiteratorBIMDoors = ...
0
votes
1answer
466 views

How to set the value of a shared parameter with type binding in Autodesk Revit Architecture 2010?

I have a shared parameter UValue bound to the Wall type with TypeBinding in Autodesk Revit Architecture 2010. I can easily access the parameter with: Definition d = ...
0
votes
1answer
113 views

How can I access the overridden properties of a .NET API object in IronPython?

I am using IronPython to create a shell for a plugin API to Autodesk Revit Architecture 2010 to speed up learning their API. One of the classes the API provides is Autodesk.Revit.Elements.Room, ...