Welcome to MSDN Blogs Sign in | Join | Help

Some VS2005 and VS2008 Wizards Pop Up Script Error.

Visual C++ team has discovered that after installing the current release of Internet Explorer (Internet Explorer 8), some VC++ wizards do not function correctly.  The products affected are Visual Studio 2005 and Visual Studio 2008.  Following are the affected wizards:

-          Add Function

-          Add Variable

-          Smart Device – New Project Creation

-          Smart Device – Add Class

 

Invoking any of the above wizards in VS2005 or VS2008 will pop up a script error if IE8 is installed on the machine.  We have a workaround for those who have encountered this error.

 

Please follow the following steps:

-          Open regedit (on a 64-bit OS, open the 32-bit regedit)

 

-          Under “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet
Settings\Zones”, create a new key called 1000 (if it isn't already there)

 

-          Under 1000, create a DWORD entry with:

o   Name = 1207

o   Type = REG_DWORD

o   Data = 0x000000

 

For the workaround to work on VS2005 however, the VS2005 SP1 (and VS2005 SP1 Update for Windows Vista) has to be installed.

 

Following is a brief explanation of the problem and the workaround:

The VC++ Wizards Engine implements the IInternetSecurityManager interface.  In this implementation it allows or disallows specific actions under certain policies that Internet Explorer queries it about.  In IE8 a custom Security Manager now also gets queried about the URLACTION_ACTIVEX_OVERRIDE_REPURPOSEDETECTION policy which IE previously did not delegate to custom security managers when the engine wasn’t running in the iexplore.exe process.  The IE engine then fails this action because we don’t have a policy entry for it in the custom zone for VC++ Wizards. We are still investigating whether this change in IE8 is by design and will possibly be addressing it by a fix in either the Wizard or IE components depending on the outcome.

 

The above workaround lets the policy 1207 (URLACTION_ACTIVEX_OVERRIDE_REPURPOSEDETECTION) to be allowed in zone 1000 (custom zone of VC++ Wizards engine).  This allows the wizard code to work as intended.

 

We apologize for the inconvenience this issue may have caused you.

 

Thank you

Visual C++ Team

__________________________________________________________________________________________________________________________________________________________

 

 

The Internet Explorer team has released a security update to IE as mentioned in the IE blog:

http://blogs.msdn.com/ie/archive/2009/06/09/ie-june-09-security-update-now-available.aspx

 

This update also fixes the problem that caused some Visual Studio wizards to pop up a script error.  After applying this update, the earlier workaround in the registry is no longer required, and the wizards should work fine.

Published Saturday, March 28, 2009 11:28 AM by vcblog

Comments

Sunday, March 29, 2009 12:00 AM by Sheng Jiang

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

The web browser control basically switched from an unknown zone to another unknown zone after the change... Does this higher or lower the web browser control's security level of other settings?

Sunday, March 29, 2009 1:26 PM by David Wilkinson, Visual C++ MVP

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Since these screens apparently function at the whim of Internet Explorer, and (at least the first two) have abysmal performance , design and functionality, why not get rid of them and replace them with ordinary modal dialogs?

IMHO, the integration of IE with the OS was one of the worst mistakes MS ever made, but there is no need for Visual Studio to buy into it any more than is absolutely necessary.

Sunday, March 29, 2009 3:52 PM by Alex Feinman, DAD MVP

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Agree with David completely. And, if they are so commited to using javascript in those dialogs, they should have gone with some sort of signing and making these scripts trusted. How about trusting scripts that are resources in signed binaries? What happens now is hardly acceptable

Sunday, March 29, 2009 4:19 PM by Vyacheslav Lanovets

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Thanks for providing workaround. I was beginning to bother.

I feel it's OK that VS uses some kind of HTML-based dialogs. At least this allows for better code covergage of both products.

I don't really like servicing policy of Visual Studio meaning that VS RTM is in fact of "beta" quality, SP1 is like stable release, but there is no polished SP2. Instead you get buggy RTM of next Visual Studio.

Sunday, March 29, 2009 7:58 PM by Korea Evangelists

# Internet Explorer 8 설치 후에 Visual C++ 도구에서 발생하는 에러

Visual C++을 사용하는 개발자 분들이 Internet Explorer 8 설치 후에 겪는 문제에 대해 Visual C++ 팀이 블로그를 통해 우회 방법을 소개했습니다. 방법은

Monday, March 30, 2009 1:44 AM by Jalf

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

@David: Agreed. But it's probably unrealistic to expect them to rework the wizards outside a major product release. ;)

But HTML, Javascript and embedded IE is definitely a terrible way to implement the project wizards. (Not least because it makes it so needlessly awkward for us to create our own)

Monday, March 30, 2009 5:05 AM by FrankPr's World of Devices

# Visual Studio Smart Device Project error caused by IE8 RTW – and a workaround

If you have recently upgraded your Internet Explorer to the latest and greatest final version 8 , apart

Monday, March 30, 2009 11:04 AM by insider coding

# Internet Explorer 8 Breaks Visual Studio 2008, Update

Internet Explorer 8 Breaks Visual Studio 2008, Update

Monday, March 30, 2009 11:37 AM by Pocket.Info - Mobile News

# Visual Studio Smart Device Project error caused by IE8 RTW – and a workaround

If you have recently upgraded your Internet Explorer to the latest and greatest final version 8 , apart

Monday, March 30, 2009 12:13 PM by longtime c++/Mfc dev

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

I also agree completely with David Wilkinson.   Replace these IE-dependent dialogs with convention win32 dialogs.  In the meantime, Developers are running IE 8 in some new mystery security zone.

Is the VS team managing complexity, or just following/adding cool things?

Monday, March 30, 2009 1:06 PM by vcblog

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Just to emphasize, this workaround impacts no aspect, security or otherwise, of using IE8 as a browser.

VS already is a custom security host that directly controls all of the IE policy decisions while rendering the wizard code. In addition, VS uses a custom security zone (1000 decimal). It normally delegates no known relevant policy to the defaults for that security zone, but with IE8 the security host gets asked about the one policy detailed in the post. We use the custom security zone mechanism exactly to have a second layer of control when something happens like this.

Full details about the mechanisms are at: http://msdn.microsoft.com/en-us/library/ms537021%28VS.85%29.aspx

On the question as to why these are HTML dialogs? That was a decision we made for the VS 2002 product, and in retrospect, it wasn't the right decision. The decision now is whether it is worth the investment to replace these dialogs versus working on other features. So far we have felt we have higher value work we are doing.

Ronald Laeremans

Visual C++ Team

Monday, March 30, 2009 1:51 PM by Sheng Jiang

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

I know the new zone does not impact IE8, but it does have impact on all webbrowser-based applications like Visual Studio, Outlook/Outlook Express, FireFox's IETab extension, Maxthon, Windows Media Player, Real Player when the URL is not part of other zones.

I think change moved some URLs from an default zone to a customized 1000 zone for webbrowser-based applications. I am assuming the default zone is more secure since it is more strict. However the different between default setting of other security settings in the new 1000 zone and the default settings in the default zone is not yet known.  

I would suggest to copy registry entries from a restricted zone like untructed websites to the 1000 zone before relaxing the setting for the 1207 URL action.

Monday, March 30, 2009 2:18 PM by Ramesh Kumar

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

thax alot for FIX ! As IE 8 released. I got the issue and reported to Microsoft Connect.

https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=425677

Monday, March 30, 2009 3:05 PM by PJ Naughter Visual C++ MVP

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Wow, Yet again another reason to drop those damn HTML Dialogs and bring back the code for ClassWizard from Visual C++ v6 which the code should be still lying around in Microsoft someplace<ggg>. Is it really since VC 2002 those html dialogs was introduced. Oh well, I have long since given up on those dialogs and just added the message handlers / code manually myself. I've also got to say that performance of those dialogs are abysmal. Three or four seconds to show a simple add function/variable dialog is not acceptable. Surely someone can spent half a day to get this fixed / put back to how it worked in VC 6!. Lets hope this is addressed for VC 10.

Tuesday, March 31, 2009 12:26 AM by Joe

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

PJ, I filed bugs about badly formatted Wizard code and misaligned checkboxes in some dialogs. They told me they were too busy to deal with such trivialities. You think they're going to pay attention to this? That would require professional developers with pride in their work.

Tuesday, March 31, 2009 2:23 AM by Windows Embedded Blog

# IE8 – Visual Studio Smart Device project issues.

The Visual Studio team have blogged about an issue with Visual Studio 2005/2008 after installing IE8

Tuesday, March 31, 2009 9:00 PM by Jack

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

I have exactly this error, but posted workaround failed to work for me. What else I can do short of uninstalling IE8 ?

Tuesday, March 31, 2009 11:47 PM by rasharm [msft]

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Jack,

Could you let us know the following from your configuration:

- OS (XP/Vista/Server, 32/64 bit)

- Version of Visual Studio (2005, 2008 with or without SP1)

- Which wizard is failing for you?

Thanks

Visual C++ Team

Wednesday, April 01, 2009 7:33 AM by Pierre's Embedded and Mobile Blog

# Création de projets “Smart Device” et IE8

Certains d’entre vous ont surement déjà pu constater le soucis: après l’installation de la dernière version

Wednesday, April 01, 2009 8:13 AM by RB

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

I have to disagree with the view that "there are more important things to work on" - while perhaps there are, you're looking at what, maybe two person-weeks of work to code and another two person-weeks to test?

Wednesday, April 01, 2009 8:26 AM by SvenC

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

@RB: what do you expect to be done in two weeks? Change the html-wizards back to Win32-dialogs, WinForms or WPF?

I guess you underestimate the work.

Wednesday, April 01, 2009 8:32 AM by Dupuis Ambroise

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

I'm afraid I have the same issue as Jack: i tried the workaround which does not seem to solve anything.

-I use vista x64 (I made the changes in the x32 registry, although changes I make in HKCU are reflected in both x32 and x64 registry, verified twice)

-VS 2008 SP1

-I lauch the 'add variable' wizard directly from the classview, C++ environment)

