I'm using a dll call to embed a webpage into one of my GUIs, but I don't want the compulsory vertical scrollbar. I have no experience using dlls - can anyone help (or show me how to find it out myself)?
The code:
$parent = GUICreate("arent",@DesktopWidth-20,690,8,5) $displayGUI = GUICreate("Display",480,272,@DesktopWidth - (25+480),200,$WS_POPUP,-1,$parent) $cweb = DllOpen(@ScriptDir & "\cwebpage.dll") DllCall($cweb, "long", "EmbedBrowserObject", "hWnd", $displayGUI)




