Dear All,
Below code I found in a post which bit older. I really appreciate if any
of you could help me out to convert into VB.NET.
Declare the API function.
---------------------------
[System.Runtime.InteropServices.DllImportAttribute("gdi32.dll")]
private static extern bool BitBlt(
IntPtr hdcDest,
int nXDest,
int nYDest,
int nWidth,
int nHeight,
IntPtr hdcSrc,
int nXSrc,
int nYSrc,
System.Int32 dwRop)
Herfried K. Wagner [MVP] - 06 Apr 2005 11:08 GMT
"Ahmed Jewahar" <ahmed.jewahar@dhl.com> schrieb:
> Below code I found in a post which bit older. I really appreciate if any
> of you could help me out to convert into VB.NET.
[quoted text clipped - 4 lines]
> [System.Runtime.InteropServices.DllImportAttribute("gdi32.dll")]
> private static extern bool BitBlt(
\\\
Private Declare Function BitBlt Lib "Gdi32.dll" ( _
ByVal hdcDest As IntPtr, _
ByVal nXDest As Int32, _
ByVal nYDest As Int32, _
ByVal nWidth As Int32, _
ByVal nHeight As Int32, _
ByVal hdcSrc As IntPtr, _
ByVal nXSrc As Int32, _
ByVal nYSrc As Int32, _
ByVal dwRop As Int32, _
) As Boolean
///

Signature
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
Paul - 06 Apr 2005 23:35 GMT
http://www.pinvoke.net/
> Dear All,
>
[quoted text clipped - 17 lines]
>
> *** Sent via Developersdex http://www.developersdex.com ***