Wednesday, April 01, 2009 12:38 PM by Jack

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Here is what I have installed in the following order:

32 bit Windows XP Professional (all the online upgrades up to date).

Visual C# Express 2008

Visual C++ Express 2008

IE8 upgrade from IE7

Visual Studio 2005 Standard.

All available online upgrades for VS2005 including SP1

Windows Mobile 6 SDK Rerfesh kit

The wizard that I tried and which fails is a Smart Device C++ Win32 new project.

I have made recommended here registry fix, but the wizard continue failing in the same manner. It comes back to the initial "new project" window with the message of script failure in the status area.

Jack

Wednesday, April 01, 2009 12:39 PM by Jack

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Here is what I have installed in the following order:

32 bit Windows XP Professional (all the online upgrades up to date).

Visual C# Express 2008

Visual C++ Express 2008

IE8 upgrade from IE7

Visual Studio 2005 Standard.

All available online upgrades for VS2005 including SP1

Windows Mobile 6 SDK Rerfesh kit

The wizard that I tried and which fails is a Smart Device C++ Win32 new project.

I have made recommended here registry fix, but the wizard continue failing in the same manner. It comes back to the initial "new project" window with the message of script failure in the status area.

Jack

Wednesday, April 01, 2009 12:59 PM by Amit Chopra

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Jack  Are  you observing that the issue of New Project in only in Smart Device Projects ? Does the patch address the other issues for you?

