gsb Posted March 7, 2007 Posted March 7, 2007 So I have a "background" GUI and I want this "foreground" GUI as transparent and borderless. Fine. But when I add the IE object I get a thin 3-D border around the control. Is there a way to remove it? Global $foreground=GUICreate("", 800, 700, 0, 5,$WS_POPUP,BitOr($WS_EX_LAYERED,$WS_EX_MDICHILD),$Background) GUICtrlCreatePic(@ScriptDir & "\spacer.gif",0,0, 0,0); oddly required $ieObj = _IECreateEmbedded() $GUIObj = GUICtrlCreateObj($ieObj, 0, 0, 800, 700) _IENavigate($ieObj, "http://www.google.com") GUISetState(@SW_SHOW,$foreground) Thanks, gsb "Did you ever stop to think? ...and forget to restart!"
STEPHANVS Posted January 11, 2010 Posted January 11, 2010 (edited) I'm too searching for a more decent solution than$GUIObj = GUICtrlCreateObj($ieObj, -1, -1, 802, 702)Anyone?Well... just found it $oIE.document.body.style.border = 0 Edited January 11, 2010 by STEPHANVS
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now