Not working in IE8 + Vista

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

Not working in IE8 + Vista
 
putra n9




Posts: 18
Joined: 2010-11-23
Hi,

I'm beginner in Add-in Express for Internet Explorer, i create a add-on (ADX IE Add-on + Visual Basic). With the same code it running well on IE8+XP but in IE8+Vista doesn't work.

TQ.
Posted 23 Nov, 2010 23:10:57 Top
Sergey Grischenko


Add-in Express team


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

What exactly the code doesn't work?
Posted 24 Nov, 2010 04:05:39 Top
putra n9




Posts: 18
Joined: 2010-11-23
Hi Sergey,

I write a code like this :

Dim fs As New FileStream(path + "file.txt", FileMode.Create, FileAccess.Write)
Dim s As New StreamWriter(fs)
s.Write("This concept is interesting.")
s.Close()

With the same code i try on IE8+Vista, it doesn't work.
Posted 24 Nov, 2010 21:06:44 Top
Sergey Grischenko


Add-in Express team


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

The code will not work in IE7-IE8 running under Vista or Windows 7 if Protected Mode is turned on. Please read the following article devoted to this subject:
http://www.codeproject.com/KB/vista-security/PMSurvivalGuide.aspx
Posted 25 Nov, 2010 06:04:56 Top