Amit

VSD Team

Wednesday, April 01, 2009 2:36 PM by Jack

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

I don't know about any other issues. I don't program Smart Devices that much. I don't see problems with PC programming, but I only tested briefly wizards to start project there. I haven't tested wizards later to generate anything else like class etc. In fact I don't even use VS2005 that much recently. Expresss editions 2008 cover most of my needs. I turned to my old VS2005 only to develop small application for Windows Mobile 6 a week ago and I wasn't succesfull to start a project yet due to this issue.

Jack

Wednesday, April 01, 2009 4:39 PM by Raman Sharma

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Hello Dupuis,

Would you mind opening a connect bug about this issue?  Also please post the bug # when you have done so.

Thank you

Visual C++ Team

Wednesday, April 01, 2009 6:32 PM by Kawazoe Masahiro

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

It seems to affect the MFC class wizards too. It happened to one of my friend and this fix solved the issue.

Thursday, April 02, 2009 4:43 AM by Dupuis Ambroise

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

ID 429314

on connect.microsoft.com

Thursday, April 02, 2009 4:51 AM by Microsoft Japan Forum Operators Blog

# 【日本語版】 Visual Studio 2005 および Visual Studio 2008 のウィザードでポップ アップ スクリプト エラーが出る

こんにちは! フォーラム オペレーターの服部清次です。 ここ最近、どういう訳か肌寒い日が続いていますが、皆さんはお元気ですか? 僕は、冬服をしまったばかりのタイミングでしたので、ちょっとビックリしています。

