.NET Framework - visual studio crash when choose itens

Asked By netvisao
09-Feb-10 01:30 PM
Hi

When i choose itens (Tools - choose toolbox itens) the visual studio crash.

PowerCommads for Visutal Studio 2008 is not installed.



Someone can help me?

TC
Choose
(1)
PM
(1)
PowerCommads
(1)
Visutal
(1)
HelpI
(1)
Mike
(1)
Itens
(1)
  Family Tree Mike replied to netvisao
09-Feb-10 05:22 PM
If it _always_ happens with _any_ tool, then I would reinstall visual
studio.

--
Mike
  Henrique replied to Family Tree Mike
09-Feb-10 06:46 PM
Thanks for the help

I get an error when I try to bring up the Choose Toolbox Items (right click
in the Toolbox panel > Choose Items...) and then the  .Net Framework
Components tab.  The error is: 'An error occurred loading this property
page.'

TC
help
product: 00040409-78E1-11D2-B60F-006097C998E7Parameter name: productCode Setup log is below: 7:14:24 PM Monday, June 02, 2008: - -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 7:14:24 PM Monday, June 02, 2008: Info: Begin Setup session 7:14:24 PM Monday, June 02, 2008: Info: Setup Version: 2.0.133.0 7:14:59 PM Monday, June 02, 2008: Info: Loaded manifest WebManifest. 7:14:59 PM Monday, June 02, 2008: Info: Loaded manifest XWebWWManifest. 7:15:00 PM Monday, June 02, 2008: Info: Loaded manifest SuiteCommonManifest. 7:15:00 PM Monday, June 02, 2008: Info: Loaded manifest OfficeMUIManifest. 7:15:00 PM Monday, June 02, 2008: Info: Loaded manifest OfficeMUISetManifest. 7:15:00 PM Monday, June 02
the install log. Here it is: Thanks in advance for ANY help!! 3:51:43 PM Monday, May 26, 2008: - -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 3:51:43 PM Monday, May 26, 2008: Info: Begin Setup session 3:51:43 PM Monday, May 26, 2008: Info: Setup Version: 2.0.133.0 3:52:24 PM Monday, May 26, 2008: Info: Loaded manifest WebManifest. 3:52:24 PM Monday, May 26, 2008: Info: Loaded manifest XWebWWManifest. 3:52:24 PM Monday, May 26, 2008: Info: Loaded manifest SuiteCommonManifest. 3:52:24 PM Monday, May 26, 2008: Info: Loaded manifest OfficeMUIManifest. 3:52:24 PM Monday, May 26, 2008: Info: Loaded manifest OfficeMUISetManifest. 3:52:24 PM Monday, May 26
Complicated regular expression .NET Framework I have an equation like follows: choose(condition, choose(condition, x, y), z) which can have any number of choose statements embeded. The parts x, y and z can themselves contain commas but these will be in brackets e.g choose(condition choose(condition, data(x, 2), data(y, 2) + data(y, 3)), z) For each of the two main arguments to the choose statement I want to replace the item with some other additional text e.g. choose(condition, choose(condition, func(data(x, 2)), func(data(y, 2) + data(y, 3))), func(z)) Does