Software Development Network Logo
  • VS Team System
  • Visual C++
  • Visual Studio
  • Smart Devicet
  • IE Development
  • Audio and Video
  • Windows Vista
  • Windows Forms
  • Visual Basic
  • Microsoft ISV
  • Visual FoxPro
  • SQL Server
  • Visual C#
  • Game Technologies
  • SharePoint Products

Software Development Network >> VS Team System

VS Team System

New Question

VS 2005 IDE Create SQL Store Porcedure like 2003 IDE
Problems when writing to textboxes from txt-file
Names of local variables in FxCop analysis output
Target database name
fatal error C1083: Cannot open include file: 'processcpp.h': No such file or directory
TFS Setup Throws an error 28002: unknown error
Can some one tell me how to find the default icon please.
Changing target assemblies on .FxCop project files from Visual Studio 2003.
More Warehouse problems
using visual basic to read until the last row of data in excel and display all into chart

Top Answerers

reichard
Chrissivo
Khalnayak
chionhhm
Kish_UNI
BrettDerry
Johnny Liverpool
anukirthi
mstoler
Vadimus
Seker, Sadi Evren
Only Title

Answer Questions

  • Reno How to backup of individual team projects?

    Hello, I am facing problem in doing a backup for each individual team project, the daily, weekly backup of the TFS as whole is already in place, but some situations require me to restore data of few projects and not the whole of TFS warehouse. Please help me out on this. Thanks in advance. For V1, the backups can only be performed at the Sql database level. G'day, As far as I know the feature you have requested (selective backup/restore of Team projects) is not in scope of v1 of TFS. So it appears that as of now we are to use whole database backups. Yours truly, ...Show All

  • roy-roy Does Edit and Continue work in VS2005?

    Hi all, I imported a VC6 project into VS2005, and I cannot get E&C to work - whenever I hit a breakpoint, the menu option is always greyed out. I have the following compiler settings: /Od /D "_DEBUG" /D "_WIN32_WINNT=0x0500" /D "WINVER=0x0500" /D "WIN32" /D "_WINDOWS" /D "_VC80_UPGRADE=0x0600" /D "_AFXDLL" /D "_MBCS" /Gm /EHsc /RTC1 /MDd /Gy /Yu"stdafx.h" /W3 /nologo /c /ZI /TP /GR /errorReport:prompt and linker settings: /NOLOGO /MANIFEST:NO /DEBUG /SUBSYSTEM:WINDOWS /MACHINE:X86 /ERRORREPORT:PROMPT WS2_32.lib Version.lib Winspool.lib Kernel32.lib and, Tools->Options->Debugging: Edit and Continue -> Enabled. ...Show All

  • Simon Telling Cannot execute a Build - TF42045

    I am getting "TF42045: A build for the team project: xxx is in progress on build machine: yyy. On each build machine, only one build can be active for each team project. Use a different build machine or try again later." and I can no longer execute any builds for the Team project. I have restarted the TFSBuildService and the build server, enabled tracing on the application server, which again logs the above message and there are no alerts in the event viewer. Can anyone suggest where I can look for this phantom build that is running I have also called the DeleteBuild web method in the BuildController to clean up previous build it that makes any difference. thanks in advance. I' ...Show All

  • KFrostILEM Changing scale of the virtical axis in load test result graph

    Hi. Does anyone know how to change the scale of the virtical axis in the load test result graph It seems to be always going up to 100, but that makes my results be all on the bottom of the graph. I'd like to change the scale, so the highest number is something like 40. Is that possible I can't find anywhere where I can format the graph. Thank you. Right click on a counter in the counter legend below the graph and select Plot Options... Then Uncheck the Automatically adjust range option and select the range that you want. For example, if you want the top of the graph to be equal to 10, then you select 10. The numbers on the y axis will still be 0 - 100. But 100 will correspond to 10. You can thi ...Show All

  • Sreekk Output of base.Problems collection

    I have a custom rule that loops through all the methods available and checks for a particular violation. If there is a violation, I use the below sequence to add it to the Problems collection Resolution resElement = base.GetResolution( "error string" ); Problem prbDescription = new Problem( resElement, "Class Name" ); base.Problems.Add( prbDescription ); I have the above set inside the loop and during the execution (debugging), I am able to see the base.Problems having the list of items that were detected for violation. During debugging, I am able to see the list growing as I add the violations to base.Problems At the end of the Check method that I have overridden, base.Problems is returned. But in the ou ...Show All

  • Speedie Save checkbox Settings

    HI again how can i save checkbox settings for example: default configuration is, if cehckbox is uncheked than program will initialize normaly, if is checked than will initialize minimized. Thanks ;P There are many ways. you can save it into an Xml configuration file, then read the value back at runtime/startup and act upon the value or save it in your settings (My.Settings) I've never used My.Settings but take a look at msdn.microsoft.com in the search box ;-) Thanks Dude !!! 'Create a setting called 'cb1' '(Double click on the solution explorer window, 'My project') 'Find the 'settings' tab. 'Name = cb1, Type = Boolean, Scope = user, Value = False 'On a form with 2 button ...Show All

  • Taylor Meek Application failed to start, mspdb80.dll was not found error !!

    I stopped using Visual C++ Express Edition for a few days after it was working fine.  I came back to it today, opened some programs in a text editor that I had gotten from a tutorial, and tried to compile and run them on the command line using "cl /EHsc [filename].cpp".  I have done this many times in the past with the same exact files, in fact, and I have never gotten this error before. [cl.exe - Unable To Locate Component] This application has failed to start because mspdb80.dll was not found.  Re-installing the application may fix this problem. I have not deleted or moved any files since my last use, so I don't know why this is happening.  Re-installing VC++EE doesn't help either.  ...Show All

  • David Mc Quillan image with grid coordinates?

    Hi, Is there any way to define an image with grid coordinates in order to use the mouse over event Ken I would like to define half of the image into a grid of 32 boxes. I would then assign each box to a PLC input and when a box is selected I could either turn that bit on or off. could you demonstrate a discrete x-y pair related to a picture box I'm using a form with nine images (picture box) on it. Could you demonstrate the mouse down event using a set of coordinates, which defines a small box area sure ... that's easy ... brb consider either a panel or a form with a m ...Show All

  • IceAngel89 about declaring parameters(using wizard)

    hi there!! i have a problem regarding declaring parameters(using  dbase wizard)... in using code what i mean is manually coding to create a connection into dbase i can easily do that by setting up a paramter ("select * from table where column = @data ",conn)... because wizard is the easiest and fastest way(to bound the dbase into textbox and combobox[ Detailed view ])...how can we declare parameters  i can create a filter but instead of paramters i used data name  e.g (Select * from table where column = 'data') i want is to change the 'data' into paramters so that the user can easily navigate or search what the user wants.... thanks in advance pinoyz, ' Build a select clause for the selected fields. Private Fu ...Show All

  • Cameron D Team system developer vs test

    Hi, I'm choosing which version of ts is right for my c# team. I'm choosing between developer and tester. Tester has more test type on it. I didn' t find what feature the developer edition hasn't comparing to tester. Reading the docs I see: Dynamic Code Analyzer Static Code Analyzer Code Profiler 1. Dynamic code analyzer: It's difficult what those feature really is and where to find them in the IDE, maybe something relevant to c++ devs. 2. Static Code Analyzer: Solution explorer->my project->Properties->Code Analysis->Enable code analysis. This feature is also present in tester version 3. Code Profiler It's seems that this maps to the profiling tool. (menu Tools->Performance tools) ...Show All

  • Terry Lewis Change button image on MouseClick

    Hi. I've managed to change the button's image when it's clicked but want it to automatically revert to the first image after the second image displays. I.E. A custom button with an image. When the button is clicked the image showing the downstate of the button appears, a short.wav is played then the initial image of the button's upstate is displayed. Thanks for any help. Private Sub Button1_Click ( ByVal sender As System .Object, ByVal e As System . EventArgs ) Handles Button1 . Click Me . Button1 . Image = ButtonDownImage Me . Timer1 . Interval = 2000 Me . Timer1 . Enabled = True End Sub Private Sub Timer1_Tick ( ByVal sender A ...Show All

  • Jahangeer Error 403 - Forbidden When Trying to Verify Operation After Restore

    I've just been through the steps in the "How to: Move Your Team Foundation Server from One Hardware Configuration to Another" document to move my Team Foundation Server - Workgroup Edition from one machine to another machine. However, when I browse to http://localhost:8080/WorkItemTracking/v1.0/ClientService.asmx  to verify operation, I get Error 403 - Forbidden - You are not authorized to view this page. In order to find out where the link above stopped working, I ran the procedure on another machine and periodically checked the link. The link gets broken after the command "tfsadminutil activateat newteamfoundationappliationtierservername" Note: This is a single server deployment moving to another single server dep ...Show All

  • Danny Tuppeny Publishing VB Express For Windows ME

    greetings, I published my VB Express program, burnt to CD, and went to install the program on Windows ME. I first installed .Net Framework 2.x and Windows 2.1 Installer. When I tried to install the VB program, it tells me that Windows Installer 3.1 is required. SO, I downloaded Windows Installer 3.1 and tried to install it on the ME computer. It will not not install on ME. I get a message saying I need to install a Windows 2000 Service Pack. I don't have 2000, I have ME! How can I publish a program that will work on Windows ME and Windows 98 If Windows Installer 3.1 is required in order to install a VB Express program, how can I get the prerequisites installed on 98 and ME 98 and ME won't accept 3.1 Installer. What can I ...Show All

  • dnzone Chronometer!! and alarm

    Hey there, please help, I'm trying to create a chronometer within my application... I need it with this format "hh:mm:ss"... and also when it get's to 3 minutes it must display this "Succes" Now... I'm using a timer to do all this, but in order to get the time at the moment I'm using this code... Dim Timex As Integer = CInt (Format(Now, "hhmmss" )) But I think it's wrong cause when I'm going to set the ChronLabel I'm using this: ChronLabel.Text = CInt (Format(Now, "hhmmss" )) - Time so what should I do, please help!!! Here's a simple example. Public Class Form1 Dim Start As DateTime ''' <summary> ''' Set t ...Show All

  • John Luke outputDirectory doesnt seem to work

    Hi All, FOr a test project I have in VS2005, I hand edited my locattest.testrunconfig to have the following: <key type="Microsoft.VisualStudio.TestTools.Common.DeploymentItem"> <path type="System.String">cfg</path> <outputDirectory type="System.String">cfg</outputDirectory> </key> Per my understanding that should copy over the cfg folder in my SolutionDir to the Out/cfg folder in TestResults, at the end of the test. Unfortunately it copies over the _contents_ of the cfg folder into the Out folder (no cfg folder created). Am I missing something very basic here Any help would be appreciated. Thanks. AM Hi David, Thank ...Show All

626364656667686970717273747576777879

©2008 Software Development Network

powered by phorum