Thursday, April 02, 2009 5:24 AM by Dupuis Ambroise

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

OK I figured it out.

I typed '1027' in stead of '1207' in the registry.

Very sorry about this noob behaviour, I have my sys admin to thank for pointing that out.

Friday, April 03, 2009 12:05 AM by asurada's me2DAY

# ASURADA의 생각

Windows 7 때문에 어쩔 수 없이 사용하게 된 IE 8 때문에 여러모로 거슬린다. Visual C++ 2005 에서 Wizard 대화상자 Script Error, Visual C++ Team Blog에서 해결

Saturday, April 04, 2009 4:54 PM by e_pech

# MFC Class Wizard

Thanks! It happens with the MFC Class Wizard too. This workaround fixed my issue!

Saturday, April 04, 2009 5:50 PM by Vikram Ganesh H

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Yahooo !!! It worked... I didn't quite understand why we should make those changes in REGEDIT... But, it worked... & I can continue with my ATL COM project now... Thank VC++ team :)

-Vikram Ganesh H

Tuesday, April 07, 2009 1:44 PM by Munish

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

There is a similar issue on the C# (Windows Forms) side as well.

If you open a Form in the designer and if there are any errors usually you will see a list of error with exception messages etc. But with IE8 installed you get raw html in a text-box! I believe this patch helps there as well.

Wednesday, April 08, 2009 2:18 AM by andy.wu

# vs(2005 and 2008)中使用vc 创建智能设备项目失败的正确解决方案

最近在学习win32开发wm应用时,发现无法创建vc 的智能设备项目,在网上搜索了一下,确定是由于ie8和vs的冲突导致的。

Wednesday, April 08, 2009 8:35 AM by Jin Ming Xu

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Thanks very much!I was a test memeber for the version of visual studio 2008. In fact,I am dwelling in this error for a long time.However,I can't solve it.since IE8 installed, the problem occured.Until now,I know where the problem is! Fortunately,this little work  is really helpful for my coming burden in application design process! THANKS AGAIN! I am glad for your further help!

Thursday, April 09, 2009 8:39 AM by netvope

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Does it mean that the IE development team do NOT use VS? That's ironic.

Thursday, April 09, 2009 5:11 PM by Vijay

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

I have the same issue as Jack. This registry addition did not fix it for me.

I am running VS 2008 SP1 on Vista X64 and I made my changes by using regedt32 (which opens the same editor as regedit). This is blocking my work. Please help.

Thanks

Friday, April 10, 2009 1:35 AM by Tariq Mustafa

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

I opened a MSDN case just to find out about this problem. I had installed IE8 before installing VC8, so was not sure what was causing the problem. After I uninstalled IE8, I stopped getting the script error on Dialog box screen.

Another problem that I found out, and the MS support person who worked on this is aware of it, is when you convert the project from VC2003 to VC8 and then try to convert .sln to VC 2005, you get in linking issue where VC2005 project is looking for msvc90.lib (which is vc8 library).

MS seems to have screwed up big time with all these different devlopement tools (mind you they have a new one every 2 years) and they have done absolutely pathetic job on doing any compatibility testing.

