Answer Questions
Gavin Rouse Custom HierarchyNodes on project-reload always expanded
Hello everybody, I'm currently working on a custom LanguageService for VS 2005. We've integrated custom editors, ToolWindows, Hierarchies etc, but there remains one unsolved problem, we can't get a solution for. Our tool is for generating Framework-adapters in MSIL by implementing our own description language. We've extended the Solution Explorer programmatically by modifying the ReferenceContainer. Exactly we replaced the ReferenceContainer with our own implementation, which extends from HierarchyNode. Under the ReferenceContainer we show something like a Class-Hierarchy, which means classes, properties, methods etc. It is comparable to the VS-Class View. The problem is that when we create a new project (our own custom project type) every ...Show All
adorer How to add "Database Professional" to Team Suite?
Hi all... I see that the "Database Professional" Team Center is now available. I have Team Suite installed already (so Software Arch., S/W Dev, S/W Test and Project Manager are already installed.) How do I install the database professional component Do I download the full installation DVD and install it, or is there an easier way (I have already installed VS SP1, and it still isn't there.) Thanks! Mark Here is the download link which looks fresh (8th January 2007) and is even only 7.9MB: Visual Studio 2005 Team Edition for Database Professionals Add-on for Visual Studio 2005 Team Suite Edition Under the MSDN Subscriber downloads this is a seperate download (19MB), so ...Show All
Giminiani VS2005 get corrupted binary files!!! VS 6.0 can still get it!?!?
Dear forum members, I have a huge problem. When I check in a Access database in VS2005 and do "Get Latest Version" the file is always working (= not corrupt). If I get the history the Access database is corrupt whilst VS6 can still fetch the whole history on the same repository without any problem! ! ! ! I have run the latest hotfix (KB923434) but still didn't work. Also remarks that the hotfix should only work from installation moment on doesn't make sense because VS 6.0 can get it! Autodetect Filetype is checked and *.mdb added as Binary file type. Analyze didn't help at all ... So I am lost and seriously thinking of going back to VS6.0 ... HELP !!! File type is b ...Show All
JimInTexas Visual Studio SP1 - Which Build Numbers ?
How can I see if a installation does have SP1 installed already In the help it doesn't show any "SP1" remark and on the SP1 download website I don't find a reference to the build numbers. Why can't MSFT be more consistent Either write it in the "About" dialog clearly or the provide the build numbers with the download :( Thanks a lot Thanks, I had the exact same question. And now feel sort of silly I didn't read the entire dump from the "About" window...of course dumping it about the only way to read it. But hey, now I know, you have to dump the About information into a text editor to read it. :) You ...Show All
ripern The certificate 'CN=localhost' must have a private key that is capable of key exchange.The process must have access rights for
Hi, My WCF service has following security settings:- at server side(web.config) :- < behaviors > < serviceBehaviors > < behavior name = " myBehaviour " > < serviceDebug includeExceptionDetailInFaults = " true " /> < serviceMetadata httpGetEnabled = " true " /> < serviceCredentials > < serviceCertificate findValue = " localhost " storeLocation = " LocalMachine " storeName = " My " x509FindType = " FindBySubjectName " /> </ serviceCredentials > </ behavior > </ serviceBehaviors > </ behaviors > < bindings > < wsHttpBinding > < ...Show All
gifuran Implementing sound equalizer
Hi, I'm trying to implement a sound equalizer in WPF. To implement this, I need the ability to control the sound stream that's used by the media player. Media elements and media players rely on URIs. Is it possible to create a media element directly from a stream Is there any way to implement new uri handlers Also, will the sound player read all the stream before playing it or will it buffer it and keep reading from the stream In general, what area/sample/classes should I look into Thank you! There is no easy way to do what you're trying to do with MediaElement/MediaPlayer. These classes are built on top of the Windows Media Player Active X Control, which doesn't support streams. I hop ...Show All
Kamii47 Visual Stuiod 2005 Causes Crashes????
Occasionally when I open a profile in AIM or try to watch a video with IE or Firefox I get a dialogue that says ________________________________________________________________ | "VISUAL STUDIO Just-In-Time Debugger" | | "An unhandled Win32 exception occurred in IEXPLORER.EXE[3292]. | | | | "Possible Debuggers:" | | "New Instance of Visual Studio 2005" | | () - Set the currently selected debugger as the default | | () - Manually Choose the debugging engines" | | ...Show All
cgn Subreports
Hello everybody, I have a sub report that shows information for a particular topic when clicked hyperlink from the main report. On the sub report, I need to have another hyperlink that shows another report linked with sub report to show some more additional information. I didn't find a way to add a sub report inside a sub report. Is there a way to do this I need to show more details for sub reports in a separate report. Thanks. Subreports can't contain subreports Unfortunately CR does not allow nested subreports so you are going to have to find another way to do it. If the info in the "2nd sub report" relates to the "1st sub report" y ...Show All
Ram Babu Assertion Dialog appearing whilst running tests via MSBuild
Hi, I'm using MSBuild to kick off some tests using MSTest. The problem I have is that the tests are running against debug builds and in some cases assertion dialogs are appearing, which is obviously not ideal for CI. When I was using NUnit I could suppress the dialog using a .config file for the nunit project in the following manner: <configuration> <system.diagnostics> <assert assertuienabled="false" /> </system.diagnostics> </configuration> How can I do this using MSBuild/MSTest thanks in advance, John. Hi John, This question would likely get a better answer in the unit testing forum -- http://forums.microsoft.com/MSDN/ShowForum.aspx For ...Show All
pinoyz VSTO Outlook 2003 Add-in Deployment problems
I've had a lovely little add-in now working on my machine for a while, and yet I haven't been able to deploy it successfully, not even on my own machine once. The program works absolutely perfectly on my machine when debugging and running through Visual Studio, but when deployment comes, the common error "Not loaded. A runtime error occurred during the loading of the COM Add-in" occurs. I've now created the simplest of simple add-ins, that simply display "HELLO WORLD" in an attempt to deploy that, to then further, deploy mine - still no look. The main blog I found which seemed to cover the most problems was http://weblogs.asp.net/mnissen/articles/427504.aspx I created the installer class that i read about ...Show All
Supersonic how to create a line chart in crystal reports with access database
hellow, I wants to create a line chart in crystal report,can anybody give me the details. hi all, Now i wants to show stations and their respective distance on Y-axis ,on X-axis timing of the train,so in all there are 4 fields 1.stations 2.the distance between the stations, 3.train name, 4.the timing of the train. help me to solve this problem. hi...create a blank report on crystal reports...select your database...then click on Insert on the MenuBar then click Charts...you can find Line Chart in there...the wizard will guide you on selecting what to display on your line chart ...Show All
ArnsteinD Passing variable to datetime field from java app
I'm having a problem sending a string variable that is formatted for the datetime field in sql server 2005 express. If I send a prepared statement as a hard coded value in the form 2006-12-13 07:34:20 it updates the database no problem. When I send it as a String value using SimpleDateFormat I get the error com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax near '07'. Yet when I write it to the console I get the same as above. Is this a bug, I'm very frustated at this point Moving to the Java forum as that seems more appropriate. Mike This seems to be an issue with the SQL Server. You may want to try the SQL Express forum here - http://forums.microsoft.com/MSDN/ShowForum.a ...Show All
Ehrick Can't Run a Excel Workbook application using Visual studio tools for office 2005 & C#
I have started a new project of C# using Visual studio tools for Office 2005 (Excel 2003). But I cannot run it.. While running it shows "The customization assembly could not be found or could not b loaded. You can still edit and save the document. Contact your admisnistrator of he author for this document for further assistance." Can somebody help me in this regards. Saibal NelG1, Cindy's recommendation to install the PSS VSTO 2005 Troubleshooter is an important one. By running this and viewing its results, you can isolate most of the installation issues with a customization. In the absence of more data, I'll go ahead and close this thread at this point. If your issue remains unresolved, please ...Show All
KevMac Using Network Load Balancing NLB with WCF - Failover to another cluster results in CommunicationException
Hello, I'm trying to create a simple sample WCF service that is hosted in an NLB cluster on IIS. I have created the cluster successfully, and have a simple WCF client that prints out the name of the machine it is connected to when you click a button. If I goto the cluster node the client is connected to, and disable its LAN connection, then I can see the fail-over occuring: If I browse to a simple "Hello World" html file containing the machine name, I can see that the IE browser is successfully redirected to the other node. Unfortunately for my WCF client when I click the button to print the machine name, instead of getting the machine name of the 2nd node, I get a CommunicationException: The underlying connection was closed: A ...Show All
Andrew Sears - T4G Having trouble with the debugger - File being used by another process.
I keep getting the error: "The operation could not be completed. The process could not access the file because it because it is being used by another process." And then the next time I try to use it it comes up with the next error: "Visual Studio could not copy a support file to this location (lists my directory that I am working in and then it is under bin\Debug\{projectname}.vshost.exe. Please verify the path exists and is writeable." I have checked it and it is writeable. This is driving me crazy because the only fix that I have found so far is to rename the current vshost.exe file to vshost.exe.old. Then I copy a vshost.exe into that directory. It will run fine when I do this but what a pain in the rear ...Show All
