MSDN and TechNet Search Feedback ForumFor bugs and suggestions about Search features of MSDN and TechNet websites. For bug reports, please include the URL of search results page where the problem occurs.© 2009 Microsoft Corporation. All rights reserved.Thu, 26 Nov 2009 00:04:21 Zef4dcf6f-d08c-4d1c-b752-10f1d1e9807dhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/04c73bc3-94d2-41c1-ae62-3d16dadd5b33http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/04c73bc3-94d2-41c1-ae62-3d16dadd5b33Kurt Simhttp://social.expression.microsoft.com/Profile/en-US/?user=Kurt%20SimPCI Memory ControllerCan someone help answer my concern? I installed Windows 7 and it went on automatically to update by itself. After that when I restarted, a dialog box appeared that the update for PCI memory controller has failed and couldnot find the device.<br/>Anyone come across this? Is this a concern or just ignore it? THanks alot for answer. KurtThu, 29 Oct 2009 15:24:06 Z2009-11-26T00:04:21Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/686f9ac8-bd45-40e9-9fe7-b396ac203bc5http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/686f9ac8-bd45-40e9-9fe7-b396ac203bc5WoodrowShttp://social.expression.microsoft.com/Profile/en-US/?user=WoodrowSInstallation question<p>I am running Windows 7 and Office 2007 on my laptop.  I would like to download the Office 2010 beta and become familiar with it as I am an Access developer.  However, I have seen cautions about downloading it and installing it on a primary machine.  I would like to test the beta but I do not have a 2nd machine for testing purposes.  Is there a way using my Windows 7 machine to test the beta?  I don't want to have to go through a re-install and if it is extraordinarily complicated I had better wait for the full release, but just thought I would ask.</p><hr class="sig">WoodySWed, 25 Nov 2009 21:42:49 Z2009-11-25T21:42:49Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/0604134c-b25a-4305-b5bf-af77ed051c67http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/0604134c-b25a-4305-b5bf-af77ed051c67RobertW19http://social.expression.microsoft.com/Profile/en-US/?user=RobertW19When I tried to launch Windows Media Center for the first time I received the following message. "Windows cannot open this program because it has been prevented by a software restriction policy. When I tried to launch Windows Media Center for the first time in windows 7 I received the following message.  &quot;Windows cannot open this program because it has been prevented by a software restriction policy.Wed, 25 Nov 2009 03:56:40 Z2009-11-25T03:56:41Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/34fd99ba-4c9f-4220-98f6-345ba7f57219http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/34fd99ba-4c9f-4220-98f6-345ba7f57219Spirit Duhttp://social.expression.microsoft.com/Profile/en-US/?user=Spirit%20DuWrite CodedUITest by handIs there any tutorial to teach writing coded UI tests without a builder? The action recorder is good, but the generated codes are too difficult to read anyway and too complicated to me. I tried to launch a AUT (Calculator) by calling ApplicationUndeTest.Launch() method, and then trying to find a button to click. The calculator is actually launched, but the Mouse.Click() alway throw a null reference exception. Here is my codes: <div><br/></div> <div> <pre lang="x-c#">using System; using System.Text; using System.Collections.Generic; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using Microsoft.VisualStudio.TestTools.UITesting; using Microsoft.VisualStudio.TestTools.UITest.Extension; namespace TestProject1 { /// &lt;summary&gt; /// Summary description for GUITest /// &lt;/summary&gt; [CodedUITest] public class GUITest { private static string CALCULATOR_PATH = &quot;C:\\Windows\\System32\\calc.exe&quot;; private static string CALCULATOR_ALTERNATE_PATH = &quot;%SystemRoot%\\System32\\calc.exe&quot;; private ApplicationUnderTest _application; private UITestControl _window; private TestContext _context; /// &lt;summary&gt; /// Gets or sets the test context which provides information about and functionality for the current test run. /// &lt;/summary&gt; public TestContext TestContext { get { return _context; } set { _context = value; } } /// &lt;summary&gt; /// Launch Calculator before each test method /// &lt;/summary&gt; [TestInitialize()] public void MyTestInitialize() { _application = ApplicationUnderTest.Launch(CALCULATOR_PATH, CALCULATOR_ALTERNATE_PATH); _window = new UITestControl(_application); _window.TechnologyName = &quot;MSAA&quot;; _window.SearchConfigurations.Add(SearchConfiguration.VisibleOnly); _window.SearchProperties.Add(WinProperties.Window.ControlType, &quot;Window&quot;); _window.SearchProperties[WinProperties.Window.Name] = &quot;小算盤&quot;; } // Use TestCleanup to run code after each test has run [TestCleanup()] public void MyTestCleanup() { if (_application != null) { _application.Close(); } Playback.Cleanup(); } [TestMethod] public void TestMethod1() { ClickButtonByText(_window, &quot;1&quot;); ClickButtonByText(_window, &quot;2&quot;); ClickButtonByText(_window, &quot;3&quot;); ClickButtonByText(_window, &quot;+&quot;); ClickButtonByText(_window, &quot;3&quot;); ClickButtonByText(_window, &quot;2&quot;); ClickButtonByText(_window, &quot;1&quot;); ClickButtonByText(_window, &quot;=&quot;); } private void ClickButtonByText(UITestControl window, string text) { UITestControl control = new UITestControl(window); control.TechnologyName = &quot;MSAA&quot;; control.SearchConfigurations.Add(SearchConfiguration.VisibleOnly); control.SearchProperties.Add(WinProperties.Button.ControlType, &quot;Button&quot;); control.SearchProperties[WinProperties.Button.Name] = text; System.Console.WriteLine(control); Mouse.Click(control, control.GetClickablePoint()); } } } </pre> <br/></div> <div><br/> <div>The exception stack trace:</div> <div><br/></div> <div> <pre lang="x-c#">Microsoft.VisualStudio.TestTools.UITesting.UITestControl.GetPropertyValue(String propertyName) Microsoft.VisualStudio.TestTools.UITesting.UITestControl.GetProperty(String propertyName) Microsoft.VisualStudio.TestTools.UITesting.UITestControl.GetPropertyInternal[T](String propertyName) Microsoft.VisualStudio.TestTools.UITesting.UITestControl.get_BoundingRectangle() Microsoft.VisualStudio.TestTools.UITesting.UITestControl.CaptureImage() Microsoft.VisualStudio.TestTools.UITesting.Playback.CaptureScreenShot(UITestControl control) Microsoft.VisualStudio.TestTools.UITesting.Playback.GetUITestControlString(UITestControl control) Microsoft.VisualStudio.TestTools.UITesting.Playback.AddUITestControlDescriptionToException(SystemException exception, IPlaybackContext context) Microsoft.VisualStudio.TestTools.UITesting.Playback.MapAndThrowException(SystemException exception, IPlaybackContext context) Microsoft.VisualStudio.TestTools.UITesting.Playback.MapAndThrowException(SystemException exception, String actionName, UITestControl uiControl) Microsoft.VisualStudio.TestTools.UITesting.Playback.MapAndThrowException(SystemException exception, String actionName, Object parameterValue, UITestControl uiControl) Microsoft.VisualStudio.TestTools.UITesting.UITestControl.GetPropertyValue(String propertyName) Microsoft.VisualStudio.TestTools.UITesting.UITestControl.GetProperty(String propertyName) Microsoft.VisualStudio.TestTools.UITesting.UITestControl.GetPropertyInternal[T](String propertyName) Microsoft.VisualStudio.TestTools.UITesting.UITestControl.get_BoundingRectangle() Microsoft.VisualStudio.TestTools.UITesting.UITestControl.GetClickablePoint() TestProject1.GUITest.ClickButtonByText(UITestControl window, String text) in d:\documents\visual studio 2010\Projects\TestProject1\TestProject1\GUITest.cs: line 76 TestProject1.GUITest.TestMethod1() in d:\documents\visual studio 2010\Projects\TestProject1\TestProject1\GUITest.cs: line 59 </pre> <br/></div> </div>Sat, 07 Nov 2009 13:38:05 Z2009-11-25T01:45:37Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/0f36ce15-2713-4250-b3cf-1e2f11489dddhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/0f36ce15-2713-4250-b3cf-1e2f11489dddgurlygirlhttp://social.expression.microsoft.com/Profile/en-US/?user=gurlygirlintall/openhow do i how do I install/open Microsoft Expression Web 3?<br/>Tue, 24 Nov 2009 21:38:47 Z2009-11-24T21:38:47Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/1cdf547e-f4a4-45e5-b0d5-b882fe0b6923http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/1cdf547e-f4a4-45e5-b0d5-b882fe0b6923ArzJoderzhttp://social.expression.microsoft.com/Profile/en-US/?user=ArzJoderzWindows Vista 2009 UpdateI am running Windows Vista, I believe S.P.2. Windows Update continually fails to install all recommended (&amp; other) updates. It says &quot;install failed, error (Code 80070490)&quot;.<br/>I am also having problems with Win. Defender failing to initialize on startup (I believe this may have to do with Mcafee clashing with Defender).<br/>Mcafee virus scan not running &amp; when i try to run it manually it says &quot;scan failed to start, result=2147467259&quot;<br/>I am having problems with hardware, such as; DVD/CD drive not working/recognized (yet if i change boot settings to boot DVD/CD drive 1st it will read the drive), various USB devices not working or having ti reinstall drivers to use them, sound has stopped working twice &amp; the keyboard as well on a number of occasions.<br/>Sometimes my computer crashes or restarts. I.E. stops working occasionally, sometimes it recovers.<br/>It got to the stage where i had to restore the system to an earlier backup point just to get Windows or anything to start. Since then the computer runs but i still have all these problems.<br/>I have checked driver updates which seem to be up to date. <br/>I am reluctant to do a complete system restore, as i cannot use DVD/CD drive to back up personal files (mainly photos &amp; music) or a USB flash drive as it doesn't seem to be recognized (even though it says 'driver is installed &amp; device ready to use' in the taskbar at bottom right of the screen.<br/>Is there a solution to at least get my DVD/CD drive working firstly, so i can backup files. Then deal with the rest of the issues?     Tue, 24 Nov 2009 19:58:04 Z2009-11-24T19:58:07Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/7938ea8e-c24e-4411-aeea-d297dbde081chttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/7938ea8e-c24e-4411-aeea-d297dbde081ccory jayhttp://social.expression.microsoft.com/Profile/en-US/?user=cory%20jaycant install windows updates my screen frezzes i just got a new hard drive put in and when i try to update windows i say 91 updates and when i click install updates it frezes up the computer and have to restart it when i check the auto up dates it says instalation faild with this error code 80246008 help thanks coryTue, 24 Nov 2009 18:34:14 Z2009-11-24T18:34:14Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/d53bb9e2-df4f-4472-8f74-c3030ebd3731http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/d53bb9e2-df4f-4472-8f74-c3030ebd3731SSShirleyhttp://social.expression.microsoft.com/Profile/en-US/?user=SSShirleyReoffer issue with reoffer issue for KB931125Some of my endusers are having an issue with the update relative to  KB931125 (Root Certificate Update) being re-offered over and over though WSUS as if in a loop.<br/>Is anyone else having this problem?Tue, 24 Nov 2009 13:55:44 Z2009-11-24T17:24:06Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/74a056c5-9acf-4d5a-a547-c9112d9a632ehttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/74a056c5-9acf-4d5a-a547-c9112d9a632eheelfliphttp://social.expression.microsoft.com/Profile/en-US/?user=heelflipHow do I move autocorrect entries between XP Word 2002 and Vista Word 2007?I have been able to cut and paste the MSO1033.acl file between computers so I have some of them, but how do I transfer the normal.dot document over to word 2007?  I tried saving the normal.dot document from Word 2002 as normal.dotm, but it doesn't work.  I'm a medical transcriptist so I really need those entries.   Thanks in advance for any help.Tue, 24 Nov 2009 17:05:16 Z2009-11-24T17:05:17Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/876af437-ad78-469b-8378-fec7719dc27ahttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/876af437-ad78-469b-8378-fec7719dc27aFabian Bermeohttp://social.expression.microsoft.com/Profile/en-US/?user=Fabian%20BermeoCryptographicException: El sistema no puede encontrar el archivo especificado.Hola necesito ayuda, estoy desarrollando una firma digital localmente funciona muy bien hago el barrido de mi llave publica o privada. Al momento de publicarla en el ISS7  me da un error en esta línea &quot;RSA.FromXmlString(String xml String)&quot;  ---&gt;&gt;&gt;&gt;&gt; CryptographicException: El sistema no puede encontrar el archivo especificado. Ley algunos post y solo me dicen que:   &quot;el proceso de trabajo de ASP.NET de identidad no tiene permiso de lectura a la máquina de almacenamiento de claves. <span><span class=google-src-text style="text-align:left;direction:ltr">This is a bit complicated, and I can't say exactly why but it appears you can create keys in the machine key store, but not read them.</span> Esto es un poco complicado, y no puedo decir exactamente por qué, pero parece que usted puede crear las claves en el almacén de claves, pero no leerlos&quot; FUENTE: <a href="http://translate.google.com.ec/translate?hl=es&amp;sl=en&amp;u=http://forums.asp.net/t/1183636.aspx&amp;ei=eQcKS9rjH8zIlAexm7iFBA&amp;sa=X&amp;oi=translate&amp;ct=result&amp;resnum=9&amp;ved=0CCsQ7gEwCA&amp;prev=/search?q%3DProblema%2Bcon%2BSystem.Security.Cryptography%26hl%3Des">http://translate.google.com.ec/translate?hl=es&amp;sl=en&amp;u=http://forums.asp.net/t/1183636.aspx&amp;ei=eQcKS9rjH8zIlAexm7iFBA&amp;sa=X&amp;oi=translate&amp;ct=result&amp;resnum=9&amp;ved=0CCsQ7gEwCA&amp;prev=/search%3Fq%3DProblema%2Bcon%2BSystem.Security.Cryptography%26hl%3Des</a><br/><br/><br/>No se si debo cambiar algo en programación o en los accesos a las carpetas</span>Mon, 23 Nov 2009 04:30:49 Z2009-11-23T04:30:50Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/4f61489e-1da4-4898-8031-43a21478fac8http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/4f61489e-1da4-4898-8031-43a21478fac8Billnieitguyhttp://social.expression.microsoft.com/Profile/en-US/?user=BillnieitguyWindows update problemI just got a used Compaq, S4020WM, from a friend who had not used it for a couple of years. I put AVG 9.0 on first thing than tried to update from the Mirosoft Update site. When I clicked on the Express botton the green bar would be going still if I didn't stop it. When I stopped it the computer froze up, I could go to start and shut it down or restart it. I tried to donw load Internet Explore 7 and it would go as far as downloading updatews foe IE7 and the green bar would just go &amp; go, but I couldn't close it down I had to shut the computer off. I has able to download and install XP3. I have tried to download updates and IE7 and still no go, same as before. Can you help Me Thanks, Bill Sun, 22 Nov 2009 22:38:39 Z2009-11-22T22:38:39Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/9062d492-46d7-45a3-ba27-1451a452ec95http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/9062d492-46d7-45a3-ba27-1451a452ec95Albannachhttp://social.expression.microsoft.com/Profile/en-US/?user=AlbannachHow do I identify a Windows Registry "keyword" for an application?I have been using the McAfee Internet Security Suite provided by my ISP (AOL).  Recently, I purchased, downloaded and installed a registry cleaner program named RegGenie.  I ran a scan using RegGenie on my PC (Windows XP Home).  The next time I tried to open the Security Center of the Internet Security Suite, it failed to open and I recived an error message stating that a .dll file was missing.  Apparently, the RegGenie scan had removed the .dll file required to open the Security Center.<br/><br/>In RegGenie Help, I found a procedure &quot;How to enter program exclusions (Ignore Keys)&quot;.  The first step in the procedure has me click on &quot;Settings&quot; on the main menu of RegGenie and then click on the &quot;Ignore Keys&quot; tab.  The second step requires me to &quot;Enter registry key matches for RegGenie to ignore&quot;.  I'm not sure what registry key matches are required so that the McAfee Internet Security Center will be ignored on a scan by RegGenie.<br/><br/>There is a list of options for a scan by RegGenie and one of the options is &quot;Shared .dll files&quot;.  I could uncheck that option prior to a registry scan.  However, I don't think that the .dll file used to open the Security Center is a &quot;shared&quot; file.Sun, 22 Nov 2009 18:51:16 Z2009-11-22T18:51:17Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/53b03bb9-03c7-4f15-9cef-dbe90c6e4ffehttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/53b03bb9-03c7-4f15-9cef-dbe90c6e4ffehillsidelethttp://social.expression.microsoft.com/Profile/en-US/?user=hillsideletmicrosoft dr watsonmy promblem is my c drive says it is full but don't have much on deleted excess mus. &amp;pic so searched hidden folders and found dr watson had 20.7 g stored on it how do i dump this file it won't open says to big for notpad to open please helpSun, 22 Nov 2009 18:11:51 Z2009-11-22T18:11:52Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/612812f2-beac-43b8-ab1c-5b0f05c61a90http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/612812f2-beac-43b8-ab1c-5b0f05c61a90TNGrannyhttp://social.expression.microsoft.com/Profile/en-US/?user=TNGrannyCannot install Bernina software on Windows 7New computer bought just for use with Bernina 430. CD for Art Design V1 and EConPC V2.1 hangs on install.   Wants the old Sync from Windows XP.  Is this an issue for Bernina?  I've downloaded updates from them and from Windows.  Any ideasFri, 13 Nov 2009 04:25:01 Z2009-11-22T17:17:55Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/b1b379ed-49e4-4aef-8ffe-c23e2cf32497http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/b1b379ed-49e4-4aef-8ffe-c23e2cf32497Lindariehttp://social.expression.microsoft.com/Profile/en-US/?user=LindarieKeyboard and Mouse stop working after Windows Vista boots upWe have a Dell Inspiron 530 with Windows Vista Home Premium 32 BIT. The system boots up but when it gets to the sign-on screen the keyboard and mouse will not work. I have tried unplugging the mouse and keyboard and plugging back in after start up. Also reinstalling Windows Vista with the disc, resetting back to an earlier date. Nothing is working. Any help will be greatly appreciated.Sat, 21 Nov 2009 19:33:52 Z2009-11-21T19:33:52Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/a80c53ff-81d7-40d9-890a-08ece02c2a49http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/a80c53ff-81d7-40d9-890a-08ece02c2a49ronzerohttp://social.expression.microsoft.com/Profile/en-US/?user=ronzeroCannot install Office 2010I tried to install and failed. The message said the module could not install. It was a long name but I wrote down the beginning:<br/> <br/> 2ed1bbgb-819f-49a6-b6a0 <br/> <br/> I often have identification problems with 1 and I and 0 and o.Sat, 21 Nov 2009 01:59:06 Z2009-11-21T01:59:06Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/73160c86-7f81-4603-8c1c-1321e67cbf04http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/73160c86-7f81-4603-8c1c-1321e67cbf04Ptfitzyhttp://social.expression.microsoft.com/Profile/en-US/?user=PtfitzyProblem with HP 4260 Inkjet PrinterMy HP Printer is sometimes printing documents that are illegible. Also I get ocassional jamming of paper. I ran the &quot;HP Diagnostics&quot; and it found no problems.<br/>I was told there is a section where you can click on to correct the allignment. I went to Control Panel and brought up the Printer. However, I could not find any fixes for it. Any help would be appreciated.<br/><br/>ptfitzySat, 21 Nov 2009 01:17:51 Z2009-11-21T01:17:51Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/1c7e7867-34e1-46ea-9b9d-bfe9d5ceb4c8http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/1c7e7867-34e1-46ea-9b9d-bfe9d5ceb4c8Meera Pandahttp://social.expression.microsoft.com/Profile/en-US/?user=Meera%20PandaSql Server Analysis Services and Reporting ServicesHow to uninstall Analysis Servises and Reporting Servics for Sql Server 2005.Fri, 20 Nov 2009 19:27:46 Z2009-11-20T19:27:46Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/973a7c57-a107-43ec-8bdf-85fa7f81f09ehttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/973a7c57-a107-43ec-8bdf-85fa7f81f09eD.R.http://social.expression.microsoft.com/Profile/en-US/?user=D.R.Digital Camcorder Combo FC F3356771 The Sharper Image<em> <p><em>Hello Tech world I have a Digital Camcorder Combo FC F3356771 The Sharper Image.It is a 11 fuction Camara, Camcorder,Radio, P.C. Cam, MP-3, MP-4 player and so on. Problem I am having is when I run the install disk { MDV-241 Digital Camcorder Software  VideoManager } everything will install But when it gets to the PC Cam part of the install in the VideoManager I get  a pop up saying that the .net frame work is not campatable with the .net frame work on my laptop. Granted now I keep everything up to date on my laptop. I tryed serching for a driver for this  thing { MDV-241 Digital Camcorder Software Video Manager } but no hopes in finding it yet. Everything works on the unit  But I just can't get the install for the Camara to work as a PC Cam. Can anyone help with this if so Please shoot me an email to <a title="mailto:musicianjr@live.com" rel=nofollow href="mailto:musicianjr@live.com">musicianjr@live.com</a>  </em></p> <p> </p> <p><em>Thank You.</em></p> </em><hr class="sig">David J.Tue, 10 Nov 2009 15:51:10 Z2009-11-20T04:51:19Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/b8e588fc-4a84-4bbc-abc9-076232ff24bahttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/b8e588fc-4a84-4bbc-abc9-076232ff24baMike Walsh MVPhttp://social.expression.microsoft.com/Profile/en-US/?user=Mike%20Walsh%20MVPThis is NOT a forum for software or hardware product supportThis forum is entitled &quot;MSDN and TechNet Search Feedback&quot;.<br/><br/>It is thus a forum for Feedback on Search in connection with MSDN or TechNet.<br/><br/>It is NOT - as far too many people seem to think - a forum that accepts questions on software products or hardware products.<br/><br/>If you have no idea which forum you should post your question to, ask in the &quot;What is the forum for ...?&quot; forum. You'll find that here<br/><br/><a href="http://social.technet.microsoft.com/Forums/en-US/whatforum/threads">http://social.technet.microsoft.com/Forums/en-US/whatforum/threads</a><br/><br/>Please do not post such questions here, all that will happen is that I will move them unanswered to the Off-Topics forum.<br/>Sat, 04 Apr 2009 18:38:35 Z2009-11-19T22:52:00Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/10f33547-ca0c-4c3e-b1a1-f98e3a86b7dchttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/10f33547-ca0c-4c3e-b1a1-f98e3a86b7dcElvisbobhttp://social.expression.microsoft.com/Profile/en-US/?user=ElvisbobString PRODUCT_NAME was not found in string tableI have been getting the message    String PRODUCT_NAME was not found in string table --- when I was running Vista and still with System 7 (I had hoped it would go away with the new System 7 but it didn't).<br/><br/>I did opne configsys.exe and can see all of the startup items.  How would I know which one is causing the problem?  The String PRODUCT_NAME was not found in string table error message gives no more info.Thu, 19 Nov 2009 00:10:29 Z2009-11-19T00:10:30Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/7e278894-082e-45cf-8231-71e9a6efee7bhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/7e278894-082e-45cf-8231-71e9a6efee7btray6http://social.expression.microsoft.com/Profile/en-US/?user=tray6my media player cannot locate a usb stmp3400 in order to sync music to a mp3I got music in my media player that I wanted to synchronize to my classic mp3 player but my driver won't let me because the stmp3400 driver cannot be located.Wed, 18 Nov 2009 15:54:54 Z2009-11-18T15:54:55Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/61a32959-51ff-44f5-88d0-dda8f6dccc47http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/61a32959-51ff-44f5-88d0-dda8f6dccc47Carl Danielhttp://social.expression.microsoft.com/Profile/en-US/?user=Carl%20DanielVery poor search results searching MSDN siteI tried searching for &quot;Pex&quot;, having seen a presentation today at the PDC.  Result?  No results.<br/><br/>I recalled that Pex was on DevLabs, so I tried searching for &quot;DevLabs&quot;.  Result?  No results.<br/><br/>These searches were from the search box on the MSDN home page.<hr class="sig">-cd [VC++ MVP] Mark the best replies as answers!Wed, 18 Nov 2009 03:41:32 Z2009-11-18T15:25:48Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/74b267f6-8367-41cc-a83f-0cd092b345f0http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/74b267f6-8367-41cc-a83f-0cd092b345f0luchdadhttp://social.expression.microsoft.com/Profile/en-US/?user=luchdadError DescriptionThe pop up reads &quot;This page may contain dynamic content that requires a web server in order to be previewed correctly.&quot;  My masterpages, in short, read as text when I view them in the preview browser.Wed, 18 Nov 2009 04:11:11 Z2009-11-18T04:11:13Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/6013f20b-cc1a-4cd4-beab-1a7c0ffc88d3http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/6013f20b-cc1a-4cd4-beab-1a7c0ffc88d3luchdadhttp://social.expression.microsoft.com/Profile/en-US/?user=luchdadWE 2 Developer Server Not Installed - ASP.net files<p>I have created a master page and created pages from it.  When I view my work I just get text in the view.  Before that it tells me developmnet server is not installed.<br/><br/>Please help.  I have read other blogs and it looks like I'll have to switch to .dwt instead of masterpages which saves on code.</p>Wed, 18 Nov 2009 04:07:06 Z2009-11-18T04:07:07Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/736b7a69-544d-4709-88f8-5119bf886e23http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/736b7a69-544d-4709-88f8-5119bf886e23lacemadhttp://social.expression.microsoft.com/Profile/en-US/?user=lacemadTabbed Alphabetical indexI currently have a list of addresses that I use to print envelopes from in Word, and it is getting bigger and I would like to add a section that I can click on each letter of the alphabet and it will bring me to the start of each alphabetically listed section.  Press A and I would get all the Names starting with A.  Is it possible I am not very computer literate so need simple instructionsWed, 18 Nov 2009 02:06:54 Z2009-11-18T02:06:55Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/6184a63c-c0a0-43c8-ba8b-75ea75768e21http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/6184a63c-c0a0-43c8-ba8b-75ea75768e21Rob Ainscoughhttp://social.expression.microsoft.com/Profile/en-US/?user=Rob%20AinscoughWhy MSDN tech resources/documentation failsHope this is the right forum to post this, hard to tell with over 300+ forums to select from.<br/><br/>I've finally pinpointed what is seriously lacking in Microsoft's documentation including online MSDN resources:<br/><br/>1.  It's &quot;why&quot;.  That question is never answered, &quot;Why do I want to user this property or method?&quot;  Provide a meaningful context of why any particular property or method or class is used and/or available for use.  Typical usage.<br/><br/>2.  Context tree on sample code that would provide a means to narrow down or back up thru what the sample is trying to accomplish.<br/><br/>3.  Understand my source context when I hit the F1 help key -- when I hit the F1 key in VS 2008 it knows I'm working on a Windows Forms project in VB using .NET 3.5, but I'll get endless listing of C#, Java, ASP.NET, etc. etc.  after wading thru the junk I don't need I might get a hint of what I actually want.<br/><br/>4.  Community Content is almost ALWAYS empty, yet I know I see many related posts on MSDN forums, why are this not linked in?<br/><br/>Often makes me wonder if Microsoft really does want to encourage software development for their OS/platforms.<br/><br/>Rob<br/><br/> Tue, 17 Nov 2009 21:26:49 Z2009-11-17T21:26:50Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/ee04a456-a36b-45f6-827c-1f50eda6e660http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/ee04a456-a36b-45f6-827c-1f50eda6e660g.wiremanhttp://social.expression.microsoft.com/Profile/en-US/?user=g.wiremancannot enter my pw when booting up win xpwhen I tried to enter my pw the cursor freezes, it is formatted ntfs, I used microsoft incription on most of my data files. I pulled my hard drive and mounted it as a usb external drive so I could access my data with my other comp, I changed ownership of the files but it won't let me view my incripted files, how can I view these files?Tue, 17 Nov 2009 19:26:27 Z2009-11-17T19:53:38Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/c08ee071-3e7a-4018-9f47-0f4df605b373http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/c08ee071-3e7a-4018-9f47-0f4df605b373Wade123http://social.expression.microsoft.com/Profile/en-US/?user=Wade123BizTalk flatfile assembler has a bug<p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:10pt;color:black;line-height:115%;font-family:'Verdana','sans-serif'">I had been using biztalk for 5 years, and I believed flatfile assembler/disassembler components are two of the most robust components. However, this thought has been challenged yesterday.</span></p> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:10pt;color:black;line-height:115%;font-family:'Verdana','sans-serif'">I have an application has an orchestration with send port to a flat file. In orchestration, I had a flat file message (msg_Flat) and an XmlDocument type message (msg_XML). I assigned msg_flat to msg_XML, and then pass the msg_XML as an object to a C# function, modified one node value to empty string, then assigned the msg_XML back to msg_Flat. Code in side the C# funciton:</span></p> <p class=MsoNormal style="margin:0in 0in 0pt;line-height:normal"><span style="font-size:10pt;font-family:'Courier New'">oRefNode = oXml.SelectSingleNode(<span style="color:#a31515">&quot;/ns0:ORDER/ns0:Hdr/ns0:Header/ns0:ShipToName&quot;</span>, mn);</span></p> <p class=MsoNormal style="margin:0in 0in 0pt;line-height:normal"><span style="font-size:10pt;font-family:'Courier New'">oRefNode.InnerText = <span style="color:#a31515">&quot;&quot;</span>;</span></p> <p class=MsoNormal style="margin:0in 0in 0pt;line-height:normal"><span style="font-size:10pt;font-family:'Courier New'"> </span></p> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:10pt;color:black;line-height:115%;font-family:'Verdana','sans-serif'">This code has been running for past 2 years.</span></p> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:10pt;color:black;line-height:115%;font-family:'Verdana','sans-serif'">Last week I made some change I believe it’s irrlavent, the ShipToName field in flat file was populated with lots of space and a carrige return. And as a fix, I had to assign a space<span>  </span>to the node:</span></p> <p class=MsoNormal style="margin:0in 0in 0pt;line-height:normal"><span style="font-size:10pt;font-family:'Courier New'">oRefNode = oXml.SelectSingleNode(<span style="color:#a31515">&quot;/ns0:ORDER/ns0:Hdr/ns0:Header/ns0:ShipToName&quot;</span>, mn);</span></p> <p class=MsoNormal style="margin:0in 0in 0pt;line-height:normal"><span style="font-size:10pt;font-family:'Courier New'">oRefNode.InnerText = <span style="color:#a31515">&quot; &quot;</span>;</span></p> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:10pt;color:black;line-height:115%;font-family:'Verdana','sans-serif'"> </span></p> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:10pt;color:black;line-height:115%;font-family:'Verdana','sans-serif'">And then the flat file will be generated properly.<br/><br/>For a flatfile assembler, we will never expect it automatically insert carrige return, isn't it?<br/><br/>Thank you very much,<br/><br/>Wade</span></p>Tue, 17 Nov 2009 18:09:11 Z2009-11-17T18:09:13Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/ec73f156-678b-484f-a164-bf4046bb66b0http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/ec73f156-678b-484f-a164-bf4046bb66b0kanhaiya diwanhttp://social.expression.microsoft.com/Profile/en-US/?user=kanhaiya%20diwanActiveX Control works in IE7- but hangs IE8 and Win XP SP2 combination. Does anyone know any setting for IE 8 to address this issue? <span style="line-height:115%;font-family:'Calibri','sans-serif';font-size:11pt">ActiveX Control works in IE7- but hangs IE8</span><span style="font-family:Times New Roman;font-size:small"> and Win XP SP2 </span><span style="border:windowtext 1pt;padding:0in"><a href="http://social.msdn.microsoft.com/Forums/en/ieextensiondevelopment/thread/7a1bf8b3-8013-422b-b300-2e0548fc7bd8?outputAs=rss"><span style="color:#0066dd;text-decoration:none;text-underline:none"></span></a></span><span style="font-size:small"><span style="font-family:Times New Roman">combination. Does anyone know any setting for IE 8 to address this issue? The some of the configurations mentioned in the various articles does not work with Win XP SP2 as theese options are not available. <br/>(Refer <a href="http://social.msdn.microsoft.com/Forums/en/ieextensiondevelopment/thread/7a1bf8b3-8013-422b-b300-2e0548fc7bd8">http://social.msdn.microsoft.com/Forums/en/ieextensiondevelopment/thread/7a1bf8b3-8013-422b-b300-2e0548fc7bd8</a>)<br/><br/></span></span>Tue, 17 Nov 2009 12:27:24 Z2009-11-17T12:27:25Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/64c8ed0c-3347-4dd9-8440-8a9f599d0887http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/64c8ed0c-3347-4dd9-8440-8a9f599d0887Virginia Lopezhttp://social.expression.microsoft.com/Profile/en-US/?user=Virginia%20LopezMy computer Windows Vista will not boot upRecieving a black screen and  windows error recovery message: Windows failed to start, a recent software or hardware change might be the cause.  Freezes on check disc.   Please advice<hr class="sig">VLOTue, 17 Nov 2009 08:02:07 Z2009-11-17T08:02:09Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/c8734c6e-b677-4e5d-a932-077b4e41facchttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/c8734c6e-b677-4e5d-a932-077b4e41faccrangarajahttp://social.expression.microsoft.com/Profile/en-US/?user=rangarajaThinclints<p><strong>Hi,</strong></p> <p><strong>I am developing thinclints, I had created windows CE image for thinclint and  i am downloading that image (nk.bin) form development platform to target machine and after that i am connecting it to server(widnows server 2003 server), upto this its workig properly.<br/><br/>Now i need booting form server, <br/>that is i have to boot the clint system using ethernet card and it has to connect to server (i am using widnows server 2003 server) and after that image nk.bin has to download to clint and it has to start woking , please helpme to do this.  <br/><br/></strong></p>Tue, 17 Nov 2009 05:12:22 Z2009-11-17T05:12:23Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/216727c7-159a-496a-9b1a-fe68894a9606http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/216727c7-159a-496a-9b1a-fe68894a9606warhawkshttp://social.expression.microsoft.com/Profile/en-US/?user=warhawkswindows media center, no tv access??? Professional version windows 7Tried to see tv show but it doesnot appear.Tue, 17 Nov 2009 00:24:39 Z2009-11-17T00:24:40Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/a66cbff6-ec27-40eb-99e1-fe7136b28a57http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/a66cbff6-ec27-40eb-99e1-fe7136b28a57Mohammed Sikandarhttp://social.expression.microsoft.com/Profile/en-US/?user=Mohammed%20SikandarAdvantages & Disadvantagescan anybody tell me advantages &amp; disadvantages of partitioning? and how can we implement indexes on multiple columns?Sat, 14 Nov 2009 10:07:22 Z2009-11-14T10:07:22Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/4f2dde8b-2d23-46fa-9957-ff8dba8ac3c1http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/4f2dde8b-2d23-46fa-9957-ff8dba8ac3c1yahoo messangerhttp://social.expression.microsoft.com/Profile/en-US/?user=yahoo%20messangeri cant download yahoo messanger,firewall block itI was trying to download yahoo messanger,but it says i need to change the firewall settings. so I change the setting on windows firewall,allowing the yahoo messanger to be downloaded, and I TURN OFF the firewall, then download again. still I have the same problem, it would not allow me to download, the firewall block it again. so what should I do now?Fri, 13 Nov 2009 18:38:01 Z2009-11-13T18:38:01Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/058d6a6c-c24b-4344-878a-5d052a933676http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/058d6a6c-c24b-4344-878a-5d052a933676moneydragonhttp://social.expression.microsoft.com/Profile/en-US/?user=moneydragonlooking for a pageI was on a page that contained an entry/comment by moneydragon - had to reboot and now I cannot find that page again with a ton of good cooments. Please help - how can I search for this page?Fri, 13 Nov 2009 17:31:03 Z2009-11-13T17:31:04Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/4e938fa9-6b57-4fe7-b4ab-40647e02b3e5http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/4e938fa9-6b57-4fe7-b4ab-40647e02b3e5Sparticus Palacehttp://social.expression.microsoft.com/Profile/en-US/?user=Sparticus%20PalaceQuestion regarding Office 2003Which forum category should I post questions about Office 2003 in?<br/> <br/> Thanks.<br/> ChrisThu, 12 Nov 2009 20:56:31 Z2009-11-12T20:56:31Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/1c7888ce-df30-4fec-87d1-8c8165c6e0d2http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/1c7888ce-df30-4fec-87d1-8c8165c6e0d2Luis Andradehttp://social.expression.microsoft.com/Profile/en-US/?user=Luis%20AndradeNueva Plataforma MVA - Mejoras o Problemas?<span> <p class=MsoNormal style="margin:0cm 0cm 10pt"><span style="line-height:115%;font-family:'Verdana','sans-serif';color:black;font-size:8pt">Seguramente muchos notaron los cambios de lock &amp; Feell de la nueva plataforma, algunas mejoras y mejores controles en los exámenes. De esta forma se orientaba la plataforma MVA a WEB 2.0, faltando algunos detalles para lograrlo, pero un gran logro al fin. Seguramente muchos se han quejado con los problemas en los exámenes, puntos, cambios de los certificados, no contestan las preguntas y así un montón de cosas que hace el día a día de cualquier plan de estudios u Organización de Estudios.<br/>Pero lo más importante que muy pocos valoraron, es sin duda el valor agregado que tiene en las comunidades de LATAM contar con tanto material y referencias bien guiadas, que los alumnos pueden cursar en forma Virtual y con los horarios disponibles por cualquier ser en libertad. Gratis, libre y con los tiempos en disponibilidad de cada estudiante.</span></p> <p class=MsoNormal style="margin:0cm 0cm 10pt"><span style="line-height:115%;font-family:'Verdana','sans-serif';color:black;font-size:8pt"><br/>El otro valor más importante, en la fuerza que puede ir creciendo con la integración y la colaboración entre los propios Estudiantes, donde los que mayor logros hicieron colaboren con los que tienen problemas, eso hace a la plataforma con un posible crecimiento y un impacto social muy importante en Latinoamérica.<br/><br/>Por eso debemos valorar, ayudar y colaborar porque serán las bases de nuestro futuro y de los nuevos estudiantes que se sumarán, formando personas y achicando la brecha tecnología entre países desarrollados a los que están desarrollándose.<br/><br/>Esta vez debo dar las gracias a Microsoft por tener siempre la visión que el futuro es de todos y apostando a formar en las tecnologías de Microsoft seguramente es la mejor manera de evangelizar y obtener logros significantes en la tecnología de punta.<br/><br/>Luis Andrade</span></p> </span><hr class="sig">dgarThu, 12 Nov 2009 20:06:00 Z2009-11-12T20:06:01Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/828db3d4-3030-416b-877a-a086c6d67dd2http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/828db3d4-3030-416b-877a-a086c6d67dd2Luis Andradehttp://social.expression.microsoft.com/Profile/en-US/?user=Luis%20AndradeNueva Plataforma MVA - Mejoras o Problemas?<p class=MsoNormal style="margin:0cm 0cm 10pt"><span style="line-height:115%;font-family:'Verdana','sans-serif';color:black;font-size:8pt">Seguramente muchos notaron los cambios de lock &amp; Feell de la nueva plataforma, algunas mejoras y mejores controles en los exámenes. De esta forma se orientaba la plataforma MVA a WEB 2.0, faltando algunos detalles para lograrlo, pero un gran logro al fin. Seguramente muchos se han quejado con los problemas en los exámenes, puntos, cambios de los certificados, no contestan las preguntas y así un montón de cosas que hace el día a día de cualquier plan de estudios u Organización de Estudios.<br/>Pero lo más importante que muy pocos valoraron, es sin duda el valor agregado que tiene en las comunidades de LATAM contar con tanto material y referencias bien guiadas, que los alumnos pueden cursar en forma Virtual y con los horarios disponibles por cualquier ser en libertad. Gratis, libre y con los tiempos en disponibilidad de cada estudiante.</span></p> <p class=MsoNormal style="margin:0cm 0cm 10pt"><span style="line-height:115%;font-family:'Verdana','sans-serif';color:black;font-size:8pt"><br/>El otro valor más importante, en la fuerza que puede ir creciendo con la integración y la colaboración entre los propios Estudiantes, donde los que mayor logros hicieron colaboren con los que tienen problemas, eso hace a la plataforma con un posible crecimiento y un impacto social muy importante en Latinoamérica.<br/><br/>Por eso debemos valorar, ayudar y colaborar porque serán las bases de nuestro futuro y de los nuevos estudiantes que se sumarán, formando personas y achicando la brecha tecnología entre países desarrollados a los que están desarrollándose.<br/><br/>Esta vez debo dar las gracias a Microsoft por tener siempre la visión que el futuro es de todos y apostando a formar en las tecnologías de Microsoft seguramente es la mejor manera de evangelizar y obtener logros significantes en la tecnología de punta.<br/><br/>Luis Andrade</span></p><hr class="sig">dgarThu, 12 Nov 2009 19:52:56 Z2009-11-12T19:52:57Zhttp://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/86b6ae65-36a8-4625-aff6-3e081a7b3977http://social.expression.microsoft.com/Forums/en-US/SearchFeedback/thread/86b6ae65-36a8-4625-aff6-3e081a7b3977importracerhttp://social.expression.microsoft.com/Profile/en-US/?user=importracerplz help I am having trouble installing my updates, its been a few days now that i have been trying to install them but error 646 keeps popping up.<br/>Does anyone know why?<br/>ThanksThu, 12 Nov 2009 18:47:39 Z2009-11-12T18:47:40Z