Also MS did not refund my MSDN case for this indeed appear to be their issue.

Saturday, April 11, 2009 1:14 AM by anonym

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Uninstallation IE8 solves the problem. It's a shame for MS.

Monday, April 13, 2009 12:31 PM by Amit Chopra

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

For those of you still running into the issue of the Smart Device Native Project, I am setting up some machines to get a repro scenario to offer some alternate solution.

Amit Chopra

Tuesday, April 14, 2009 8:54 AM by Vicky Ronnen

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

With the fix applied VS2008 works. But...

When working on a MFC VC++ project, adding a static text to an dialog resource, I'm not able to change the caption! The caption property appears as an combobox, allowing true or false. It should be an textfield.

Deinstalling IE8 and reverting to IE7 solves this problem.

Platform: Windows Vista Ultimate (32) / VS2008 / All pathes applied.

Tuesday, April 14, 2009 9:05 AM by SvenC

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Hi Vicky,

just tried to repro your steps but I had no problems with VS2008 and static text controls.

Neither existing nor new ones show any problems to change the caption from the properties tool window.

Strange...

Tuesday, April 14, 2009 9:54 AM by Foxbat121

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

It seems that the VS help app has the same scripting error as well.

Tuesday, April 14, 2009 10:02 AM by SvenC

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

@foxbat121: I guess Microsoft needs to know which help pages do not work.

I use MSDN for VS 2008 SP1 and didn't stumble about one yet.

Wednesday, April 15, 2009 9:49 AM by Torsten Koehler

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

The registry change did not fix the problem for me:  I still have the JavaScript error for:

- Add Function

- Add Variable

Wizards

VS2008 SP1 (Version 9.0.30729.1 SP)

Windows XP SP3

IE Version 8.0.6001.18702

Friday, April 17, 2009 2:10 PM by Raman Sharma [msft]

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Hello Torsten Koehler,

Could you please verify that you have applied the registry fix correctly.  Someone else had earlier reported using incorrect number in the registry (the correct entry is 1207).

Also, could you please let us know if you are using a 32bit or a 64bit OS?

Thanks

Raman Sharma

Visual C++ Team

Friday, April 17, 2009 10:07 PM by Nic Wilson

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

The absolute pathetic speed of the Visual Studio Dialogs and their very unstable nature have kept me from upgrading from V6.0 for years now and I can tell of of dozens and dozens of programmers who still use V6.0 for this very reason.  I can make your dialogs break in many different ways that never happen under V6.0,  even something simple as moving an enum declaration around the class can cause them to fail.

The biggest single upgrade you could do to these dialogs is to revert them back to CDialog classes and return some stability and speed back to Visual Studio.

Nic Wilson

Saturday, April 18, 2009 12:17 PM by RickC

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

No joy here either...

VS2008 SP1

Vista 64

I had the problem with IE7, so I figured I'd update to IE8, and maybe the workaround would work -- but no go -- same error messages on:

Add Function

Add Variable

Monday, April 20, 2009 6:21 AM by W. de Hoog

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

I had the same error when adding properties or methods using the ATL wizard.

I had XP sp3, Visual Studio 2008 90 day trial and IE8. The registry fix did not help at all.

Uninstalling IE8 made the wizard working (it does not complain about the error anymore).

Monday, April 20, 2009 9:18 AM by RM

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

