Kris, thanks for your advanced level tutorial. Very helpful.
@soheilabigdeli4164 жыл бұрын
Really helpful, thanks for sharing!
@CesarCADfull Жыл бұрын
Thanks for your videos, have you a video where you explain how to work with Workset using API?
@CatGuy-tm7og5 жыл бұрын
Hi Kris, Thank you for telling us ow to do this. It was helpful
@abduls93164 жыл бұрын
Thank you KrispCAD.
@joaomoura19752 жыл бұрын
Muito bom! Obrigado pela partilha!
@abdelmonaamkallali39484 жыл бұрын
Very helpful. Thank you a bunch.
@jumpingPeter3 жыл бұрын
thanks very helpful
@pavelmakarenko69844 жыл бұрын
Спасибо. Видео очень помогло.
@tebogomodingoane39673 жыл бұрын
Where were these methods called?
@erik....6 жыл бұрын
Very helpful, thank you.
@xuandientran49505 жыл бұрын
Hi Kris, How do we automatically load this ribbon in another machine? Thanks ,
@krispcad16575 жыл бұрын
Hi Xuan, to copy this plug in to another computer (or several computers) you just need to copy the addin and dll files to the user's app data folder... for Revit 2019 the folder would be: %appdata%\Autodesk\REVIT\Addins\2019 You could automate this with a script or batch file.
@aleksandradebowska40555 жыл бұрын
Hi Kris, This is great post but somehow at the end I'm getting error saying ''cannot implicitly convert type xxx.BitmapImage to System.Windows.Media.Imaging.BitmapSource'' and idea how to resolve it?
@krispcad16575 жыл бұрын
Hi Aleksandra, you may have to make an explicit cast... can you send me your code to krisp.design@gmail.com
@aleksandradebowska40555 жыл бұрын
@@krispcad1657 ok I did. Thank you for reply
@krispcad16575 жыл бұрын
@@aleksandradebowska4055 thanks... i've had a look at your code and can see that you've added an internal class overwriting BitmapImage? If you remove that internal class so that the code uses the standard BitmapImage class, then on line 98 you will need to change the spelling from "bmp.CasheOption" to "bmp.CacheOption"
@aleksandradebowska40555 жыл бұрын
thank you Kris I will try to change it @@krispcad1657
@claudiocesar22945 жыл бұрын
Good Morning, Would you have video APIs for Revit? please tell us how much it costs? thank you very much Claudio - Brazil
@krispcad16575 жыл бұрын
Hi Claudio, I'm not exactly sure what you mean... can you give me some more details via my email krisp.design@gmail.com please?
@lucassevero63996 жыл бұрын
Hi, nice work! Im starting my study in Revit API. Can you send me to donwload the 2019 template ? Tks acd keep the good work!
@krispcad16576 жыл бұрын
Thanks for watching :) you can get the latest releases of the Revit AddIn Visual Studio templates from Jeremy's github repo here: github.com/jeremytammik/VisualStudioRevitAddinWizard/releases It looks like the latest is for 2018. You can update the template to be for 2019 by updating the references hint path to the 2019 paths and the path to the Revit.exe in the build actions.
@angelperez60344 жыл бұрын
@@krispcad1657 how to install this template?
@rachelthornton41612 жыл бұрын
So frustrating when you follow this great tutorial 100%, there are no errors at build time, and it doesn't work and your new to c# and the Revit API and don't know what the problem is :(
@dannyconde12085 жыл бұрын
#region Namespaces using System; using System.Collections.Generic; using Autodesk.Revit.ApplicationServices; using Autodesk.Revit.Attributes; using Autodesk.Revit.DB; using Autodesk.Revit.UI; using System.Windows.Media.Imaging; using System.Reflection; using System.Windows.Data; #endregion I have 9 calls but you have more could you say more libraries you call?