SalazarCheats 0 Posted January 28, 2007 i need to know how i can make 3 tabs all with diffent embedded websites inside them can any help? Ok im 14 with a spelling age of a 9 year old... that explanes all my spelling mistakes Share this post Link to post Share on other sites
BALA 0 Posted January 28, 2007 So you want the Tabs to display a webpage? [font="Comic Sans MS"]BA-LA[/font]http://ba-la.110mb.comJoin my community, CLICK HEREAlternative links to my site:http://www.ba-la.tkhttp://www.ba-la.co.nrContact me if you would like to help with some of my projects: joeythepirate@gmail.com Share this post Link to post Share on other sites
SalazarCheats 0 Posted January 29, 2007 yes i do is it possible Ok im 14 with a spelling age of a 9 year old... that explanes all my spelling mistakes Share this post Link to post Share on other sites
BigDod 518 Posted January 30, 2007 (edited) Yes it is possible. #include <GUIConstants.au3> #include <IE.au3> $Form1 = GUICreate("AForm1", 633, 447, 193, 115) $Tab1 = GUICtrlCreateTab(16, 8, 593, 417) GUICtrlCreateTabItem("1") $oIE = _IECreateEmbedded() $GUIActiveX = GUICtrlCreateObj($oIE, 40, 50, 550, 360) _IENavigate($oIE, "http://www.autoitscript.com") GUICtrlCreateTabItem("2") $oIE = _IECreateEmbedded() $GUIActiveX = GUICtrlCreateObj($oIE, 40, 50, 550, 360) _IENavigate($oIE, "http://www.google.com") GUICtrlCreateTabItem("3") $oIE = _IECreateEmbedded() $GUIActiveX = GUICtrlCreateObj($oIE, 40, 50, 550, 360) _IENavigate($oIE, "http://yahoo.com") GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Edited January 30, 2007 by BigDod Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother Share this post Link to post Share on other sites