sebatwerk's Q&A profile
Visual Studio Team System TF26177 Team Foundation does not support renaming fields.
Hello. We have just upgraded from Beta 3 Refresh to the Release Candidate. I'm trying to upgrade the Work Item Types to match the RC instead of the old Beta 3 Refresh. We have not done any customization on the work items so there shouldn't be a problem. I've just downloaded the new Process Template (MSF for Agile Software Development) and I'm running the command: C:\Program Files\Microsoft Visual Studio 8\Common7\IDE>witimport.exe /f "C:\MSF for Agile Software Development\WorkItem Tracking\TypeDefinitions\QoS.xml" /t teamsystem /p Project1 Error: TF26177: The field Microsoft.VSTS.Common.RoughOrderOfMagnitude cannot be renamed ...Show All
Smart Device Development Need some advice from the Pros
Hi, I need some advice developing a DSP app on PocketPC (specifically iPaq 2215 , which is PPC2003 I think). I have been developing Windows apps for a long time using VS with C++ as well as C#. So I am quite familiar with Win32 and the .Net framework on Windows but when it comes to developing for the PPC I am a complete newbie. I have the following requirements for my PPC app: 1) Must be able to record and play back audio at the same time (full duplex). A typical example might be a spectrum analyzer that also needs to send out a test tone at the same time. 2) Need as small as possible latency from recording a buffer of aud ...Show All
Visual Studio How to Build website from AssemblyInfo Task
It is fine to use AssemblyInfo task with Class Libraries project files in eg. .csproj. < Import Project = " $(MSBuildExtensionsPath)\Microsoft\AssemblyInfoTask\Microsoft.VersionNumber.targets " /> But How to use the same with Websites where .csproj file does not exist. Thanks, Naren You can't use the AssemblyInfoTask with a web project as web projects don't have a project file. You can increment version numbers using the method described at http://weblogs.asp.net/bradleyb/archive/2005/12/02/432150.aspx . It requires using the Web Deployment Projects beta. Neil ...Show All
Visual Studio Removing my menus from the context menu
Hi, I have added custom menu items in the context menu of my project node. now if i add a new C# project or any other project, my custom menus are coming in the context menu of those projects also. I dont want my menus to appear in the context menu of other projects. plz help. Thanks in advance. Hello, Make sure that in your .ctc file you specify that your button use DynamicVisibility and is DefaultInvisible. Then when your IVsUIHierarchy::QueryStatusCommand() implementation, you can make it enabled and visible. Rusty ...Show All
Visual C++ How can I handle this error
Dear all , I couldn't handle this error like the code below. I know "strncpy" shouldn't pass the value -1 , but how could I debug this kind of error try { char test[20]; strncpy(test,"123",-1); //problem here -1 } catch(...) { } It also couldn't be handled this after using "SetUnhandledExceptionFilter" api . Could you help me thanks .. ...Show All
SQL Server Search
I have asp.net C# web application I want to search jobvacancy details using jobrole. if user did not select any value I want to select all the details including null values. this Jobvacancy table has JobRole feild and it allow to insert null values, this is my stored procedure [CODE] CREATE PROCEDURE JobVacancy ( @JobRole varchar (50) ) as Select NoOfVacancies,JobRole from JobVacancy where JobRole LIKE @JobRole + '%' [/CODE] when I use @JobRole value as '%' then if JobRole feild has null value it did not select. but I want to select all the values including null values. how can I do this This sol ...Show All
Visual C# System.Web.UI namesspace compile time error
I am getting this error out of "using System.Web.UI;" declaration: The type or namespace name UI does not exist in the class or namespace 'System.Web' (are you missing an assembly reference ). I am using Visual Studio 2003 C# .NET designer. My system is Win2K Pro. I want to ultimately use class TableDesigner in my application. Accoring to the .NET Framework Class Library the requirement for TableDesigner class is NAMESPACE (!) System.Web.UI.Design.WebControls. In the assembly I should have "using System.Design;" statement. When I put it in it also gives me an error of the same nature that 'Design' is not recognized in 'System ...Show All
Visual Studio VS 2005 Beta 2 - "Beta period Expired"
I am trying to install the second beta of Visual Studio 2005 from the MSDN discs ordered from MS. After following the instructions for uninstalling VS.2005 Beta 1, I sucessfully completed the install of beta 2. However, when running Visual Studio 2005 beta 2, I get the error message "The beta period has now expired". Does anyone know what I have done wrong in the uninstall process of Beta 1 or how to get beta 2 to recognise this is a new beta Thanks Do you have a stack dump or an error message when Beta 2 crashes If you do, I can get the right folks to take a look. And there won't be a Beta 3 :) ...Show All
Windows Forms Ideas for simple kids games...
hit me... all the ideas you can think of for kids aged about 7-10 oldies, goodies any old favourites .... This forum contains questions and discussions about Microsoft's .NET Windows Forms controls and features. These posts should contain programming questions only. If you have questions or problems regarding a specific piece of software or Windows itself, please use the Microsoft Newsgroups . Any posts that are off-topic, will be removed. OTP ...Show All
SQL Server Identity column not returnd after AddNew / Update with ADO and SQL 2005
Hi, I add new records to a table with ADO. The tables contain an auto-increment identity column. I want to retrieve the identity value after the insert operation. This works fine for SQL Server 2000. On SQL Server 2005 this only works if I use a table in the select statement. If I use a view in the select statement, ADO returns no value for the identity column, a trace with profiler shows that there is no Select @@IDENTITY statement. What is the reason for this behavior How can I change this behavior in SQL 2005 so that the behavior is the same as in SQL Server 2000 Best regards, George Hi, ...Show All
SQL Server Merge replication 101
Hi all, I am trying to set up replication for the following scenario. Four satellite offices send changes daily up to a master database. Then, at the end of the day, the master database, which incorporates all the updates from the offices, sends an updated copy of the db back to the 4 offices; at the beginning of the next day, each office now has an updated db to work with. Merge replication worked to a point; I was able to have 2 of the 4 offices merge data up to the master db. So far, so good. But I cannot get the master db to replicate back down to the satellite offices. I have seen mention of updatable ...Show All
.NET Development Bug in Serialize() or design problem in .NET ?! Help!
I have an object which has a delegate (event) declared in it. When I try to serialize it with: MyBaseClass obj = someObject; MemoryStream ms = new MemoryStream (); BinaryFormatter bf = new BinaryFormatter (); bf.Serialize(ms, obj); I get: System.Runtime.Serialization.SerializationException was unhandled by user code Message="Type 'System.ComponentModel.ReflectPropertyDescriptor' in Assembly 'System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' is not marked as serializable." Source="mscorlib" StackTrace: at System.Runtime.Serialization.FormatterSe ...Show All
SQL Server WSDL Support in WebService Task
I have a wsdl file that SSIS says it doesn't support. What aspects of WSDL does SSIS not support. I can send the WSDL file to anyone that wants a copy, just use the contact me on my blog. This occurs with the webservice for the reporting services as well Item added to Product Feedback site http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=5c9df73a-0b04-4baf-b2d4-5db20fe5a09c ...Show All
Visual Studio SourceSafe auto create sub-structures?
This is a weird thing happened only on my workstation within the domain. (We only have 4 dev stations so far) Whenever I create a new project and added to the SourceSafe, it automatically creates the project in main root then another two sub-folders. For example, if I created a project called 'abc', then it'll look like below: $/ -abc -abc -abc_1 All the contents are put under 'abc_1'. If other developers have to checkout the project, they must go into the 'abc_1' and bind to that path. Does anyone experiencing the same problem The abc and abc_1 folders ...Show All
Architecture Need help on solution architecture employing BizTalk Server & MSMQ Server
Hi, I have a potential software project for a large ad composition agency. The requirement is briefly as follows: 1. There will be front offices located in more than a dozen locations across multiple states. These front offices would be posting requirements about advertisements to multiple back office located in some other country. Each front office would have about 10 users. 2. Each ad could be approximately 6MB in size consisting of metadata and graphic files. 3. There will be 3-4 back offices with about 200 users in each location. 4. Jobs posted by the front offices wou ...Show All
