Creating Windows Aero Wizards [closed] - c++

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am new to Visual C++. I am trying to experiment the creation of a Windows Aero Wizard. I found this reference on Microsoft website but I cannot understand how to create it. Could anybody give me a good reference or tutorial please?

This is overly broad question. Look for code with CreatePropertySheetPage API usage. Windows SDK contains a few samples, e.g. under "\Samples\winui\shell\appplatform\aerowizards"; Aero Wizards Sample (Windows) on MSDN.

Related

Handling Apple events from console app on Mac [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Please give me some hints about how to work and, more practically, handle Apple events from raw console application written in C++ on Mac. I know that there is huge infrastructure for this purpose in Cocoa but as I think this is only a wrapper.
May be it's impossible?
There is C API for it:
http://developer.apple.com/legacy/mac/library/#documentation/Carbon/Reference/Open_Scripti_Architecture/Reference/reference.html
and
http://developer.apple.com/legacy/mac/library/#documentation/Carbon/Reference/Apple_Event_Manager/Reference/reference.html
Overview:
http://developer.apple.com/legacy/mac/library/#documentation/AppleScript/Conceptual/AppleEvents/intro_aepg/intro_aepg.html
But as you can see that Apple considers this as legacy nowadays, so for a new project, using the Objective-C APIs might be the better choice.

Microsoft AMP for C++ with Dr Dobbs example? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am trying to figure out the complete code as explained at:
http://www.drdobbs.com/windows/microsofts-c-amp-unveiled/231600761?pgno=2
I am trying to find out how to generate the complete code examples with of Simple C++ AMP Version? How do I define the grid object? Which header do I need to use direct3d? It seems my Visual Studio 2012 flags these as undefined.
Thanks
I've never seen restrict(direct3d) before. I suspect it's supposed to be restrict(amp).
You'll also need to #include <amp.h>

Excel event listener in C++ [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to write an event listener in C++ for MS Excel (2007/2010), and I am looking for resources that can get me started, preferably a working code sample.
Microsoft Support has a HOWTO called "Handle Events for Excel by Using Visual C++ .NET". The example code there is fairly long, so I don't want to paste any of it here. Ask new questions if you find any of it confusing.

IDE for C++ developers [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
What is the most popular IDE for C++? And library for windows?
What is about QT?
The best IDE for c++ is visual studio(if you are working in windows), but if you want to use Qt, QtCreator is also nice. but i can't get what do you mean "A library for windows"!

is there any references about mfc ui redraw... mechanism? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
please give me some reference about the ui rendering mechanism
thanks~
MFC is merely a thin wrapper around the Win32 API. It provides an object oriented foundation that simplifies the use of the C style Win32 API, but it doesn't have too much brains built into it. If you want to understand the way MFC creates UI, go a bit further and take a look at GDI, which is the API used for UI stuff in Windows.