CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8

Threaded View

  1. #7
    Join Date
    May 2007
    Posts
    811

    Re: Migrating to VC++ 2008

    I had good experience with wxWidgets (free). There is also QT which offers paid and free.

    due to the speed considerations when processing large files.
    In a grand scheme of things this should be totally irrelevant what language you choose, so don't fall into trap thinking that C++ somehow magically will give all the performance you need. There is a lot of work to get it right and it's very easy to shoot yourself in the foot. For the file reading/writing most likely you will be bound by IO and not CPU.

    At the end choose tools and language which is right for the job and not the one you think it may or not give you some performance. Use three P's (Profile, Profile, Profile). Without that you just guessing.
    Last edited by STLDude; February 6th, 2009 at 06:55 PM.

Tags for this Thread

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured