See the top rated post in this thread. Click here

Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Where do I start?

  1. #1
    AUGI Addict sfaust's Avatar
    Join Date
    2004-01
    Location
    Littleton, CO (Denver Metro)
    Posts
    1,535
    Login to Give a bone
    1

    Default Where do I start?

    Ok, so I am quite experienced with Revit (+/- 6 years) but I am VERY inexperienced with programming (read: essentially no experience) but I usually pick up on computer stuff pretty quickly. Anyway, I would like to be able to use the API to do at least some basic things and make some little tools on my own.

    So my question to those of you who are good at this is: where should I start? I don't really want to do a lot of fancy stuff, just basics. What language should I look at? Where is a good place to learn? Any other suggestions for me?

    Thanks,
    Steve

  2. #2
    Revit Forum Manager Steve_Stafford's Avatar
    Join Date
    2001-12
    Location
    Irvine, CA
    Posts
    7,567
    Login to Give a bone
    0

    Default Re: Where do I start?

    I'm sure that Guy or Danny would be better suited for a reply but if I were in your shoes I'd probably focus on learning C# (CeeSharp) as it was developed for .net if I have my facts straight. From what little I've read C# is supposed to have a number of advantages over the other choices because it is a newer language. Revit is developed in C++. You can technically write code in any number of development languages as long as they are .net versions.

    Another possible candidate would be Visual Basic. I did some hacking, wouldn't call it real programming, a few years back using Visual Basic and I was able to figure out how to do what I wanted but I wouldn't call it easy either. Learning to use programming languages is a whole discipline/career unto itself, you'd do well to pick up some books on the basic concepts of programming and then pick a language to focus on. I enjoyed a book called Code Complete which is an insiders look at the world of programming and how things go wrong and best practices etc.

    There are also quite a large number of examples you can examine on the Revit CD. I don't recall which language they are in...VB? help...Guy? Danny? I seem to recall a similar thread sometime in the past here.

    You'll probably inevitably start with the traditional "Hello World" routine

  3. #3
    All AUGI, all the time clog boy's Avatar
    Join Date
    2006-12
    Location
    Probably near a PC.
    Posts
    843
    Login to Give a bone
    0

    Default Re: Where do I start?

    Microsoft has some free developer stuff, Visual Studio Basic or something, in which you can build windows (read: drag around with buttons etc). The tricky part is to write some code (functions) to make the buttons do what you want.
    Do you have webdesign experience? I think building forms and make them interact with Javascript, getting yourself familiar with the Document Object Model and basic JS functions, are a good crash course. I might be wrong ofcourse, since I gave up programming after the first few basic tutorials. (am learning JS now tho)
    I'm told Visual Basic and C# are very similar to writing macros for Word and Excel.
    To be honest, I don't even know how to make an API work with Revit, which is supposed to be the easy part.

    Good luck and have fun. I'll keep an eye on this thread.

  4. #4
    Revit Founder LRaiz's Avatar
    Join Date
    2003-07
    Location
    Newton, MA
    Posts
    714
    Login to Give a bone
    0

    Default Re: Where do I start?

    Unless you want to change your profession then save your time and stick to architecture. I think it is silly to expect that a non-professional programmer might be able to develop anything significant in for an application as complicated as Revit.

  5. #5
    All AUGI, all the time dpasa's Avatar
    Join Date
    2004-08
    Location
    Greece
    Posts
    637
    Login to Give a bone
    0

    Default Re: Where do I start?

    Correct LRaiz, I did some very nice things with AutoLisp but this is completely different, I was using Turbo Pascal in the past, a much better and easier prog. language than VB and C#. Then it changed to Delphi, very powerful but I had to learn programming in Windows... Sorry, I am not a programmer... I guess everything goes too fast now for amateurs.

  6. #6
    Digital Delivery Director Brian Myers's Avatar
    Join Date
    2003-02
    Location
    Stillwater, Oklahoma
    Posts
    1,819
    Login to Give a bone
    0

    Default Re: Where do I start?

    Not to lead this thread off-track, but since it seems that the general thought is to "not do this at home" are there any good resources you would recommend for this customized app content? Not programming, but a resource to either download or purchase existing API applications/tools for Revit?

  7. #7
    Active Member Prodev75's Avatar
    Join Date
    2003-09
    Location
    Indianapolis, Indiana
    Posts
    97
    Login to Give a bone
    0

    Default Re: Where do I start?

    Plenty of information out there on programming. Search the web, buy a few books do a little research. Books with examples helped me out a lot when I started tinkering around with programming back in 1999. You’ll know soon enough if it’s for you for if it’s even worth learning. After all, even the most advanced of programmers had to start somewhere.

  8. #8
    NavisWorks Moderator david.kingham's Avatar
    Join Date
    2004-07
    Location
    Fort Collins, CO
    Posts
    1,329
    Login to Give a bone
    0

    Default Re: Where do I start?

    I'm in the same boat Steve, I really don't know programming besides petty stuff like batch files, html and lisp.
    From my research it seems the two obvious choices are C# and vb.netTake a look at Danny's pdf from AU
    I decided to start with vb.net because it's easier for newbies to learn.
    The syntax is the major difference
    C# looks like this:

    if() { }
    vs.

    vb.net:

    If .. Then
    End If

    I ordered this book , the reviews sounded good for a total newb
    You can download VB Express here

    I also tried to learn python because it is probably the easiest language to learn, but there are no examples out there except what GuyR is doing, I couldn't figure out how to make the connection between revit and python.
    I hope to prove the naysayers wrong by learning this and developing some minor tools, but I definitely have my doubts, this is very hard.
    Last edited by david.kingham; 2007-09-11 at 07:24 PM.

  9. #9
    AUGI Addict
    Join Date
    2003-11
    Location
    New Zealand
    Posts
    1,116
    Login to Give a bone
    0

    Default Re: Where do I start?

    The API and .NET target audience is the professional programmer. However, there are many who recognise the immense amount of data contained in a Revit project is ripe for manipulation using an API both to improve the BIM experience and integrate with company standards.

    The trouble is to make this powerful tool usable for the masses is a difficult task. Personally, I'm trying hard to find solutions to this problem. Python has been one experiment. A binding to the API has been working for a while. The problem is the (lack of) tools available to write programs for Revit are currently only available with professional tools which defeats the goal of making it available for beginners. I do have a solution of how to solve this but there are a number of reasons this won't happen for a while.

    So for now the only option is to learn a standard .NET language , the API and a whole heap of practice. Personally I find c# more readable than VB.NET. Most API samples are in c# and something like 70% of developers using .NET are programming in c#. However, if you have experience of visualbasic then VB.NET will be a better fit. Using online tools you can convert code between c# and VB.NET which helps.

    Writing code: One of SharpDevelop22, or VB.NET or C#.
    Also the SDK contains a lot of samples and documentation, SDK

    Learning the API:
    Danny's pdf and notes from AU are a good start. The API SDK is contained on your installation CD as well as online. There are samples here on AUGI as well. Start off with compiling the Helloworld sample in the SDK and practice how to debug from your development environment.

    Learning .NET:
    There are many books and online resources available. I find the Apress series of books generally well written. To do anything basic in Revit you'll need to understand in addition to the basic language how to construct WinForms, raise/consume events as well as understanding the basics of generics.

    HTH,

    Guy

  10. #10
    AUGI Addict sfaust's Avatar
    Join Date
    2004-01
    Location
    Littleton, CO (Denver Metro)
    Posts
    1,535
    Login to Give a bone
    0

    Default Re: Where do I start?

    hmm... alright. Thanks for all of your time. It seems that it may take more time that I really have to throw at it, but we'll see... I'll keep you posted

    thanks for everyone's help.

    Steve

Page 1 of 2 12 LastLast

Similar Threads

  1. Where do I start?
    By r.grandmaison in forum Revit Structure - General
    Replies: 3
    Last Post: 2006-05-05, 04:45 PM
  2. How did it all start?
    By Roger Evans in forum Revit Architecture - General
    Replies: 35
    Last Post: 2005-06-02, 11:44 PM
  3. Please help me start using MDT 6
    By john_ndaga2003 in forum MDT - General
    Replies: 1
    Last Post: 2005-05-31, 10:31 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •