maintell 发表于 2009-10-15 15:01:19

如何使用多个Shell.Explorer.2进行多重登陆

我在一个程序里面建立多个Shell.Explorer.2,也就是打开多个同一地址的网页.
但是只能登陆一个帐号

$tab1=GUICtrlCreateTabitem ("Login1")
$oIE1 = ObjCreate("Shell.Explorer.2")
$GUIActiveX= GUICtrlCreateObj( $oIE1,3, 23 , 740 , 700 )
$oIE1.navigate($LoginUrl)

$tab2=GUICtrlCreateTabitem ("Login2")
$oIE2 = ObjCreate("Shell.Explorer.2")
$GUIActiveX= GUICtrlCreateObj( $oIE2,3, 23 , 740 , 700 )
$oIE2.navigate($LoginUrl)

就这样,不能同时录多个账号
页: [1]
查看完整版本: 如何使用多个Shell.Explorer.2进行多重登陆