You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Local$hDestination_DC= _WinAPI_CreateCompatibleDC($hPictureDC) ; Creates a memory device context compatible with the specified device
1420
+
Local$hDestination_Bitmap= _WinAPI_CreateCompatibleBitmap($hPictureDC, $aPos[2], $aPos[3]) ; Creates a bitmap compatible with the specified device context
1421
+
Local$hDestination_Sv= _WinAPI_SelectObject($hDestination_DC, $hDestination_Bitmap) ; Selects an object into the specified device context
1422
+
1423
+
LocalConst$PW_RENDERFULLCONTENT=0x2; this will go to where it should =)
1424
+
_WinAPI_PrintWindow($hWindow_WebView2, $hDestination_DC, $PW_RENDERFULLCONTENT) ; print window to destination Window DC ; https://www.autoitscript.com/forum/topic/153782-help-filedocumentation-issues-discussion-only/page/40/#findComment-1549380
0 commit comments