ravi kumar


{ City }
< Country > india
* Profession *
User No # 9088
Total Questions Posted # 1
Total Answers Posted # 17

Total Answers Posted for My Questions # 5
Total Views for My Questions # 41348

Users Marked my Answers as Correct # 77
Users Marked my Answers as Wrong # 12
Answers / { ravi kumar }

Question { Satyam, 13887 }

using descriptive programming how to close all opend browsers?


Answer

Set b=Description.Create
b("micclass").value="Browser"
Set obj=Desktop.ChildObjects(b)
For i=0 to obj.count-1
c=obj(i).GetROProperty("title")
msgbox " Closing.. " & c
obj(i).Close
Next

Is This Answer Correct ?    5 Yes 0 No

Question { Satyam, 16229 }

how open two urls in one browser?
plz urgent


Answer

Venkateswarlu

I dont think the answer given by you is correct. You are
opening two urls in two browsers(not single browser).
Also, there should be no space between Internet and
Explorer in the createobject function. It should read
createobject("InternetExplorer.Application").

Internet Explorer supports opening only one URL at a time
within the same browser; however, Mozilla Firefox supports
opening N number of URLs within the same browser using File-
>New Tab.

Let me know if you need any further information.

Is This Answer Correct ?    5 Yes 0 No



Prev    1    [2]