I applied the patch, restarted my computer, cleaned up my projects, but that's still doesn't work when I try to create a dialog in the class wizard (that doesn't work when I try to add a variable to a dialog neither).

XP Pro SP3, VS 2008 SP1, IE8

Monday, April 20, 2009 1:54 PM by longtime c++/Mfc dev

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Nic Wilson - I do concur.  Well said.

Wednesday, April 22, 2009 4:51 AM by R.J

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

The patch fixed the problem for me.

Thanks,

Wednesday, April 22, 2009 7:28 AM by NickB

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

The posters commenting on VC6 having the most robust tools are right. I have been working on a ported project from VC6 for a year and a half now, specifically so that I can mix managed and unmanaged code and get access to a bunch of C# that we have. But the wizards and dialogs - they often hang my build so most of the time I just don't bother. I don't know why this has gone backwards.... it is like young C# coders _need_ those wizards, and the old (and no doubt we are older) C++ codgers will just do it by hand. Frustrating.

Monday, April 27, 2009 9:45 AM by Raman Sharma [msft]

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Hello everyone,

I noticed that some people are seeing this problem despite the registry workaround.  I would request everyone seeing the problem to log bugs through Microsoft Connect with proper details:

- OS Version with SP details

- VS Version with SP details

- 32/64 bit

- Specific wizards that are failing

- Any registry setting which might prevent reading from HKCU (Current User) and therefore mandate reading the policies from HKLM (Local Machine)

Any such information will be useful. We will try to get back to you as soon as possible.

Thanks

Raman Sharma

Wednesday, April 29, 2009 6:14 AM by Richard.Tan

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

hello,

   I have tried the method you gived above, but it doesn't work

Wednesday, April 29, 2009 6:37 AM by Richard.Tan

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

create "Smart Device" project,

my ie version: ie7

And I intalled Microsoft Windows SDK for vista, does that matter?

Thursday, April 30, 2009 2:04 AM by toosten

# LOL!

Ich kann das nicht glauben!

Welche Entwicklungsumgebung wird bei MS eingesetzt?

VS2008 kann es nicht sein, sonst hätte man dieses Problem nicht in die Welt gesetzt!

Euer Registry-Tip hatte nix gebracht, deshalb habe ich eine Systemwiederherstellung durchgeführt, mit dem Erfolg das der IE7 nicht mehr nutzbar ist. ( Eine Menüleiste fehlt, die mit dem EXTRA-Button, ...)

Schon lustig das diese bei MS-Produkten nicht funktioniert!

Naja, VS2008 funzt wieder und auf den IE kann ich verzichten!

Thursday, April 30, 2009 2:51 AM by SvenC

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

@toosten: did you try to understand the problem?

IE8 has tighter security settings. The VS devs could not know that at the time they developed the wizards. But nevertheless they have been forsighted enough to have a security zone of their own which they can configure without lowering the general IE security.

The registry setting worked flawlessly for me and when I look at the few comments it seems to work for most people.

Are you sure you entered the settings correctly?

If yes, why not answer Raman's questions: which OS, CPU architecture and which wizard.

Thursday, April 30, 2009 7:34 PM by Rob Parsons MVP-IE

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Friday, May 01, 2009 3:35 PM by toosten

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

@SvenC

Ja ich habe das Problem verstanden, aber am 30.4. hat dieser Workaround nicht funktioniert!

Ich habe soeben noch einmal den IE8 installiert und diesen RegKey gesetzt, jetzt funktioniert VS2008!

Merkwürdig!

Friday, May 01, 2009 4:52 PM by SvenC

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Wird wohl das typische Fehler-40-Problem gewesen sein ;-) Das wird auch mit Ausrufezeichen statt Punkten als Satzende nicht besser.

Saturday, May 02, 2009 5:48 PM by jbierling

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Just to add my voice, these dialogs need to be replaced.  It makes no sense to use IE for this sort of functionality and in practice is slow and prone to breaking.

Sunday, May 03, 2009 9:52 PM by AlexR

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Replacing those dialogs should not take any longer than a week. I mean you are JUST changing the UI not the functionality.

If MS programmers take longer than that, may you should reduce the number of managers and meetings.

We don't want all those new features you maybe working on anyway if the essential tools FAIL.

We use VS6 because quite frankly anything afterwards just blew junks, at least for C++.

Friday, May 08, 2009 8:34 AM by hs

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Work around not working.

OS: Windows XP SP3 32bit

VS: VS 2008 SP1 (9.0.30729.1SP)

Not working when add new member variables from dialog for VC++ MFC applications.

Friday, May 08, 2009 12:27 PM by vcblog

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Hello HS,

Would you mind opening a connect bug about this issue?  

Thank you

Visual C++ Team

Saturday, May 09, 2009 2:25 PM by Robin Colclough

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

