.NET 8 migration
Hi, Currently I have completed the migration from .NET 4.8 to .NET 8 and I am able to load and use the migrated project in Revit 2025 but not in older versions. Do I have to use separate...
View ArticleRe: Programmatically Finish PickObjects Selection
Yea, I also would love to have a way to make a key binding to "finish" the operation. The solution provided by @rvtquestions works for most cases, but in my case, I'm selecting linked elements, and in...
View ArticleRe: Using Dynamo nodes with the Revit API
@sensiblehira @Niko_Davydov Thank you guys, I will look into this
View ArticleRe: .NET 8 migration
Yes, this topic has been discussed and solutions presented both here in this forum and elsewhere, e.g., on GitHub. Have you searched for any of those? I could do so for you, but I am lazy, so I prefer...
View ArticleRe: Collect Eleemnts that are NOT inside any room
Yes. In that case, you will indeed probably need to perform some kind of intersection test for the final perfect result. However, I would try to optimise that as far as possible, maybe in several...
View ArticleRevit 2022 download trial
Is Revit 2022 with toposurface available for download? If so, how do I get to it?
View ArticleRe: Using Dynamo nodes with the Revit API
alternatively, do it all in dynamo, take the C# portion up till the point you need Solid.ByUnion, write it as a zero-touch node. You will still need to convert to dynamo friendly objects, but that...
View ArticleRe: "Ignore All" Button Not Stopping Spell Check Process in WPF
I'd need to see more of your code for the SpellCheckWindow class. You are likely storing _stopProcessing incorrectly. When you update your _stopProcessing field you do not change the value of the...
View ArticleRe: Filtering Geometry based On CAD Layers
thanks for the reply @jeremy_tammik, by CADLinkInstance do you mean ImportInstance?and I searched the Revit SDK 2025 as well but couldn't find the method GetAllSubSolids() for the Solid class.
View ArticleRe: Imported CAD Data with LayerName
Hi @grahamcook were you able to solve your problem?
View ArticleRe: Optimization drawpoints?
I am having the same problem, need to add approx 2000 points to the toposolid. In Large scale Infrastructure models one can expect large number of points. How to resolve this. It is very slow.
View ArticleRe: .NET 8 migration
can someone create a template for this project and send me please.
View ArticleError opening model - The local file is not owned by the current user, who...
How do i skip this error or just close the file i am opening cleanly, when i get the error on opening a Revit model? "The local file is not owned by the current user, who therefore is not allowed to...
View ArticleRe: Creating an Electrical System by selecting voltage and phase (instance...
That does not work. It still creates an electrical system that's at 0 volts. Or has this changed?
View ArticleRe: PostCommand of external command (coming from ribbon) not working
Hi, I took some time to create a sample code to reproduce the problem and I found the cause of the issue. I created the ribbon tab, panel and controls in a OnApplicationInitialized callback. I tried to...
View ArticleRe: how to connect conduits in one conduitrun
hi moustafa, could you please show the whole code - where do you use that connector magic?
View ArticleInconsistent TaskDialog format
Steps to reproduceTaskDialog.Show("Title", "Message."); var task_dialog = new TaskDialog("Title") { MainContent = "Message." }; task_dialog.Show(); Actual behaviourThe first method (static Show) promts...
View Article