Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
58 views

C# Creating SystemEvents that can be seen by OTHER Applications

I am trying to come up with a way to raise a public event that can be seen by more than one application. The first thing that comes to mind is SystemEvents. Is there a way to "define" a new ...
2
votes
1answer
427 views

In .NET, can I detect system focus events (C#)?

Is it possible to determine when window focus changes at the system level? I'm writing a time-tracking application, and I'd like to be able to listen for application switching (so that I can begin ...
1
vote
2answers
65 views

When should i unregister system events to prevent memoryleaks?

I am using systemevents like this: SystemEvents.SessionEnding += SystemEventsSessionEnding; to detect when user shutsdown or log off, but i have read that i need to unregister this ...
1
vote
1answer
67 views

SystemEvents and resuming from sleep

Imagine I was creating an application that measured how long a certain user is logged in to a computer (the actual application I'm writing is different, but that doesn't matter). I need to track when ...
1
vote
2answers
2k views

How to capture Logoff event using a windows service in C#?

I am trying to create a service that will log when users logon and logoff. I have no problem with capturing the logon, but for some reason i cannot catch the logoff event. this is the code i have ...
1
vote
5answers
3k views

Getting notified when the datetime changes in c#

Recently I was trying to make a calendar application that will display the current year-month-date to the user. The problem is, if the user is gonna keep my application running even for the next day, ...
1
vote
1answer
444 views

What does it mean to “register system events… with Oracle Internet Directory”?

This is from the Stream - AQ docs. You can register system events, user events, and notifications on queues with Oracle Internet Directory. System events are database startup, database shutdown, ...
0
votes
0answers
10 views

Titanium: register to system events

I'm looking for a way to create custom events on Titanium. inorder to do that I would need to register to a global var array every time the window opens (not a problem) however, I would have to ...
0
votes
1answer
280 views

Do Adobe Air Apps on Android receive system events?

I'm considering using Adobe Air to write an application for the android marketplace. I was wondering if anyone could tell me what (if any) the limitations are with regard to getting / handling system ...
0
votes
0answers
125 views

Debugging SessionSwitchEventHandler

I have a small C# service which registers a SessionSwitchEventHandler at start up. It's used to record Session Events, such as login, logout, locking and ulocking a workstation. It's registered using ...
0
votes
1answer
232 views

Monitoring Apples “System Events” with Cocoa

I was wondering if there was a way to write a Cocoa app that listened for OS system events such as an application launching, a window switches, etc, etc. My thought was to watch [NSNotficationCenter ...