Where can I find the OpenNETCF.Diagnosstic.dll file??

A

augustesen

Hi

I am writing a program in C#.NET for the CF, and I want to execute an
..exe file to run another program. I have gather so much that I need to
use the "using OpenNetCF.Diagnostic" and the "Process.start" function.

The problem is that I can't find the Diagnostic dll file anywhere.

When I try to import the Diagnostic dll, using "using
OpenNETCF.something" I only get the options to include "windows",
"drawing" and Win32".

I am using OpenNetCF ver. 1.4.

Can anyone tell me where I can find the Diagnostic.dll file??

Regards
Søren Augustesen
 
P

Peter Foot [MVP]

There isn't a dll OpenNETCF.Diagnostics is a namespace within OpenNETCF.dll.
First you need to Go to the project menu, select Add Reference and pick
OpenNETCF.dll. Then you can use
using OpenNETCF.Diagnostics;
To use the namespace directly.

Peter

--
Peter Foot
Windows Embedded MVP
www.peterfoot.net | www.inthehand.com

Hi

I am writing a program in C#.NET for the CF, and I want to execute an
..exe file to run another program. I have gather so much that I need to
use the "using OpenNetCF.Diagnostic" and the "Process.start" function.

The problem is that I can't find the Diagnostic dll file anywhere.

When I try to import the Diagnostic dll, using "using
OpenNETCF.something" I only get the options to include "windows",
"drawing" and Win32".

I am using OpenNetCF ver. 1.4.

Can anyone tell me where I can find the Diagnostic.dll file??

Regards
Søren Augustesen
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top