Can't find sources of specific microsoft sdk sample - RegView, it demonstrates namespace extension developing.
Does anybody has it?
Or, there is also nice sample called Window View, from "Visual C++ Shell Programming". Maybe someone can share this one?
I've got an answer on msdn forum,
here is ftp link with RegView sources:
http://cdserv.wbut.ac.in/81-203-2165-0/msdn_vcb/samples/vc98/sdk/winui/shell/regview/
Related
I want to build C++ GUI programs using Codeblocks+Wxwidgets+cmake. I tried to configure Wxwidgets with codeblocks IDE following the instructions given in the wxWidgets Discussion Forum as well as other Youtube tutorials.
I followed the youtube tutorials below.
Youtube tutorial
But, when 'DEBUG' and 'RELEASE' are being built, it keeps showing some kind of errors. As a result, the building was failed.
Please help me to solve this or suggest another easy way to do C++ GUI projects.
Thank you!
There is an excellent document explaining how to set up C::B with wxWidgets. It can be found here.
It is not about CMake-thingy, but it is written with enough details to help people understand how to setup the IDE.
So I suggest to delete C::B, delete wxWidgets, delete all projects you setup before and start all over, following the instructions from PB to a T.
If you hit a wall or something will not work - please comeback with the exact explanation.
I'm fresh man in software engineering and I've been working on an MFC Application on Windows 7.
I have a problem with a DLL. When I run this application, this error sometimes occurs:
There was a problem starting C:\Windows\system32\WerConCpl.dll
What is this DLL and what is this DLL used for?
Any answer or clue will be appreciated. Thank you!
A quick Google with that DLL filename leads me to here. The accepted answer states:
werconcpl.dll will access Internet because it is looking for solutions to submitted crash reports.
This file is a Microsoft Windows system file.
I just don't seem to be able to get OpenCV to work properly. Here's what I want to accomplish:
Use CodeBlocks (which I installed using codeblocks-10.05mingw-setup.exe) with OpenCV (installer: OpenCV-2.4.2.exe) on my Windows x64.
I've tried a lot of different configurations which will only bother you if I posted them all, so I hope you don't mind if I just ask the simple question: how do I get this to work?
I think I'm missing the smallest detail right now, so a detailed description of how to get started would be welcome.
If the OpenCV installer did the job, you should have by now OpenCV libraries and headers already installed in your system.
I would then go ahead and try to compile a hello world basic code, like the one you can get from here. If you would like to program using an IDE, like VisualC++ in Windows, you can follow this guide that will help you setting up the environment.
OpenCV team just introduced their new web site. There you can find Introduction to OpenCV section with installation instructions, including detailed instructions for Windows. Don't forget to cleanup your system before installation to avoid problems with mixing different install options. If you still can't get it working with CodeBlocks, follow Dan's advice and try compiling from command line.
When you are done with installation, go on and read there great new tutorials!
If I try to look at the variable directly, I see a ? sign. If I create a watch calling the is_initialized function, I get the following error:
CXX0033: Error: error in OMF type information
I didn't find much info about this error related to Boost using Google.
Anybody else experienced this? It's a hassle using OutputDebugString everywhere and rebuilding...
EDIT: Using Visual Studio 2010 SP1 with all hotfixes in Windows XP SP3 idem, and Boost 1.49.0
UPDATE: This issue comes and goes, it doesn't happen consistently; Debugger Visualizers are a great solution, I've adopted them as my brand new tool
You can use DebuggerVisualizers.
Use DebuggerVisualizers to make this transition:
Before
After
P.S. I tried to add these images to clarify the accepted answer but my edit was rejected.
Try this: for a variable boost::optional<Category> category, create a watch on: category.get()
Could anybody point be in the direction of some examples with creating/editing/removing IIS Web/FTP sites and their respective virtual directories. As MSDN doesn't seem to give many C++ based examples.
Thanks
The VCDeploy tool from the ATL Server source code is one example I know of: http://atlserver.codeplex.com/SourceControl/changeset/view/3691#.
This is the command line tool that implements the Web Deployment build step in Visual C++ 2005.