Re: Revit crashes when I click the open file button in the opening screen
Do you have SP1 installed for Windows 7?Also what is your VGA card?
View ArticleRe: A question about suppressing warning messages in Revit
This will remove the custom failure processor, but from the current location will only remove it in the event of a failure of type DuplicateInstances; it will be active for all commands until...
View ArticleRe: Revit crashes when I click the open file button in the opening screen
Hi, Thanks for the suggestion. I've done that, and I've installed all updates on my PC, and still the problem persists, I'm afraid.
View ArticleRe: FailureHandling API and bypass error dialog
Dear Ali, All The Building Coder know about detecting and handling dialogues and dialogues is summarised in the corresponding topic group:...
View ArticleRe: Disable warnings
This code remove the warning but not performing the task. Example: I want to switch join wall and column it give warning that "One element completely inside one another". If I write the failure method...
View ArticleRe: Disable warnings
Hi, Can you try this : using (Transaction trans = new Transaction(document)) { trans.Start("EXEMPLE"); FailureHandlingOptions options = trans.GetFailureHandlingOptions(); MyPreProcessor preproccessor =...
View ArticleRe: Disable warnings
Yes I try this, I written same code as above but nothing is happen. I does not cut the column.
View ArticleRe: FailureHandling API and bypass error dialog
Pease try the following: private void Application_FailuresProcessing(object sender, FailuresProcessingEventArgs e) { FailuresAccessor failuresAccessor = e.GetFailuresAccessor();...
View ArticleRe: Disable warnings
Please provide a sample RVT file for your case so that I can reproduce the error.
View ArticleRe: Revit crashes when I click the open file button in the opening screen
I'm afraid you will need to re-install windows
View ArticleRe: Revit crashes when I click the open file button in the opening screen
That's not right. I'm sure re-installing Windows would fix it, because it fixes everything. It's not a solution, though.
View ArticleRe: Revit crashes when I click the open file button in the opening screen
Have you tried to disable all your plugins ?
View ArticleRe: Revit crashes when I click the open file button in the opening screen
I don't have any plugins for Revit. It's also a clean install.I did have an application called Clover installed, which does affect Windows Explorer, but I have since uninstalled this in the hope that...
View ArticleRe: Revit crashes when I click the open file button in the opening screen
have you tried to disable your anti-virus ?
View ArticleRe: Revit crashes when I click the open file button in the opening screen
I can't as it's a work computer, but the antivirus has always been there without causing any problems.
View ArticleRe: Revit crashes when I click the open file button in the opening screen
What is written in the Journal File ? C:\Users\UserName\AppData\Local\Autodesk\Revit\Autodesk Revit 2015\Journals
View ArticleRe: How to change the type of a Ramp
You need to use the BuiltInCategory.OST_Ramps and collect the elementype using whereElementiselementType filter. bic is your builtincategory foreach ( Element elem in new FilteredElementCollector(doc)...
View ArticleRe: How to change the type of a Ramp
I had put this issue aside for some following version of my add-in and actually this issue still rests in my TODO-list.So thanks a lot for the reply. I will paste your code into my project as a comment...
View ArticleRe: mep electrical chamfer wire to do an arc instead of chamfer
Sorry for late reply, please try this: #region Namespaces using System; using System.Text; using System.Linq; using System.Xml; using System.Reflection; using System.ComponentModel; using...
View ArticleRe: Roof by Face
You need a footprint (any closed loop) if you have a sample RVT project please provide it so I may can help.
View Article