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

Software Development Network >> VS Team System

VS Team System

New Question

Team Foundation Server single server install woes
StreamReader, StreamWriter, Being used by another process.
problem getting started
Matrix implementation problem
Assertion Worked in CTP 6
Storing Stuff
System.Net.ConnectStream?
copy file from website - authentication
custom work item fields
Adding Tcs to VSTS

Top Answerers

Yousef ED
Matt Stum
sqldummy
pidnas
MMMalik
markbate
Tobias Hoff
SoulSolutions
sciFiFan
Yaakov Ellis
sitemap
Only Title

Answer Questions

  • TABLO Upgrade problem : "TFS sql server exists and their schema doesn't match..."

    Hi upon trying to upgrade to RC I encountered a problem : "TFS sql server exists and their schema doesn't match the version expected by setup" how do I workaround it all the upgrade steps went fine until this one.... 10x, guy The TFSUpgrade step upgrades the database. Here's a snip from the outline. Single Server Deployment 10 Step 1: Download the Upgrade Software and Run the TFSUpgrade Tool 10 Step 2: Uninstall Team Foundation Server Beta 3 Refresh and Team Explorer 10 Step 3: Back Up Team Foundation Server Databases . 11 Step 4: Run the TFSUpgrade Tool 12 Dual server is similar, but there are more steps bef ...Show All

  • Andrew Sims problem:update datagridviews in master details application

    I've created a master/details application by vb2005 and access: choosing un item in listbox, relative data are displayed in datagridview. Problem:a cell loses the value inside and replace it with last put value. example: in listbox I've 2 item: A,B (id_padre) datagridview has 4 columns:id_figlio,id_padre,nome_figlio,cognome_figlio where first and second are readonly. I select A in listbox, I put some data in datagridview and so I have: id_figlio| id_padre| nome_figlio| cognome_figlio| 0 0 0 0 1 0 1 1 2 0 2 2 I select B in listbox, I put some data in datagridview and so I have: id_figlio| id_padre| nome_figlio| cognome_figlio| 3 1 5 5 4 1 6 6 5 1 7 7 If I select A now , datagridvie ...Show All

  • Henk B VB.net Adding columns values for all rows

    Hi, Can someone help me out I need to add, for all rows in a DataSet, the values of one specific column . I'm using TableAdapter querys. Can anyone help me Regards, Pedro not sure what you mean. the TableAdapter will fill a dataset/datatable with data and from this you need to calculate the values I'll try it later... Can this be done using a TableAdapter query Pedro Hi, Besides Fill method, I can create new querys. With a new query, I can use SQL statements to achieve what I need (add ). I don't know how the sintax for this SQL need... do you mean add as in calculation if so sure... Dim resu ...Show All

  • HMote Inserting a coded panel into a non coded panel?

    I have a panel which I have made on a form and I a few that I have coded, I would like to insert these ones onto the one I made on the form. Is there a way to do this An example Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim x As New Panel With x .Name = "Subpanel" '//Set some properties of the subpanel .BorderStyle = BorderStyle.FixedSingle .Height = Me.Panel1.Height / 2 .Width = Me.Panel1.Width / 2 End With Me.Panel1.Controls.Add(x) End Sub End Class Instead of adding to the forms control collection. ...Show All

  • Sean Connolly Team Build with Multiple Projects fails to build.

    I have Project Solution containing 3 Projects 1. Web Service Application.[refers some 3rd party assemblies] 2. Class Library Refered by Web Service Applicaion. 3. Test Harness Project depending on Class Library. It successfully compiles on TFS Server using IDE. But when i try to build this solution using Team Build it fails. It fails saying cannot find " OBSBusinessRuleFunctions.dll " which is 3rd party Assembly. I have tried various options for Build like 1. Any CPU [This build successfully but doesnt copy web services related files and Assemblies.] 2. .Net [Fails to build stating cannot copy few of the assemblies...error message: error ASPCONFIG: Could not load file or assembly 'OBSBusinessRuleFunctions, ...Show All

  • ACCOUNTINGONLINE.US Disabling the vertical scrollbar from a listbox

    Any suggestions on how to would be greatly appreciated! If you have enough elements that can't be displayed without a scrollbar then setting it to false will result in a scrollbar appearing on that condition. If you set it to true the scrollbar will be visible but disabled even though it really doesnt need to be there as all elements are visible without it. When you say disable the scrollbar - do you still want the control enabled but with no scrollbar. It would seem its standard windows behaviour to display a scrollbar if required (hence why would you want to disable it) I'm sure this suggestion will offend many of the purists round here, but you could just sti ...Show All

  • markmcgookin Best/Simplest way to save user input for my program

    I have just about finished my first program. It consists of 4 forms, each form with a multitude of text boxes and buttons. Basically this program is going to keep track of some numbers for me by deducting 1/0.5 (depending on which button is pushed) from a total entered at the beginning of each week. Ive got all my buttons etc doing everything I want them to do but I've come across a major problem, when I close my program all the numbers disappear, I don't know how to save my user input (the numbers in my textboxes) I don't need to keep any history or anything of these numbers. I just need the program to remember the numbers that it is up to when i close it so that I can carry on deducting from them the next time I open the program. At the ...Show All

  • barkingdog Delete team project and remove from SCE?

    I deleted two team projects one got removed from SCE and one didn't How do I get rid of the one that didn't and why did one get removed and not the other I understand there is some sort of bug related to this but why one and not the other and there must be a way to get rid of that one that is left right If not do we now know if this is fixed in SP1 As you know, nothing can be permanently deleted. IIRC, projects created by CreateTeamProject() API cannot be deleted at all, while projects created by the Project Creation Wizard can at least be removed from sight by tfsdeleteproject.exe I used TfsDeleteProject. I reset IIS. I don't think there were ever any proje ...Show All

  • BriceGuy Disabling the vertical scrollbar from a listbox

    Any suggestions on how to would be greatly appreciated! This worked for me: Public Class MyListBox Inherits ListBox Protected Overrides ReadOnly Property CreateParams() As System.Windows.Forms.CreateParams Get Dim cp As CreateParams = MyBase.CreateParams cp.Style = cp.Style And Not &H200000 ' Turn off WS_VSCROLL style Return cp End Get End Property End Class What is &H 200000 Set the ScrollbarAlwaysVisible Property of ur Listbox to False It is WS_VSCROLL, the window style bit that enables a vertical scroll bar. You'll find these style bits defined in WinBase.h in the Platform SDK's include folder. As requested, same code but in C#: using System; usi ...Show All

  • Allen White Display a form

    Hi, I am having some trouble displaying a form, I have done it many times before but this time it is not working: here is my code: helpform frm = new helpform(); frm.Show(); and come up with the following errors: Error 1 The type or namespace name 'helpform' could not be found (are you missing a using directive or an assembly reference ) Error 2 The type or namespace name 'helpform' could not be found (are you missing a using directive or an assembly reference ) Any Help well, do you have a form called helpform This is one of the reasons why it will throw the error, or the fact that the form is in a different namespace or even the typing errors, C# is case sensitive: so helpform is different to He ...Show All

  • Smitha R VS2005 Team Edition for Developers or VS2005 Professional with TFS CAL?

    I've been looking at the costs of moving to Team System and specically Team Edition for developers on the client side. I've been comparing this with VS2005 Professional with a TFS CAL. To get Team Edition for Developers with MSDN Premium would cost me around £2500. This would obviously give me Team Explorer for TFS integration, unit testing, code coverage and performance, static analysis etc. etc. On the other hand purchasing VS2005 Professional with MSDN Premium would cost me around £670. Now if I want to use this with TFS I can get a TFS CAL for an additional £165, install Team Explorer and I have the new source control, work item tracking etc. that TFS gives me. This would cost a total of £835. Doing it this way means I am missin ...Show All

  • kts Remote communication(Look at home computer from internet)?

    I am building a program that is used in the home. It will gather some info and save it in files and such. But I am looking to let the user look at some of that info via the internet. Through our website(that is not started yet). I have worked with TCP/IP connection on VB6. The users compuer will most likely be on a dynamic IP as well. I really am not sure what ports would be best or really where to start. Any help would be appreciated. I have done a search but I couldn't find anything. Sorry if this is a dumb question.. Thanx in advance.. RealVNC and TightVNC are the classic freeware remote access programs. I use RealVNC, it works well. The problem is that you'll need to be able to locate th ...Show All

  • Matt_ Did my install of SP1 "take"?

    I just installed SP1 for Visual Studio Express C#. The install only took about 5 minutes (or less). I read where sometimes the install takes much longer so I am wondering if the install was really successful (despite the message from the installer saying that I am good to go). Is there a way to see if the service pack is installed on the help > about dialog Mine reports (SP .050727-7600) Thanks! looks like its installed fine. since the express editions are small editions of the Visual Studio 2005 full version, you would no doubt expect a smaller file size as well as a lower installation time. ...Show All

  • Raj127799 Sharepoint vs. Version Control

    I was doing some contemplating this afternoon and I started to think about Documents in a project. Team System lets you store all kinds of documents in a Sharepoint portal which allows you to check them in and out. So it has a basic version control functionality. Besides having the document available to anyone on sharepoint is there any other good reasons to have documents in Sharepoint instead in the projects Version control Does it make a difference Does sharepoint use the same data base as Version control Which would be faster and/or more efficient There's one consideration that comes to mind, which may or may not be a factor. In addition to "internal" documents (specifications, etc), there are also " ...Show All

  • gogrizzlies MaskedTextBox Help

    Hi, im having trouble with the 2 questions below. I have searched everywer for the answer, but couldnt find it!!!! so if ny1 no's the answer, please help! Question 1: I have created a button and a text box, and I want the buttons function to be "onclick, insert ^1 into textbox". how can i do tht Question 2: I have created a button and 2 text boxes, and I want the buttons function to be "onclick, copy text from text box 1 and paste it into textbox 2" + some extra text I want to show e.g. i want "Hello" to be copied from text box 1 and pasted into textbox 2 with "I am saying" text showing before the Hello I would realli appreciate it if some1 would help!!! ...Show All

707172737475767778798081828384858687

©2008 Software Development Network

powered by phorum