C++ back-end + what front-end?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • stelios
    New Member
    • Mar 2007
    • 1

    #1

    C++ back-end + what front-end?

    Hi,

    I am planning on developing a little desktop application that will be a music teaching program, specifically instruments teaching. I want to use C++ as the back-end but I'm not sure on the front-end. The reason I am thinking of some other front-end is because the GUI will be quite complex and needs to be flashy. Namely it will have some animation maybe done with flash.
    So my questions are:
    1) Which language to use in the front-end(is C++ a good choise and if so any suggested libraries?)
    2) Can I bind more than one languages, for instance use a flash animation but use C# for buttons etc..?

    Thanks in advance
    Stelios
    P.S. Sorry if this is too general but I don't have it clear yet to describe the problem better.
  • nico5038
    Recognized Expert Specialist
    • Nov 2006
    • 3080

    #2
    I'm no C++ expert, but in general I see a database like MySQL as backend and PHP as the language for the frontend. PHP will allow the embedding of Flash and e.g. AJAX for direct access, but also MS SQL and ASP could be used when supported by your ASP.

    Nic;o)

    Comment

    • ronverdonk
      Recognized Expert Specialist
      • Jul 2006
      • 4259

      #3
      Originally posted by nico5038
      I'm no C++ expert, but in general I see a database like MySQL as backend and PHP as the language for the frontend. PHP will allow the embedding of Flash and e.g. AJAX for direct access, but also MS SQL and ASP could be used when supported by your ASP.

      Nic;o)
      What makes you say that?
      .... and PHP as the language for the frontend .....
      Ronald

      Comment

      • nico5038
        Recognized Expert Specialist
        • Nov 2006
        • 3080

        #4
        Two tier development in general is a database engine as backend and a GUI maintained by some tool/language as a frontend.
        Going into three tier would require an additional layer with code to maintain the business rules.

        Nic;o)

        Comment

        • ronverdonk
          Recognized Expert Specialist
          • Jul 2006
          • 4259

          #5
          Originally posted by nico5038
          Two tier development in general is a database engine as backend and a GUI maintained by some tool/language as a frontend.
          When you use PHP as the 'HTML construction tool', you are right.
          Originally posted by nico5038
          Going into three tier would require an additional layer with code to maintain the business rules.
          That could be PHP.

          Ronald

          Comment

          Working...