A
Alien
how can i get a bitmap's handle from the cf v1.0?
Sergey Bogdanov said: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?
The question is if i have a bitmap like bitmap pic = new bitmap(100,100)
how can i get this bitmap's handle?
cheers~~
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?