1
vote
Remoting server auto-discovery. Broadcast or not?
Seems like what you need is the Simple Service Discovery Protocol or SSDP. This is implemented in Window …
2
votes
How to check if there is any read/write activity for a specific harddrive with C#?
Look into the Windows Management Instrumentation (WMI) APIs which are supported in the .NET Framework via t …
1
vote
Reversing an RSS feed
If you do decide to roll your own C# application to do this, it is very straightforward in the current version of the .NET Framework.
Look for the …
1
vote
What is the easiest way using .net to check if events have been logged in the eventlog?
The System.Diagnostics.EventLog class really is the right way to do this.
Your main obj …
2
votes
What is the easiest way using .net to check if events have been logged in the eventlog?
Just to be a good Wiki citizen and strive for completion, there are other ways. I didn't suggest it earlier because it is complete overkill for something that is only going to be run in-house as p …
1
vote
What is the easiest way using .net to check if events have been logged in the eventlog?
That having been said, here's an answer that actually should be pretty straightforward even for your test application and is .NET Framework specific.
You need to open the EventLog before yo …
0
votes
Is there a way in .NET to have a method called automatically after another method has been invoked but before it is entered
If you need to do this on large scale (i.e. for every function in a program) and you don't want to hugely alter the source, you might look into using the …
1
vote
Identifying COM components in a .NET application
If you want to approach from the COM side, testing for COM objects in a DLL boils down to looking for an export named "DllGetClassObject". This is because an in-proc COM object is accessed by the …
1
vote
How do you deal with transport-level errors in SqlConnection?
I posted an answer on another question on another topic that might have some use here. Tha …
7
votes
Use OCX without registering it
Yes, this can be done. You must assume your application will only be deployed on Windows XP (or Windows Server 2003) or later, and then you can use what is called 'registration free COM' to make t …
1
vote
How to get a DIB implemented in a C++/COM library into a .NET client using that COM object
COM/OLE has a standard interface for representing graphical images called IPicture (and its scripting-frien …
0
votes
Reg-Free COM not working for me.
Your code sample appears to be the manifest for the COM object DLL. Do you have a manifest for the main program too? It needs one that lists the other object as a dependency.
In …
1
vote
Retrieving product information from an unmanaged executing application in C#/.NET
Walking the stack is not necessary to find out what process you are in. You simply make a single Win32 API call:
HMODULE hEXE = GetModuleHandle(NULL);
According to …
0
votes
WMI event when machine comes online
Subscribing to a shutdown event is theoretically possible. You could subscribe to get updates to the "System" Event Log. You'd be looking for an event from Source = "EventLog" and EventID = 6006. …
