Open a File Browser? [closed] - c++

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am making a 3D renderer using Win32 and GDI and currently working on importing .obj files.
What is the best way to display a file explorer where the user can choose an .obj file and close the dialog. ( and store the file name/location in a string for me to use) ?

You can use good old GetOpenFileName function: http://msdn.microsoft.com/en-us/library/windows/desktop/ms646927%28v=vs.85%29.aspx. For Vista and later you can use Common Item Dialog: http://msdn.microsoft.com/en-us/library/windows/desktop/bb776913%28v=vs.85%29.aspx

Related

Library to read ms-office Doc(doc, docx, etc.), pdf, hwp, ... on C++ [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I need library to read text from files such as doc, docx, xls, xlsx, hwp, pdf, etc. on c++.
I think there is a library to support this function but i have googled it and found none.
I'll keep searching but can somebody introduce any library to me?

Are there any popular open source projects written in C++? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I've read the source code of a few popular open source projects like apache, nginx...
All of them are written in C, is there one written in C++?
It should be run-able program, not framework...
KDE
and up, to 30 characters and beyond.
Mozilla Firefox is written (mainly) in C++.
You may want to check out this list : http://www2.research.att.com/~bs/applications.html

Qt and dynamic library sample code [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
i wanted to create a software which conforms to the following structure:
A GUI window , and many Qt dynamic libraries , which exports function interface.
So two things to clear out , how to make a plugin for Qt apps , and how to load them , load the exported function by them.
Many thanks !
How to Create Qt Plugins

what is the best program to view process memory map? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I need to view image/heap/malloc()/stack and other resources used by process. I knew about Memory Validator but it lacks some of features.
Checkout the tools from Sys Internals.
http://technet.microsoft.com/en-us/sysinternals/bb545027
Namely RamMap and VMMap.
If you can state what features you're looking for, then it would help to provide a better solution.
Some options:
Process explorer?
Windbg?
Visual Studio?
What exactly are you looking to view?

Windows XP Style Button [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
How can I get a Windows XP-style button in my MFC dialog?
You'll have to add a manifest file to your project.
Check out this article: Using Windows XP Styles in your MFC/WIN32 Applications