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

Software Development Network >> VS Team System

VS Team System

New Question

How do I: add favorites? History?
Error while testing classes
I need some help creating a simple dll
Visual Web Developer Express Fails to Complete Setup
ASP.NET Web App Configuration Tool - TIME OUT
Cannot see an attribute from the schema as a field in class
Sample code for getting the global list from server?
Rotating text on output of printer?
Will record & playback try to perform in same duration?
reset work items refnames - delete project?

Top Answerers

Acco1953
Koray Samsun
Pete Atkinson
Vjy
John.Doe
CrystalDeveloper
Paul Burg
TianHon
Anne_rangjin
Arjun B
CodeSynthesis XSD
Only Title

Answer Questions

  • chubbysilk Log of activity

    As reported in another thread I am havig big problems with a DBPro project that has thousands of objects in it. Even opening the solution containing project takes tens of minutes. Sometimes this step just hangs and there is no way of knowing about it. Is there an activity log for Visual Studio that tells us what is going on under the covers I'd like to know that it is still doing something.   Currently VS is telling me that it is "Updating source control status...". Its been doing this for about 22mins now with no other information or visible activity. Activity stopped getting logged in SQL Profiler 22mins ago. My source control system is TFS. There are some entries in the eventlog indicating that I opened this soluti ...Show All

  • brent.xml Default Schema

    I'm working in a project which contains around 20 schemas. When adding a new object such as a table or stored proc, I find it incredibly frustrating to have to open the project properties to change the "Default Schema". Especially when the project decides to serialize, sometimes causing a delay of up to a few minutes. Is it possible to define which schema you want an object to belong to at the time of adding it, without having to change the Default schema That doesn't change the name of the file in the solution explorer though. That's true. If you work primarily in Schema View, you could simply ignore the filename being out of sync with its contents, otherwi ...Show All

  • Arun C Assembly in source project - CTP7

    In my database I use the new feature of CLR functions and procedures. Therefore I got one assembly in my database, which hosts all functions etc. I now created a project and imported my database schema. Alle worked fine. Now I changed the assembly (e.g. added some functions and uses alter assembly with nocheck) and made a scheme compare from database (source) to source project (target). But all CLR functions caused an error: Assembly not found. So I deleted the assembly file in the source project and did a schema compare again (and yes, I pressed write updates both times), but the assembly is not created in any way. When I right-click new in the source project, there is no option to create an assembly file. So my question is, if this compa ...Show All

  • ChasAA coding help

    Public Class Form1 Dim ans As String Public Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'whatever is in here will be executed when you start the program' End Sub Public Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click 'whatever is in here will be executed when you press the button 1' test() 'this gives me "test is type and cannot be used as expression" ans = InputBox( " thats it" ) End Sub Public Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click End Sub End Cla ...Show All

  • DavidSB Using MS Project Agile Software development template in TFS

    Hi, I am using MS Project template for Agile software development to manage the projects. Is there any way to integrate the same template in team foundation server It has 5 phases in the MS Project template. Can I seperate the work items based on these phases in the MS Project and publish it to the TFS so that all work items will be created correctly or can I get workitems from TFS into MS Project as the template I am currently using Thanks and regards, I think I don't get the question, but I will try to answer. Yes, you can integrate the template in your process, you can moidy the project creation template of TFS, and include your project template on the document libraries in sharep ...Show All

  • M. Simioni transparent form borders like vista

    I am trying to make a form that has a vista form appearance. The header/border for example has some transparency and the rest of the form is normal. It looks nice. Can not quite seem to get it to work. May try overlapping a borderless form on a semitransparent form somehow. Anyone done this yet It's the same code in VB s in C#. You can use an online converter such as http://www.carlosag.net/Tools/CodeTranslator/Default.aspx to get familiar as to how code converts (it's a benefit to understand C#, anyway). hmm link didnt appear here it is http://www.codeproject.com/useritems/How_to_make_VistaForm.asp I also fo ...Show All

  • Chuck Cobb = and != operator

    Hi everyone, In C++ while using == and = operator, if we do not overload them, while using for our classes that we create, does it cause to any compilatio error If not, would you please explain that how the compiler make comparison between objects When we use = operator, if we do not overload copy constructor, what does happen Thanks If you don't define the == operator for your class you get a compiler error. If you don't define the = operator or you don't define the copy constructor the compiler will do a bitwise copy of the object. Note that operator = and copy constructor are not the same thing. The = operator applies to a = b; while the copy constructor applies to A a = b; ...Show All

  • prog.gabi DataReader from VB to C#

    Hi! I want to ask you how to translate this. when: Sql DataReder dr; dr = cmd.ExecuteReader(); dr.Read(); VB: txtBox.Text = dr("Name") C# txtBox.Text = dr("Name"); // this ends Error! This DataReader is handled like the method but why VB makes no Error Thank you! but, in shamefulness, I am sometimes such a mistake and stumbling. I want to disappear... Hi, In VB dr("Name") is a shortcut for dr.Item("Name"). In C#, the equivalent is dr["Name"]; Charles ...Show All

  • AndrewVos Code coverage is not enabled for this run

    Hi, Previously I have successfully perform a code coverage of the code being tested. However, after I tried to log in to the TFS with another account I could no longer perform the code coverage even after I logged in to the TFS with the original account. The message shown is 'Debugging tests running on a remote computer or with code coverage enabled is not supported. The tests will run under the debugger locally and without code coverage enabled.' Regards chionhhm Dear all, I have the problem resolved. It was a very silly mistake on my side. I run the test in the debugging mode which would not support code coverage. Regards chionhhm Good quest ...Show All

  • Joris Valkonet How to capture & validate server response message?

    Hi, I have to test a .Net application that has uploading features. On uploading the incorrect spreadsheet, the server will throw this error message as response " abc@xyz.com " has duplicate entries in the Excel Sheet. Please validate and upload again. Pls let me know how it can be captured and validated. Thanks in advance - Vijay. Hi, Yes you are exactly right. it seems, my document is not getting upload on playback. There is a difference between recorded and playback in some cases. You suggested some tools like, fiddler,..Will it be a solution for this Thanks - Vijay. There is a Find Text Validation rule that you can use if this text is displ ...Show All

  • Andr&#233&#59; Dias How to get data From TFS Work Item field!

    Hello, I am working with TFS using ASP.NET, c#. I would like to get Data from TFS for those work item depend on workitem type is bug, Scenario, task, ... State ( Active, Closed...), Type (API, High level Requirement, Security...), Triage (Approved, Investigate..), Priority(1,2...), Severity(Critical, high,...), discipline (Architecture, development...). Is there any API to do this or is there a way to do this at all Please help! Any answer would be greatly appreciated. Thanks in advance. Ddee Hi, The system fields i.e [Core Fields] can be only accessible when your offline i.e you are not connected to the TFS and any project. The field you are referring is M ...Show All

  • Jacco Mintjes TfsWarehouse Database not updated with all custom work item fields

    We recently uploaded a new template with some additional fields for workgroup types. In the TfsWarehouse Database, in the WorkItem table we noticed there was a column for each of our older fields but not the new ones. We've manually Processed the warehouse, even deleted the TfsWarehouse from the Analysis Services and reimplemented it using the SetupWarehouse.exe Utility with no luck. The stored procedures in the TfsWarehouse database take in our old fields apparently as parameters, they just aren't picking up the newer ones is all. Any ideas on how to make TFS and the TfsWarehouse Database pick up these new work item type fields Thanks so much! Christopher Hi Christopher, Every time the Wareho ...Show All

  • VoiceOfExperience Deleted Folder still visible- Can't remove

    I deleted a folder. Other users can't see the folder but I can. I checked and unchecked show deleted items just to be sure. I did Get Latest and Get Specific version on the entire project (with force get). I did refresh on the tree. I restarted the IDE. Still shows the folder after that. Well, it's not SCE's fault. The server thinks you still have an old (non-deleted) version of the item. Running Get should fix it. What about if you select a new, empty workspace from the SCE dropdown (if that doesn't work, I'm out of ideas!) Have you tried to find if the checkbox to show deleted items is 'checked' in your team edi ...Show All

  • ferdesceline Control Download and Upload

    I want to develop an application which enable the user to control download and upload feature. The question is 'How to control FTP ports, and how to disable downloading and uploading in Windows using VB.NET ' http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1297947&SiteID=1 adds a progress bar and works perfectly. http://msdn2.microsoft.com/en-us/vbasic/ms789075.aspx Base Class Libraries - Group 1 Samples The Base Class Library Group 1 samples show how to use the classes in the namespaces System.Net, System.Text.RegularExpressions, System.Transaction, System.Console, and more. Samples include: Changing ACL (Access Control Lists) on file ...Show All

  • Saptagiri Tangudu Newbie help; Comma seperated numbers

    As of 3 week ago I’m fresh off the turnip truck. I’ve been creating a program that does some calculations based on SQL input and using tts. Problem: tts needs a comma separator in order to say one thousand. I have a TextBox8.Text the tts reads from. I’ve looked and tried, but I’m just not getting it. How can I get this textbox to give comma separators Dim EigthTextBox As Integer Dim Result5 As Integer Try EigthTextBox = TextBox8.Text TextBox8.Text = Result5 Result5 = "" Catch End Try PS: I’m amazed at what I’ve been able to learn from your posting answers. Trucker wro ...Show All

131415161718192021222324252627282930

©2008 Software Development Network

powered by phorum