You can get a bitmap handle by loading an image file through this P/Invoke
(works for PPC family).
[DllImport("aygshell.dll", EntryPoint="#75")]
private static extern IntPtr SHLoadImageFile(string imageFilePath);
--
Sergey Bogdanov [.NET CF MVP, MCSD]
http://www.sergeybogdanov.com
how can i get a bitmap's handle from the cf v1.0?