8
votes
8answers
596 views
Delegating a task in and getting notified when it completes (in C#)
Conceptually, I would like to accomplish the following but have had trouble understand how to code it properly in C#:
SomeMethod { // Member of AClass{}
DoSomething;
Start WorkerMethod() …
6
votes
5answers
184 views
Non-standard UI in C#
Hey,
I'm still learning C#, and I know don't know about WinForms yet but I will very soon. However I want to know how I would create an application which shows a customized notifier, like Growl on a …
5
votes
5answers
1k views
Is FindFirstChangeNotification the best API to use for file system change notification on windows?
I'm new to windows programming and I'm trying to get notified of all changes to the file system (similar to the information that FileMon from SysInternals displays, but via an API). Is a …
4
votes
4answers
184 views
What’s the best way to notify a non-web application about a change on a web page?
Let's say I have two applications which have to work together to a certain extent.
A web application (PHP, Ruby on Rails, ...)
A desktop application (Java, C++, ...)
The desktop application has to …
4
votes
6answers
295 views
How can I know the address of owner object in C++?
Hi,
I would like to create in C++ a Notifier class that I will use in other objects to notify various holders when the object gets destroyed.
template <class Owner>
class …
4
votes
5answers
467 views
Notification Library for Windows
I'm developing a small tray-icon application for Windows and I need to display non-intrusive visual notifications similar to those that appear when you receive a new message in MSN Messenger or any …
3
votes
5answers
177 views
ASP.NET MVC + SQL Server Application: Best Way to Send Out Event-Driven E-mail Notifications
I have an ASP.NET MVC application that utilizes NHiberante and SQL Server 2008 on the backend. There are requirements for sending out both event-driven notifications on a daily/weekly basis AND …
3
votes
3answers
140 views
Respond to only the first WM_KEYDOWN notification?
How can a Win32 application respond to only the first WM_KEYDOWN notification? The MSDN docs claim bit 30 "Specifies the previous key state. The value is 1 if the key is down before the message is …
3
votes
2answers
653 views
Keep iPhone keyboard-aligned toolbar visible through first responder change?
I'm using the method described by Josh in this question to add a toolbar to the top of the iPhone's keyboard. Basically, the idea is:
Add the view controller as an observer for the notifications …
3
votes
6answers
136 views
Progress notifications from HTTP/REST service
I'm working on a web application that submits tasks to a master/worker system that farms out the tasks to any of a series of worker instances. The work queue master runs as a separate process (on a …
3
votes
1answer
569 views
Cocoa Notification Example
Can someone please show me an example of a Cocoa Obj-C object, with a custom notification, how to fire it, subscribe to it, and handle it?
3
votes
6answers
309 views
How do I notify a process of an SQLite database change done in a different process?
Let's say I have two or more processes dealing with an SQLite database - a "player" process and many "editor" processes.
The "player" process reads the database and updates a view - in my case it …
3
votes
8answers
1k views
Silverlight and push notifications
I am creating a Silverlight 2 user interface to a remote instrument. There are two concurrent users at different sites interacting with the instrument (operator at the instrument and remote scientist) …
3
votes
4answers
547 views
“Speech bubble” notifications
I'm trying to get a notification to pop up something like these bubbles in an MFC application:
I'm currently making an interface mockup in C# to show some stakeholders, so it would be nice to …
3
votes
4answers
678 views
Notification API for windows
Linux has libnotify and OS X has growl. Is there some kind of Notification API for Windows too?
It should be accessible via .Net languages.
Clarification:
Yes I'm looking for an way to send …
