Create new Tabs in IE

Add-in Express™ Support Service
That's what is more important than anything else

Create new Tabs in IE
IE TABS 
Jonathan Chambers




Posts: 2
Joined: 2010-06-07
Hi,
Could someone point me in the right direction to open new IE tabs and navigate to a page with add in express with vb.net please?

Thanks,
Jonathan
Posted 07 Jun, 2010 10:26:14 Top
Eugene Astafiev


Guest


Hi Jonathan,

Please have a look at the Advanced Search sample add-in for IE. You can download its sources http://www.add-in-express.com/downloads/mapi-store-events.php. You will find the required code in the mentioned sample project.
Posted 07 Jun, 2010 10:45:31 Top
Jonathan Chambers




Posts: 2
Joined: 2010-06-07
Hi Eugene,
I've downloaded and viewed the source but can't seem to find the place where to create a new IE tab, can you help?

Thanks,
Jonathan
Posted 11 Jun, 2010 04:37:06 Top
Andrei Smolin


Add-in Express team


Posts: 18821
Joined: 2006-05-11
Hi Jonathan,

Please try the following code:

                Dim one As Object = 2048
                Dim two As Object = "_self"
                Dim three As Object = Nothing
                Dim four As Object = Nothing
                IEApp.Navigate("//www.add-in-express.com", one, two, three, four)



Andrei Smolin
Add-in Express Team Leader
Posted 11 Jun, 2010 09:55:52 Top
Sergey Grischenko


Add-in Express team


Posts: 7233
Joined: 2004-07-05
Hi Jonathan.

A new IE tab is created when you navigate to a web page or a blank page.
Posted 11 Jun, 2010 09:56:25 Top