Where to find the Microsoft.WindowsMobile.Forms library?

2

I'm developing an application on Smart Device for Windows Mobile 6 in Visual Studio 2008 C #.

In this application I need to use the functions of the object CameraCaptureDialog , because the main purpose of it is to capture photos through the camera of the collector. But, I can not find the Microsoft.WindowsMobile.Forms library, this path only finds Microsoft.WindowsMobile.DirectX .

I have the Windows Mobile 6 Professional SDK installed

    
asked by anonymous 20.01.2015 / 16:12

1 answer

2

Maybe your problem will only put a reference to assembly in the project. Visual Studio basics:

  • Open Solution Explorer.
  • Right click mouse click on your project and choose Add Reference...
  • On the .NET tab, look for the assembly you want to use and click on OK .

But if you want the location even try to see if there is anything in \Program Files\Windows Mobile 6 SDK\Managed Libraries\ or somewhere nearby. If you do not find it, use some form of search of the operating system or external software to locate it.

If you do not have the DLL you can download it to a specialized site as the DLLCheck or FixErrorKit (also has important information to help solve the real problem). But remember that the lack of it probably indicates that you have other problems.

    
20.01.2015 / 16:26