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

Software Development Network >> VS Team System

VS Team System

New Question

Webbrowser icon problems
Recovering from a CTP6 bug
Background Worker Cross Thread Help
Having trouble - Output parameter
DataGrid Master Detail Question
TypeConvertors, arguments, units
30 day Free Trial
VB6 to VB2005 compile errors
URL?
Programs using different versions of excel and outlook

Top Answerers

Ken Villines
Misbah Ahmad
Olexandr
Mallyk
Wasif235288
laja
jvnb.kiran
Dave Waterworth
mobigital
Russell81
sitemap
Only Title

Answer Questions

  • aybe FxCop 1.35 skipping Structs

    While analyzing the NodeType the FxCop 1.35 is skipping the Struct which itself is a NodeType. I tried the following code while overriding the Check(NodeType) but still the structs are not getting trapped public override ProblemCollection Check(TypeNode type) { if(type == null) { return null; } switch (type.NodeType) { case NodeType.Class: return Check((Class)type); case NodeType.Interface: return Check((Interface)type); case NodeType.EnumNode: return Check((EnumNode)type); case NodeType.Struct: return Check((Struct)type); } return base.Check(type); } I tried one workaround for this by overriding the Check(Module) method and checking for each type. There I can trap the Structs. But problem with this ...Show All

  • AndyPham SortedList Strange Behaviour

    Or maybe, just a strange coder The code is below. I have put two mark in where you should break. Also a Stop before where the problem appears. This code does run. If you iterate thru the breaks, you can see that the Tmp variable has the correct value at each iteration. The key is also correct. and the SortedList (Temp1, Temp2) show correct values at each break. But ... When I attempt to iterate thru the SortLists using For Each, every value returned is THE LAST VALUE inserted into the SortedList. This might be the last value entered in Temp1 or Temp2 (depending on which was the last one added). That is: both SortedLists seem to be pointing their 'value' to the same place in memory ( ) The keys are returned ok. It is just the ...Show All

  • AlucardHellSing After applying TFS SP1 Beta reports present only vertical lines

    On the "Remaining Work" report - numbers of Active/Resolved/Closed work items are all constant making vertical lines (history of change has been lost). Here is another problem after applying SP1: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=825531&SiteID=1&mode=1 hi there, are there any errors in the event log can you please let me know on the work items report, does that report show the correct current state of your work items thanks, mauli Yes, you are right. This error was resolved together with NullReferenceException! Thank you very much for help. I believe this issue will be resolved when the Nu ...Show All

  • SharathMum Total Troublesome

    Happy New Year VB Programmers!!!! Im having a few probs with this one: Private Sub ItemsDataGridView_RowLeave( ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles ItemsDataGridView.RowLeave Dim i As Integer Dim total As Double = 0 Try For i = 0 To ItemsDataGridView.RowCount - 1 ItemsDataGridView.Item(3, i).Value = ItemsDataGridView.Item(0, i).Value * ItemsDataGridView.Item(2, i).Value total += ItemsDataGridView.Item(3, i).Value Next textbox1.text = "£" + total.tostring Catch ex As Exception MessageBox.Show( "Error With Calculation, Please Try Again" ) End Try End Sub Ive put this code on my ...Show All

  • harkat1 WHAT IS INCLUDED IN VS For Software Architects and VS for Softwware Developers

    Can anyone point me to documentation as to what actual software is included with each of these subscriptions Needless to say, this has to be the most confusing and insane change Microsoft has made to date. Unbelievable. Is the confusion on purpose We just want what we had previously but can't even determine how to get that. Is the goal to push developers toward Java/Linux Hi Jean, William provided a great link to start your research. What exactly did you have before Have you had a look at: http://msdn.microsoft.com/vstudio/teamsystem/products/compare/default.aspx As with any radical shift there is bound to be confusion and some of this has been a result of Microsoft responding to ma ...Show All

  • nattylife After Rebuilding, I got an error Http internal Server error 500

    I did do a rebuild like this. 1) rebuild C:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Tools>setup warehouse -rebuild -s kwonlee01 -d Tfswarehouse -c warehouseschema.xml -a kwonle e01\TFSService -ra kwonlee01\TFSReports SetupWarehouse: Warehouse updated successfully. C:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Tools> 2) run inetmgr 3) http://localhost:8080/Warehouse/v1.0/warehousecontroller.asmx 4) http://localhost:8080/Warehouse/v1.0/warehousecontroller.asmx op=Reinitialize 5) Click invoke button then, It shows Http Internal Serve Error 500 What should I do and What did I miss thanks Kay (+) Tfswarehouse was not read-only mode .     ...Show All

  • dmc7198 forward Engineering - Which Databases

    I am new to VSTS andVisio 2003 Pro - I have a current diagram created in Visio and I want to forward engineer into SQL - I am using Books online and it instructs to Select UML>Code from the menu - I see the UML but not the CODE in the menu - Why. I downloaded the trial version of Visual Studio Team System - is this something I should be able to do or am I doing something wrong. k Code generation is not available in Visio Professional - you will need to use Visio Enterprise Architect for that. Regards, Ian Bavey Software Development Lead Team Architect I don't have first-hand experience using MySQL, but the Database Modeling solution within Visio Enterprise Architect will wo ...Show All

  • Werner Clausen Updating Data, take 3...

    I am amazed at how difficult it has been trying to figure out how to update data. Please help me!!!!!!!!!!! Here is my attempt to update a data table with an update command: Dim oCon As New OleDb.OleDbConnection( My .Settings.FantasyConnectionString) Dim oCommand As New OleDb.OleDbCommand Dim oAdpt As New OleDbDataAdapter oCon.Open() If IsBench = False Then strSQL = "UPDATE Table1 SET Field1 = 1 WHERE ID = 1" oCommand = New OleDbCommand(strSQL, oCon) oAdpt = New OleDbDataAdapter(oCommand) oAdpt.UpdateCommand = oCommand oAdpt.Update( Me .DataSet1.Table1) dt = me.DataSet1.Table1 I put a break just after the last line up there to see if my changes were made ...Show All

  • TjMulder Still Problems Muting

    i was givven this code a day or so ago to mute the computer .... i have tride and tride and tride but cannot get it to work Public Class Form2 Private Sub PictureBox1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click My .Computer.Keyboard.SendKeys(Keys.Volumemute) End Sub this is the link to the Orig post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=531900&SiteID=1&mode=1 I understand your reluctance but I don't know of a better way so it will be news to me. Seriously...if you don't find another solution try this one...it really only requires copying ;) I appriciate the help but that is WAY confusing i wouldnt know were to ...Show All

  • Magnus Sthlm tf.exe gets stuck doing a Get from a label

    I'm trying to get a system set up using FinalBuilder ( www.finalbuilder.com ) to automate a complete product build. I'm running into a problem doing a Get from Label in the FinalBuilder project - sometimes (most of the time, actually), tf.exe gets stucks after getting all of the files and fails to terminate currectly. (By stuck I mean that the process continues to exist, is consuming no CPU time and performing no I/O operations). Now, there's every possibility that this is really a FinalBuilder issue (and I've inquired on their foums as well), but I thought I'd ask here in case anyone knows of any reason why tf.exe might "hang" after getting a bunch of files. It "smells" like tf.exe is waiting for console input, ...Show All

  • curiousss RichTextBox Color Problem

    Hello everybody, I'm building a code liner (similar to cmd) but with words in different colors (just like in Linux). The following code I use to color the: txtLiner.Text = txtLiner.Text & " Failed!" txtLiner.Select(Len(txtLiner.Text) - 8, 10) txtLiner.SelectionColor = Color.Red txtLiner.SelectionStart = Len(txtLiner.Text) MsgBox( "test" ) txtLiner.Text = txtLiner.Text & vbCrLf & "Err: " & Err.Description MsgBox( "test1" ) The word Failed must have the color red. In the run mode when it displays the word failed and the msgbox the word is red but then the second line and the second msgbox is displayed the whole text including the word failed is black again. K ...Show All

  • MarcoB Unit testing: Trouble with code coverage for dll in GAC - Work around

    Hi, I have a Solution with 2 projects: project A: class library project B: test project with unit tests for the code in project A. The testrun is configured for code overage for project A. Because the output-dll of project A is used in various solutions, the dll is registered in the GAC. Running the unit tests and debugging the code in project A works fine (despite the fact that the dll in the GAC is used), but when I look at the Code Coverage results I get the following error: "Empty results generated: none of the instrumented binary was used. Look at test run details for any instrumentation problems." The error is caused by the fact that in the test run the dll in the GAC is used, instead of the dll in t ...Show All

  • old dog code not associated with a button

    I need to have code that collectes UDP frames from another computer (port 1234). I found some examples but the code is not part of a button. I have yet to find anything telling me how to add code that is not associated with a button. The code example is here: http://www.codeproject.com/vb/net/Silence_Socket.asp But it does not tell me where in the project/solution to put it. What window do I open and how do I open it How or what starts running the code Thanks for your time Hello Aw Ali, I am rather favorably impressed, you have anticipated my next action and the resulting question.  In light of my lack of knowledge do need to refine the question a bit. Post Post Edit:, I am editing ...Show All

  • Davids Learning How do I add an Image to a Form

    I am a newbee to Visual Basic Express Edition and altough I am proficient in MS Access I encounter many problems in VBEE. Thanks for your answer nobugz but I was unable to find <e.Graphics.DrawImage()>. Could you please be more specific. Use a picturebox control and then the from file method of the image class : Me.PictureBox1.Image=Image.FromFile("C:\MyImage.jpg") Hi Nobugz It has been a while but I was not idle. The Bridge Screen I have mentioned, has been created but in V.B 5.00 this time. I will include the source code, it will be the *frm part. Maybe you can give me some hints in how to convert it to Visual Basic Express Add the Paint event handler ...Show All

  • aguess Fields set to read only may be changed in Excel

    When I mark a field <READONLY /> in the work item type definition it becomes read only in the gui, but if I create a list in excel the field may be edited. How do I set a field so that it is read only in excel as well, like the ID field Thanks Never mind, I had two projects open and was looking at the wrong one. ...Show All

101112131415161718192021222324252627

©2008 Software Development Network

powered by phorum