ANother Microsoft bungle!  I can´t believe that the operational stability of Microsoft´s key and sole development platform is dependent on the web browser, and that changes to Explorer break Visual Studio! I also agree that the performance of these script driven dialogs is abismal, some 5000-times slower to execute that normal dialogs on my laptop! How can we trust in Microsoft when they make such bad choices!

Tuesday, May 12, 2009 12:59 PM by HenryB

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Here:

- Windows XP SP3

- Microsoft Visual C++ 2008 (not SP1ed)

- IE 8 v8.0.6001.18702

the workaround fixed the issue. Thanks!

(BTW I agree with the above saying to return back to CDialog)

Wednesday, May 13, 2009 4:07 PM by blah

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Let's be frank. The Microsoft IDE team does not care an ounce about C++ developers and wishes we'd all just go extinct already. The buggy museum pieces that pass off as resource editors today are another retardation since Visual C++ 6.0.

Thursday, May 14, 2009 12:04 PM by hoon

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Two amazing things:

1. The solution fixed the problem.

2. The search engine found this page.

Thanks

Sunday, May 17, 2009 1:59 AM by Bob

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

YES.

the workaround fixed the issue.

But i must reboot.

Tuesday, May 19, 2009 12:42 PM by Marius Bancila

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Thanks for the workaround. It fixed my problems with VS 2008 SP1 (on Win XP) (after restarting VS only ;) ).

# Самые вкусные консервы их тех, которые я когда-либо пробовал

Хотя эта статья адресована ИТ-администраторам, но и просто технически грамотные пользователи, возможно,

Wednesday, May 20, 2009 2:49 PM by voidProgrammer

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

Deeply disappointing error. This is a shame in that this type of easy should have been caught by regression test that is supposed to run on a daily basis. VS team doesn't have a QA team or QA team's lack of understanding of the core technology?

Wednesday, May 20, 2009 6:17 PM by SvenC

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

I can only repeat myself:

@voidProgrammer: did you try to understand the problem?

IE8 has tighter security settings. The VS devs could not know that at the time they developed the wizards. But nevertheless they have been forsighted enough to have a security zone of their own which they can configure without lowering the general IE security.

As soon as they recognized the problem they posted how to adjust the security zone. No need to fix any code, everything works as designed.

Thursday, May 21, 2009 9:22 AM by blah

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

"On the question as to why these are HTML dialogs? That was a decision we made for the VS 2002 product, and in retrospect, it wasn't the right decision. The decision now is whether it is worth the investment to replace these dialogs versus working on other features. So far we have felt we have higher value work we are doing."

This is the height of hypocrisy and stupidity. Where was this line of thinking when you guys decided to replace perfectly functional dialogs with these HTML based abominations? Anyone with a shred of common sense at the time would have realized that it's clunky at best if you have to go through all the trouble of creating a custom browser security zone. Microsoft fails the Duh Test far too often.

Wednesday, May 27, 2009 5:00 AM by Magnus

# re: Some VS2005 and VS2008 Wizards Pop Up Script Error.

This fix worked for me until installing SP2 for Windows Vista. Now the error is back when selecting platform.

Any ideas how to fix it this time?

Thursday, June 11, 2009 1:36 AM by patch-info.de

# 969897 (MS09-019) - Kumulatives Sicherheitsupdate für IE8 unter Windows XP - 09.06.09

Kurzbeschreibung: Kumulatives Sicherheitsupdate, das aufgetretene Sicherheitslücken im Windows Internet Explorer 8 schließen soll. Siehe Security Bulletin MS09-019 (englisch bzw. deutsch) Aktuell: ja direkter Download oder über Windows Update Be

Saturday, June 13, 2009 12:22 PM by patch-info.de

# 944036 - Optional: Internet Explorer 8 für Windows XP - 19.03.09

Kurzbeschreibung: Finalversion des Windows Internet Explorer 8 (kurz: IE8) für Windows XP. Der IE8 ist die Internet Explorer-Version von Microsoft, welche bislang Web-Standards in der Voreinstellung am besten unterstützt. Dessen Installation ist somit

New Comments to this post are disabled
 
Page view tracker