I have the following code:
OracleConnection conn = new OracleConnection(connString);
OracleCommand command = new OracleCommand("select * from testtable", conn);
conn.Open();
OracleDependency.Port = 2010;
OracleDependency dependency = new OracleDependency(command);
command.AddRowid = true;
command.Notification.IsNotifiedOnce = false;
de...
Hi everyone,
This question can be little different than you expect. I am wondering how would I show notification modal popup on a user's browser window whenever they come online and whichever the website they connect, and suppose I am the internet provider of these users. They don't have to download anything to their computer and they c...
Hello,
I wrote an asp.net program that is designed to retrieve user data. The process, in which the user can log in to the system and input his data, has a Start Date and an End Date where the user is not allowed to log in before the start date or after the end date.
I want to send an email notification to the users to log in to the sy...
I am using the NSManagedObjectContextObjectsDidChangeNotification notfication in my app, I already now how to use it. As I have used the below code to add the observer …
- (void) awakeFromNib {
NSNotificationCenter *nc;
nc = [NSNotificationCenter defaultCenter];
[nc addObserver:self
selector:@selector(syncKVO:)
name:N...
I'm using http://phpcodeworks.com/pec/index for a nice User Generated Calendar but it doesn't have the function of sending an email to me when someone posts an event. I'd really like this feature and I really like this calendar.
It's all open source, so you'll be able to play with the code and look at it all.
...
I'm writing a Java application in BlackBerry JDE 4.5 that will start listening for some event at the start up. I want to display a small icon at the status bar.
I know its support in version 4.6.0 of the BlackBerry API set with ApplicationIcon, ApplicationIndicator and ApplicationIndicatorRegistry classes but which classes are there in...
I know that it's possible to add an observer for notifications with the com.apple.iTunes.playerInfo identifier, but this only seems to include events for music related events.
I also know I can find out when iTunes closes by adding an observer for NSWorkspaceDidTerminateApplicationNotification.
But is there an NSNotification for the st...
Hi,
I wrote the below script to read the feedback data. But, for some reasons, I am not receiving any data from the server. Can you kindly let me know whats wrong with the script. Also, if you have any working php script for feedback service, can you kindly share it...
regards,
DD.
$ctx = stream_context_create();
stream_context_set...
Hello,
there is a better place where an object can be registered to a Notification Center?
In other words, for a matter of performance, it's a good practice to register an object as Notification listener in the init(), awakeFromNib() or other event handler?
Thanks!
...
Hi
I need to know, is that possible to get a notification through email whenever my laptop is switched on or is connected to internet ?
An alternative is to get notification when set service 'Starts' on system boot.
Need C# code for this service.
Thanks & regards
Khushi
...
I have a simple app that executes $.jGrowl("loading");. Then the data is displayed $.jGrowl("blah blah blah data goes here"); after crunching data which can take 1 -5 seconds.
I've seen a post that mentions using the default.pool to only display one message at a time. The format I want is:
Show box 1
crunch data
close box 1
show b...
I am using the MediaPlayer framework to play a movie on the iPhone. There is a notification:-
myMovieFinishedCallback
to capture the end of play, but there doesn't appear to be any way to distinguish between the player coming to the end of the movie, and the user pressing 'Done' to terminate mid-play.
Is it possible to tell the cond...
Is there a way to intercept an SMS with BroadcastReceiver as for example here
but without showing any notifications to the user and immediately deleting the message that contains for example some keyword
EDIT:
What I need is to have some communication between android phones, one to one, and I thought that sending SMS messages would s...
I'm developing simple MVC app in Cocoa/Objective-C. I have a strange issue (or misunderstanding) with notifications and KVO.
I have AppController object in MainMenu.xib, hence I implement awakeFromNib method where I register for NSImageView changing its image property. I add self as an observer in the following way:
// options:3 equals...
I have a question with regards Google Code svn repositories.
Is there a way no be notified by email when someone on your team does a commit ?
I have been looking around, but I can't find the way to activate this option (if it exists).
Thanks for any help given.
...
Is there a way I can be notified of an application launch and termination in Android? I mean, more like subscribing to the Activity Manager and then determining which applications have been started and stopped...
...
I just dont understand, I have used notifications a trillon times, but today I cant seem to get notifications to send from a particular object.
This is in a view controller...
- (void)buttonPressed:(UIButton*)sender {
NSLog(@"buttonPressed");
[[NSNotificationCenter defaultCenter] postNotificationName:@"test" object:self];
}
and this i...
Hi
I have a problem with TFS and email notifications.
I can not receive any email from TFS server for work item tracking.
I correctly have configured web.config in ...\Web Services\Services in TFS server.
and I am useing power tools for alert.
but when I set an alert to notify me for an item,any event haven't happened yet.
I have checked...
Where Alert Management System roughly fits into this definition: "A system designed to screen events, build profiles associated with the events, and send alerts based upon the profiles and events"
So, the current setup is like this: There are multiple applications built in different technologies (Java, .Net, Perl, Python, VB) and they d...
I am looking for documentation/tutorial for Inotifier as I need to implement file notification logic in PHP.
...