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

Software Development Network >> VS Team System

VS Team System

New Question

problem with details view from database
Closing a socket
Error: "No Visual Studio template information found"
libcimtd.lib not found
Buttons on a web page...
How to navigate to specific record in dataset from textbox
Connecting Remotely to Team Foundation?
TableAdapter Query based on a form field
Club starter kit issue
Command line tool to generate .SDM file ?

Top Answerers

UnKnown Nick
Niehls
baysurfer
ngaisteve1
JackStri
alphonso
Shahid Mahmood
kawano1h
JRMcFetridge
Jarod.Net
Battles, Brian
Only Title

Answer Questions

  • ONEWORKNGRL Performance Problem #2

    We've got a project with 3200 objects. The project contains about 10 errors. When we attempt to double-click on one of the errors to bring up the file, Visual Studio will hang for anywhere between 3 and 10 minutes. The Task Manager shows 'devenv.exe' consuming about 90% of CPU resources for this entire time. We're using the RTM version of DBPro. Amos. Just to provide you an update on this. We identified this issue, we have created a fix and are testing all permutations of interaction with source code control right now. I will keep you posted. For people who experience the same problem, please contact our product support services at 1-800 936 5800 to open a support case, this is the only way we ...Show All

  • kkos Running Programs in Vista

    Im about to install Windows Vista on my PC . I want to know if my code will still work, especially code that gets information from the registry and the system. Wish me luck... works fine here, but Delphi apps dont do aything when they are run on vista :( If i use Virtual PC to install Vista will it still hog my PC's resources How does Virtual PC even work It took 3 hours but Vista installed ithout a hitch, so far so good. When i run VB2005 i get an error saying: The proper type library could not be found in the system registry. An attempt to repair this failed because you do not have the permissions to write to th system registry or because the type library c ...Show All

  • Andy Britcliffe LoginForm1.vb problems

    I am a new coder (only been doing it for a couple of months) and I am having some trouble with the templete LoginForm1.vb in Visual Basic Express Edition. I can't figure out what code I need, nor am I really sure of the way to go about using the form. I've done some looking on the MSDN Library but all they have their is logins for web applications. Since what I am creating is a windows app then this doesn't help me. If I could get some help in really simple terms that would be great. I've also looked at some other posts on this forum concerning this problem and they didn't help me too muchl I've only had VBExpress a short while too but  I still don't know how to make the user name bit but I thin ...Show All

  • Alba Console Application

    What can you do with a console application ... have really no idea Can you make an email application - so when you type in a certain thing, it'll send an email (FOR EXAMPLE) Generally console applications take some command line parameters to do some work. The User Interface on them is normally rather limited to very simple textual output rather than windows applications which have a much richer user interface. You you make an console application which sends an email, sure but it wouldnt be a very rich UI and would probably have some limitations. An example may be executed something like Email.exe abowles@xyz.com "test email message" to send the message "test email message" to the email address abowles ...Show All

  • doczap Can I get test results in Excel or HTML format?

    Hi, When I export results, I can see only results with (.trx) format and it opens in the VSTS itself. Can I able to export it to EXCEL or HTML format with my desired fields present in the test results Kindly suggest. Thanks - Vijay. As far as I know, we are not going to do that in next version. But we are going to change content of test files to be more human readable and publish the schema (.XSD), in this way it would be much easier to convert them to any format you want using XSLT. Thank you, Michael Thanks Michael. Is there any possibility of getting these results in near versions -Vijay. Vijay, you can multi-select d ...Show All

  • Will George How to pre-populate description field with labels?

    How can you pre-populate the description field with text for example, when a user enters a new bug, I would like the description field to appear like the following: Summary: Steps to reproduce: Analysis: Solution: While simplistic, I don't have the time or resources to invest in a full customization of a process template or work item. I have read all the threads on stuffing HTML into the description field which I do not want to do. Nor does there appear to be means of adding such text to the <FORM> element for the work item definition ( http://msdn2.microsoft.com/en-us/library/ms194963(VS.80).aspx ). Thanks Our use of TFS is still growing, and it is currently not used ...Show All

  • ricochett Buttons on Form disabled when using SQL Database

    Ok, I've tried de-bugging this and I can't figure out how to rectify my problem. So far I have a simple application with a simple database. (I'm getting back into programming after 20 years.) I have a list box with names of historical figures. When you click on the name a picturebox on the form changes to that person's picture and there is a 'summary' text box which says a little about them. The list box is bound to the database. It works pretty slick actually. The only problem is that once I click on the list box (and the event ListBox1_SelectedIndexChanged takes place) all of the buttons on the form are unresponsive. Apparently the program goes into a loop where it checks to see if the listbox has changed and continues to do ...Show All

  • axl Multiple Concurrent Builds

    I've noticed the error: TF42045: A build for the team project: ProductionSystem is in progress on build machine. On each build machine, only one build can be active for each team project. Use a different build machine or try again later. I don't like the idea of my users receiving this message. Is there software that will allow me to support concurrent builds on one machine Is there software that will allow user requests to enter a queue as opposed to simply rejecting users If I decide to have multiple build servers, is there software that will send user requests to the available server so that the user does not have to try one server at a time to see which one is free Hi - these are ...Show All

  • cadouthat How to Make My Program Proform a task when a key on the keyboard is pressed

    tThe title sums it up really, I want to be able to choose a key on the keyboard and make my program do a function when its pressed. While strickly speaking the above was the answer, i knew that no-one would asnwer it if it had an aswer already; i wanted to know why it doesn't respond when the capslock key isn't on You can use "AND" and "+" to check for key press combinations...I suggest you read the documentation starting with the follwoing MSDN library article on the KeyPress event...   http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfsystemwindowsformscontrolclasskeypresstopic.asp ' Boolean flag used to determine when a character other than a number is entered. Private non ...Show All

  • srem Having trouble - Output parameter

    Hi all, I have the following proc.... ------------------------ DROP PROCEDURE p_GetStudentOutputRowCountTest GO CREATE PROCEDURE p_GetStudentOutputRowCountTest @StudentID INT , @RowCount INT OUTPUT AS SET NOCOUNT ON ; SELECT * FROM TBL_Student WHERE ID = @StudentID -- SET the Output Parameter SELECT @RowCount = @@ROWCOUNT GO --------------------------------------- I wish to call it from a front end Visual C# application, but I want it to return my row AND the row count. I keep getting null for the @rowcount. Thats problem one. Then, conceptually, I'm confused as to how I would return a result set and a rowcount back to my application from one ...Show All

  • hchavali Problem resizing a nonrectangular form...

    Hello.I have a nonrectangular form and I wan't to make it resize.I have tried the example from here: http://www.dotnetrix.pwp.blueyonder.co.uk/misc.html but I not realy working.When I resize it, the application color is black and on mouseup is not resized. Here is the code from MY application: public partial class Style_MainWindow : Form { private bool Sizing = false; private Point SizeOffset = Point.Empty; private GraphicsPath FormShape { get { GraphicsPath gp = new GraphicsPath(); Rectangle r = ClientRectangle; int radius = 12; gp.AddArc(r.Left, r.Top, radius, radius, 180, 90); gp.AddArc(r.Left , r.Top, radius, radius, -270, -90); gp.AddArc(r.Left , r.Top, ...Show All

  • mig16 Visual C# documentation

    Hello, does anyone know a good reference book on Visual C# and related topics (ADO.NET and so on) updated to :NET Framework 2.0 I was able to find only books on 1.1 version and for ADO.NET applications it is a problem, as the TableAdapter class was not present in the previous version pino69 Hi pino69, Here are some books that I started with (I don't know you level of coding so take no offence please) http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764589555.html http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764578472.html http://www.sellsbrothers.com/writing/wfbook/ and this one I'm waiting to be published, but looks good http://www.wrox.com/WileyCDA/WroxTitle/pro ...Show All

  • Gouranga1 Starting a process with a non default application

    System.Diagnostics. ProcessStartInfo psi = new System.Diagnostics. ProcessStartInfo ( @"C:\DownloadLog.txt" ); System.Diagnostics. Process .Start(psi); This works fine if I want to open the file with notepad. How do I open this with another application, such as wordpad, or word Process.Start(@"wordpad.exe c:\downloadlog.txt"); Process.Start(@"winword.exe c:\downloadlog.txt"); Try using the full pathname of the executable: C:\Program Files\Windows NT\Accessories\Wordpad.exe C:\Program Files\Microsoft Office\Office11\WinWord.exe These names depend on the Windows and Office versions you have. Search your C: drive if it still doesn't work. Afte ...Show All

  • ThE ViKinG Next Image In Folder

    Hello, I have a form with 2 buttons on it and a MenuStrip and a picturebox. The menu strip allows the user to open a image using OpenFileDialog and display it in the picturebox. Now what I want to do is when the user clicks on button1 the picturebox will display the next image in the folder where the initial image was loaded from. And I want button2 to do the same except it will display the previous image instead of the next. Basically I'm wanting it to do what Windows Picture and Fax viewer does when you click the blue arrows along the bottom. If you need more info let me know. Any help would be great Thanks in advanced b0bd0gz Thanks for the reply. I'm sure this will work but I'm new to this vb.net t ...Show All

  • jchau 411 Length Required

    Hey Everyone, I am a complete newbie to VSTS and have been playing with the webtest functionality to simulate a user going through a purchase on our system. I recorded the web test using the web recorder fine and then had to modify the coded version but get: HTTP/1.1 411 Length Required error when posting back my last page. Any ideas Here is my code for the specific request, can I specify the length somewhere in code Much appreciated, D. request9.ThinkTime = 2; request9.Method = "POST" ; request9.Headers.Add( new WebTestRequestHeader ( "Content-Length" , "3495" )); FormPostHttpBody request9Body = new FormPostHttpBody (); string [] rav = this .Context[ "$HIDDE ...Show All

777879808182838485868788899091929394

©2008 Software Development Network

powered by phorum