Tagged Questions
0
votes
0answers
36 views
How do I monitor serial port data of another application using .NET?
We have an existing third party application which sends data on the serial port continuously to an external device. The application sends certain patterns of data which I need to look for, and if I ...
1
vote
0answers
73 views
Enable a display device and set resolution using Pinvoke
I am able to successfully change the resolution on the devices got through EnumDisplayDevices which are active but which devices are not active I can not set their resolution. Is there any way to ...
1
vote
1answer
158 views
Lock keyword calls Monitor.Enter(Object) or Enter(Object, Boolean)?
In Monitor documentation of .NET Framework 4.5 I found a sentence, which says that lock keyword uses Enter(Object, Boolean) method of Monitor:
The functionality provided by the Enter and Exit ...
1
vote
2answers
109 views
lock/Monitor with multiple threads
In .NET, suppose thread A locks an object. Meanwhile, thread B and thread C are blocked and wait for the object to be unlocked by thread A.
Now, thread A unlocked the object. which of the threads ...
2
votes
1answer
129 views
How to use a monitor which is not part of desktop (Windows 7)
I would like to use a monitor which is actually marked "disconnected" in the windows control panel under "Change display settings". (I do NOT mean a physically disconnected monitor.)
I know how to ...
0
votes
0answers
504 views
Monitor website traffic - sniffer
I am building small app in C# that needs to monitor traffic to some site, and count time user stays on that website.
I am aware that i need some kind of sniffer for that, but my question is, what ...
1
vote
1answer
116 views
Session destroyed and abandoned but performance monitor still shows session count
This is the case. I used Performance Monitor, add counter for Session Active for ASP.Net Apps v4.xx.xx I have a web-based application that uses cookieless session.
I opened the application with a ...
0
votes
0answers
55 views
Code error detection system [closed]
Please, guide me to any monitoring tool or system, which can alert me constantly of any ASP.NET/HTML errors on my websites.
1
vote
1answer
102 views
Monitor.Pulse loses signals?
I have this producer / consumer code :
MAIN :
static void Main()
{
using(PCQueue q = new PCQueue(2))
{
for(int i = 0; i < 10; i++)
{
int itemNumber = i; // ...
1
vote
0answers
407 views
How can I get the Resource Monitor values in .NET?
I need to get some of the values that are in the windows 7 resource monitor. In particular, the memory usage, cpu and bandwidth per process. I've looked into the PerformanceCounter class and I don't ...
2
votes
2answers
151 views
Why does Threading::Monitor::TryEnter succeed more than once?
I'm trying to secure some multi-threaded code and am in the process of adding unit tests to prove I've fixed corruption we'd previously been seeing.
In doing so though I've come across some ...
0
votes
1answer
86 views
Multithreading issue on collection
I have an issue with threading in my application.
As often with threading issue, it doesnt occur all the time.
Sometimes a collectionChanged exception occurs on this code :
SyncLock _padLock
...
0
votes
2answers
103 views
Visual Studio 2008 search box is hiding when using remote desktop on single monitor
I work on dual monitors at work. However, if I leave work with Visual Studio 2008 open and my last search had the search box (quick find or Ctrl+F box) on the right monitor, and log in from home on a ...
6
votes
3answers
307 views
How can .NET threads be waiting on a syncblk which is not owned by any thread?
I have a crash dump from my app showing a bunch of threads waiting on a syncblk, and the syncblk shows that it has no owning thread. How is that possible? I'm trying to reproduce the symptom in a ...
0
votes
2answers
407 views
How to receive handle of second Monitor / Desktop
I found the default desktop function
GetDesktopWindow function
What how to catch the result for a second monitor?
* EDIT SOLVED *
<Runtime.InteropServices.DllImport("user32.dll",
...
17
votes
2answers
2k views
How to turn off a monitor using VB.NET code
How do I turn off a monitor using VB.NET code? OK, actually I found the C# solution. But I need the VB.NET solution. I have tried an online C# to VB.NET converter, but the converter is complaining ...
2
votes
2answers
210 views
Monitor an application with .Net
The team here runs jobs on their PC, then has it launch an email, make an attachment, then send it. They can schedule this job. The problem they have is it pops a window asking if you want to send ...
4
votes
1answer
278 views
VS 2010 Performance Explorer
I'm starting to explore performance profiler in VS 2010 and having a hard time finding it useful. I realize this is most likely because I'm not familiar with the tool.
What I'm looking for is a way ...
4
votes
2answers
936 views
How do you find the owner of a lock (Monitor)?
Is there a way to discover what thread currently owns a lock?
Specifically I am looking for some code to print out the thread that is preventing a lock from being taken. I want to try to lock for a ...
11
votes
2answers
3k views
Lock (Monitor) internal implementation in .NET
For mastering of some technology you have to know how it's made at one abstraction level lower. In case of multithreading programming, it will be good to know about synchronization primitives.
Here is ...
17
votes
5answers
11k views
Monitor vs lock
When is it appropriate to use either the Monitor class or the lock keyword for thread safety in C#?
EDIT:
It seems from the answers so far that lock is short hand for a series of calls to the Monitor ...
1
vote
2answers
195 views
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 ...
7
votes
1answer
650 views
What important difference exists between Monitor.TryEnter(object) And Monitor.TryEnter(object, ref bool)?
It seems that these code snippets ought to behave identically:
1: Monitor.TryEnter(object)
if (Monitor.TryEnter(lockObject))
{
try
{
DoSomething();
}
finally
{
...
3
votes
3answers
6k views
Get PC's Monitor Information Using .NET / WMI
Is there anyway using WMI/.Net to grab monitor information such as Manufacturer, Serial Number, Monitor Size etc.?
Using a script is an option as well, or can I query the registry directly to get ...
3
votes
1answer
79 views
Exist on .NET any way to detect if a Monitor with VGA plug is still plugged-in?
That's all, I want to know if someone unplug the monitor and take several actions, any idea?
Thank you
18
votes
3answers
1k views
Does Monitor.Wait ensure that fields are re-read?
It is generally accepted (I believe!) that a lock will force any values from fields to be reloaded (essentially acting as a memory-barrier or fence - my terminology in this area gets a bit loose, I'm ...
2
votes
2answers
231 views
What object should a Monitor wait on?
When using Monitor.Wait(object obj) what should one use for the obj? In this article I'm reading on multithreading in .NET the author instantiates a new Object() to be used only as a monitor lock. Is ...
6
votes
1answer
1k views
When to use lock vs MemoryBarrier in .NET
In .NET the lock keyword is syntactic sugar around Monitor.Enter and Monitor.Exit, so you could say that this code
lock(locker)
{
// Do something
}
is the same as
Monitor.Enter(locker);
try
{
...
1
vote
4answers
501 views
Why does Monitor.Pulse need locked mutex? (.Net)
Monitor.Pulse and PulseAll requires that the lock it operates on is locked at the time of call. This requirement seems unnecessary and detrimental for performance. My first idea was that this results ...
1
vote
2answers
120 views
.Net Winform Apps with Portrait Monitor
I have noticed an undesirable behavior with .net winforms applications. I have a wide screen monitor rotated 90 degrees to the portrait orientation. When .net winforms applications display on it, the ...
0
votes
2answers
462 views
System.ArgumentNullException in System.Threading.Monitor.Enter
I've got a code like this:
Some of our clients receiving "System.ArgumentNullException in System.Threading.Monitor.Enter" in the following code block:
Public Class CheckStuff
Private Shared ...
4
votes
4answers
716 views
Is this is a bug in .net Monitor/lock statement or does MessageBox.Show behaves differently?
Imagine you have two buttons on the win form. What do you think should be the behavior when user presses the "button 1" with the below code?
Should it display all 5 message box in one go, or one by ...
5
votes
2answers
9k views
How do you monitor file access and changes on a file server by user name?
I was asked to find a way to monitor changes (modification, renaming, deletion, moving) of files in specific folders on the company's shared file server (simple windows shared directory). I wrote a ...
3
votes
2answers
4k views
.Net (C#) Detect if a television is connected
Anyone know how to detect if a television is currently connected to a PC in c#?
Cheers


