Excel event listener in C++ [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 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.

Related

Creating Windows Aero Wizards [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 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.

How to create a simple GStreamer Source Plugin? [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 was reading the GStreamer plugin guide and it had a chapter on plugin source but it was one paragraph long. Does anyone have any tips/tutorials on how to create a basic source plugin?
I was thinking about reading a source plugin in gstreamer but they are too complex. Any simple ones I could look at that does the basics?

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>

control windows services in C, 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 need to monitor the status and also controlling the status of the services in windows with C or C++ programming. I have done it in C# .... but I need help how to do it in C or C++ ??
The following list of WINAPI functions will be useful:
OpenSCManager()
OpenService()
ControlService()
CloseServiceHandle()
There are many other service related functions which are listed on each of these pages.

opening file stored on internet via 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 10 years ago.
need a small program to learn basics on how to open a file stored on net for reading via c++.
One relatively easy way is to use libcurl: http://curl.haxx.se/