monitor

Oracle Query Monitor

Hi, i want know querys of third party software executed in my oracle server, anybody know how i can do that?i will use one time, can be trial software or script anything..thx ...

Windows: How to change monitor's backlight brightness

Ever since I've been using an external monitor with my laptop, when I need to change the backlight brightness I have to press the monitor's buttons to navigate through its menu and adjust the brightness. That is really a pain. It's too many button presses! When I was using my laptop's integrated monitor, that was as simple as presing the...

c# Launch an application and send it to second monitor?

Hello, is there any way to start/lunch a program through Process in another screen? some one asked that here but there was no answer note: it is not a form in my app, I'm asking about running an external program in another screen! cheers ...

C# Identfiy screens number?

How to have a function in C# to run the window identification, which will show the numbers 1, 2, ... on the screen same way as we do it by right click on the screen (properties) then we go to Screen Resolution and show the numbers by clicking on Identify. Can we do that in C#? ...

Idea: SVN monitor for pending commits?

Hi, I want to ask if somebody heard about a SVN monitoring tool for this case: in the past we used MS SourceSafe with checkout & lock mechanism to avoid merges. One benefit of this was the "release manager" can see in the repo whitch files are still not checked in. SVN is a great tool, but sometimes I miss this information, even to avoi...

does Monitor.Wait Needs synchronization?

Hi, I have developed a generic producer-consumer queue which pulses by Monitor in the following way: the enqueue : public void EnqueueTask(T task) { _workerQueue.Enqueue(task); Monitor.Pulse(_locker); } the dequeue: private T Dequeue() { T dequeueItem; if (_workerQueue.Count > 0) ...

What is the best monitor for coding?

I'm looking for a wide-screen monitor that can be easily moved up and down, with good colors and resolution. Can anyone recommend a specific model or brand that helps coding? I'm temporarily using a ViewSonic HDMI 1080p, are there better solutions out there that cost less than $350? ...

Monitor Synchronization: Implementing multiple condition variables

I am implementing monitor synchronization. I was wondering how does implementing multiple condition variables works. So a condition variable has method wait() which puts it on the wait queue for a specific lock tied to this condition variable. So if I have multiple condition variables, do each wait call create its own separate wait queue...

Monitor selections in any application

I want to monitor all text selections made in any application by the user. Is that possible? I would prefer a solution in .net, but vanilla C++ is OK. If not, can I monitor all text copy operations (CTRL+C) from a .net application? similar question: http://stackoverflow.com/questions/653003/in-c-is-there-a-way-to-consistently-be-able-...

How can I force display detection in Windows?

I often boot my Windows 7 PC with the attached KVM switch focused on another computer. When I switch to the booted PC, the display resolution is wrong (and the second attached monitor is not detected). I can correct this by right-clicking the desktop, choosing Screen Resolution and clicking Detect. This makes Windows detect attached dis...

What is the typical way of going about monitor resolution when making a full screen GUI?

I'm making a program that will have a widget that has to be fixed in size, is there an industry standard for smallest resolution width? What are some common way of dealing with this problem? ...

How to detect TCP Client disconnect in Ruby

In order to check the client servers is alive at anytime, I use the long tcp connecting to deal with this. So is there any method to detect the long tcp connect from client servers? it's good to do with Ruby ...

Delphi7: Get attached monitor properties

Hi all How do I get my monitor's properties? I'm mostly interested in the manufacturer name and model type. I also don't want to get it from the registry. (Some PC's like my work PC has restricted access to the property key so I'd rather want to scan a system bus or something other than the reg.) Any ideas? Thanks SoulBlade ...

How to continuously monitor rhythmbox for track change using python

Hi, I want to monitor the change of track in Rhythmbox using python. I want to continuously check for change of track and execute a set of functions if the track is changed. I have written a piece of code which gets hold of the Rhythmbox interfaces from the dbus and gets the current track details. But this program has to be run manually...

HTTP monitoring for PHP file_get_contents

Is there any tools like httpwatch/fiddler available to monitor the headers send by PHP API like file_get_contents ...

Setting up my webpages on a widescreen monitor may have caused me to create inaccurate div positions

Hi, I recently put together a website exclusively using a computer with a wide screen monitor. Later, When opening the same pages online using a computer with a smaller sized monitor, I suddenly noticed that all the div positions are completely out of place. My question is how to use the widescreen monitor to continue to develop my webpa...

What happens to a Thread that fails to acquire a lock?

What happens to a Thread that fails to acquire a lock (non-spin)? It goes to the BLOCKED state. How does it gets executed again? Lock lck = new ReentrantLock(); lck.lock() try { } finally { lck.unlock(); } ...

Monitor ZIP File Extraction Python

I need to unzip a .ZIP archive. I already know how to unzip it, but it is a huge file and takes some time to extract. How would I print the percentage complete for the extraction? I would like something like this: Extracting File 1% Complete 2% Complete etc, etc ...

Screen area vs Work area rectangle

Have a look at this API documentation page... Can anyone explain to me the difference between the rcMonitor and rcWork components of the MONITORINFO structure? Although I'm happy with the idea that a window has areas you can't work with (like the caption for instance), I don't really see how this applies to monitors... All contribution...