SvenC's Q&A profile
Visual Studio Team System The node specified is not found in the classificaiton hierarchy
Using Beta 3. Used CMMI template to create new team project. Opened up "Areas and Iterations" windows for new project. Deleted Iteration 1 and 2 nodes. Renamed Iteration 0 node to 3.0.0. Tried to run "All Work Items" query and recieved this error: TF51011: The node specified is not found in the classification hierarchy. Is this a known bug For everyone falling into this problem, this command solved problem for me: witfields rebuild ...Show All
Visual C++ Where can I find information/discussion on low level audio and midi device drivers
I have been using the multimedia lowlevel audio services API but find that this API sometimes behaves in a brain damaged fashion. For Instance I installed a Soundblaster card and disabled the previous motherboard driver in the Windows XP Proffessional control panel and disabled the hardware in the bios. However waveOutGetNumDevs picks up 2 devices. I then go on to call waveOutGetDevCaps for device numbers 0 and 1 and display the names to the use ...Show All
Visual C++ Lib Size difference
Hi, I have created a "Static Lib" using Visual Studio .NET 2003, as "Use of in a shared DLL" . Each and every time when i try to build this lib. i got different sizes. Plz find the following configuration settings that i have used during Lib creation: Configuration : DEBUG Runtime Library : Multi Threaded Debug DLL Precompiled Header: Use Precompiled Header Building the Lib in Machine A: 4,986,628 bytes Building the Lib in Ma ...Show All
Windows Forms Dual threaded image creation...Reposted to be more readbale??...
Hi there, I have a simple example below showing how I create a bitmap from a data array: void Form1::ImageUpD(array<double,2>^ image) { ImageBmp = gcnew Bitmap(image->GetLength(0),image->GetLength(1),PixelFormat::Format24bppRgb); BitmapData^ data = ImageBmp->LockBits(Drawing::Rectangle(0,0,image->GetLength(0),image->GetLength(1)),ImageLockMode::WriteOnly,PixelFormat::Format24bppRgb); unsigned char *bits = (unsigned char *)d ...Show All
Visual Studio MSBuild conditional import and Visual Studio IDE
Hi all, First of all, apologies if this is the wrong group - the problem I'm experiencing seems to be in the MSBuild hosted in the VS IDE, rather than the command-line MSBuild. I have vcproj files with conditional imports (to pull in MSBee build rules for a FX1.1 build). These build fine from the command line with the relevant conditional parameters set - I use a condition of: Condition=" '$(Platform)' == 'Win32 (.NET 1.1)'" so I can i ...Show All
Visual Studio Team System Error Creating New Project
I have a fresh install of VSTS B3 and I"m having pains where I do not think that Sharepoint is correctly installed Here is the error I'm getting. 9/26/2005 11:26:27 AM | Module: Engine | Thread: 10 | Running Task "SharePointPortal" from Group "Portal" ---begin Exception entry--- Time: 9/26/2005 11:26:28 AM Module: Engine Event Description: TF30162: Task "SharePointPortal" from Group "Portal" failed Exception Type: Microsoft.TeamFound ...Show All
Windows Forms Sample Code: TreeGridView - collapsing/expanding DataGridView
I've just started a blog and the first main post is a sample that I wrote to customize the DataGridView to support collapsing and expanding. I call it a TreeGridView: http://blogs.msdn.com/markrideout/archive/2006/01/08/510700.aspx Let me know what you think! -mark DataGridView Program Manager Microsoft This post is provided "as-is" Fantastic code Mark ...Show All
.NET Development Inheriting or overriding a class within a class... why not?
This seems like such a basic need that I am mystified why the brilliant minds at Microsoft have not made it possible via the .NET languages, .NET framework, or whatever would make it possible. Case in point: Take a TreeView class which contains a private read only TreeNodeCollection class. The TreeNodeCollection class is responsible for Add(), Remove(), InsertAt(), etc. Well, it's very easy to inherit from the TreeView, but then if you wan ...Show All
Windows Forms MERGING CELLS IN DATAGRIDVIEW
Hi all, Is it possible to merge cells(rows) in DatagridView And How Thanx The DataGridView does not have any support for merging cells. You can custom paint content across cells, but apart from that you would have to do a lot of work and custom coding to produce merged editable cells. -mark DataGridView Program Manager Microsoft This post is provided "as-is" ...Show All
Visual C++ VC++ 8 Show-Stopper?
Hi, I'm seeing a speed hit of around 2X when switching to VC++ 2005. It's so serious and effects even the most basic programs that I can only think I must be missing something. Please help! Building the same (trivial) program onVS 2003 and VS 2005 I'm seeing around a 2x decrease in speed. I'm building for release and in 2005 also setting D_SECURE_SCL=0. Can someone explain #include "stdafx.h" #include <windows.h> #include <vec ...Show All
Visual Studio Team System Visual SourceSafe 2005 Internet Access
Hello, Please could someone explain why the Visual SourceSafe internet access dialog within Visual Studio requires a UNC path as well as an HTTP one Is this implying that for initial setup, there must be a lan/vpn type connection or can a remote developer with only HTTP access (but with an NT account) connect and use the system somehow Thanks Simon Alfredo You mention that there is an assumption about lock down. ...Show All
Smart Device Development vs2005 compiler is fatally flawed: generates bad code
In this very simple excerpted code, the compiler fails to do its job. If you want it recreated, I propose someone there try to recreate it. I've already got it happening here. It's as simple as it gets. From the type of failure, it looks like it's going to happen a lot. r12 is assigned the address of mc.decodePriority only if gDecodeMaxPriority >= 3, yet it, r12, is still used as the store address when it is not &g ...Show All
Visual Studio Team System Sharepoint Web Part for VSTS Work Item Maintenance
Hi, I understand that adding, updating etc work items for VSTS is not currently supported in the Sharepoint Team Site for a project. Does anyone know about any third party web parts available to achieve this. Thanks JW You may want to take a look at TeamPlain Web Access , it's not a SharePoint web part, but a stand alone web application with work item management, reporting, documents and more. &nb ...Show All
.NET Development Controlling the Number of Processes Running.
Hi, Ive created a small app which reads a list of excel documents from a database. These excel sheets when opened run a macro which refresh other sheets, once that is done the sheet closes automatically. What i want to do is limit the number of jobs that the app kicks off to around 2 but how can i tell when the Excel sheet ive opened is finished running its macro. When i start the process can i check to see when it has closed At ...Show All
.NET Development FtpWebRequest.Method = "UploadFile"
it worked before, and maybe after beta2, it stopped working. now it says "This method is not supported" How to get around of this could not find anything about this on web. Thanks, Public Sub FtpUpload( ByVal uploadAddress As String , ByVal fileToUpload As String , ByVal credentials As NetworkCredential) Dim request As FtpWebRequest = Nothing Dim response As FtpWebResponse = Nothing Dim sr As StreamReader = ...Show All
