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

Software Development Network >> VS Team System

VS Team System

New Question

Amazon-Enabled Movie collection starter kit
How to add Help Balloons to the application
Can I merge two branch manually?
Get the source of a web page
tabControl Color ? howto
Uninstall Team Foundation Server
File Types
Getting Started with VC++ Visual Express 2005, SDK, and SP1 VC++
How can i rename the request to be more unique to retrieve the response time
vanishing main menu mystery?

Top Answerers

pardgr8
David d48701
RookieDBA
outcast1881
Danielha
KompjoeFriek
minority80
vishal1857
Debendra Modi
heedree
kiranreddys.com
Only Title

Answer Questions

  • Jamie Thomson Rule to prevent Cross Site Scripting

    hi,I would like to write some custom rules. First I want to prevent input by validating userinput by using reg ex. Second, I want to use HTMLencode/URLencode every time it is needed.can you give me some informations thx thanks Unfortunately, this kind of rule would be very complex to write and without writing some sort of data flow analysis engine, it won't be possible. However, if you know what methods need to call HtmlEncode and UrlEncode, you could walk over the instructions and simply see if the method actually calls them. However, be aware it won't be able to detect if it is being called on the right user input. Tell me if you are interested and I will give yo ...Show All

  • Leo12 Clipboard Help

    Hello all, good morning :) need some help with this one please: I have 6 textboxes on my form. I need to assign each textbox with a shorcut key (eg. alt + 1, atl+2 etc..) and then copy the contents to the clipboard. I take it that I would have to put the code in a timer event & would the shorcut keys still work even if the form is not displayed on the screen Thanks, Stuart Hi there. I've been thinking and thinking about what you are proposing about taking in input when the form has no focus and I think it's an awful idea. I'm not really huge on standardization but the potential problems go beyond simply standards but cross proper system functioning. The api routine you ...Show All

  • BrandyLove unwanted gibberish in text files

    I need to save a text based file that my program has edited. When I save it using:   That's normal RTF. That's formatting information. What do you want in the file. If you just wan't ordinary text, why are you sing a text box. The RTB is doing what it's supposed to. I'm not Quiet sure how you are saving but.... This is how you save rich text: RTB.SaveFile( FileSpec, RichTextBoxStreamType.RichText)   This is how you save plaintext: RTB.SaveFile( FileSpec, RichTextBoxStreamType.PlainText)   ...Show All

  • dotnetsr Notification - Closed task

    Hi, is there a way to get notifications, if someone close the task regards Simon Simon, You can create custom subscriptions using BisSubscribe.exe tool and give a custom filter to do it. If you search for bissubscribe in net you can get lots of info on it. To get the schema for WorkItemChangedEvent and to build filter, check http://blogs.vertigosoftware.com/teamsystem/archive/2006/07/03/Subscribing_to_Team_Foundation_Server_Events.aspx Pete's blog has much details on creating subscriptions & troubleshooting: http://blogs.msdn.com/psheill/ I hope this helps. Below is the event filter we use in UI for "mail when my items changed by others" - if you need an example: "PortfolioProjec ...Show All

  • jwellsntr How do I add a column to a database?

    Everytime that I added a column to a database it resulted in a disaster. I had to delete the form that updates the database and recreate it. Apparently there are a number of steps that have to be taken. What is the procedure I do not see how SSMSEE can get the XSD Designer to regenerate! SQL Datagridview Table Binding navigator I went into Database Explorer, selected "Open Table Definition", and added 2 new columns. When I go into Data Sources or Solution Explorer, the new fields are not there. I tried "Configure DataSet With Wizard" and that didn't help.     After I added the columns to the table, I r ...Show All

  • OmegaMan Colours

    Is there any other way of using RGB colours in the bitmap.setpixel function other than Color.FromArgb Its hard to customize it as it is an integer.... BMap.SetPixel(x + 1, y + 1, Color.FromArgb(&HFF0000FF)) I cannot base this off a variable by simply doing this: &HFF00 & green & 00. .... give me a hand Looks like it works to me. What's the problem Umm, you still haven't told us what lines cause a compiler error. We can't move on until you tell us. The one thing I had to do to compile the code from your post was to remove blank lines. Hi, Paste ALL of this code into a completely EMPTY code window then run the code. Imports Microsoft.VisualBasic.Contr ...Show All

  • Alexander Marinov Saving Changes made in a dataset (Access2002) to the original datasource

    I've just recently started using VB8 and I'm having some problem understanding the way data(changes) from my programm is to be handled, so it will be saved in the original database. I've setup the connection to the database and made a Dataset with the appropriat datatables. When I want to add a new 'record' to the database, using the command Me.SomeTableAdapter.Update() command, only the temporary database in the /bin-directory is updated and not the original one. This temporary database is of course overwritten by a new build. What am I doing wrong Thanks for your tip, I'll soon start experimenting with it. CeeKay     This is a well known issue. There are a couple ways to deal with. T ...Show All

  • GethWho Database question

    Hello, I have created Access file with 1 table. Now when in VB 2005 I tried to get aceess t othis file I typed: Dim dt As New DataTable() Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Dim connStr As String = "Provider=Microsoft.Jet.OLEDB.4.0.;" & "Data Sourse=Grade.mdb" Dim sqlStr As String = "select*From Student" Dim dataAdapter As New OleDb.OleDbDataAdapter(sqlStr, connStr) dataAdapter.Fill(dt) dataAdapter.Dispose() UpdateTextBoxes() End Sub Student is the name of a table. When I run the programm, I got "Could not find installable ISAM." What is Wrong ...Show All

  • Zeeshan Ahmed Help Text to ACCESS problem

    I have a small problem I am reading a Text File and then Inserting it into an access file. It was working and now it crashes once the data has been inserted. The program used to stop when the file was read but it seems that now it wants to keep going. It crashes on " Dim IDid = S.Substring(0, 3) + S.Substring(7, 2) " becasue there is nothing to split I have been tring to Kill this with a While Exit statement but it does not work. ANy sugestions Here is my code: Dim connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=project.mdb" Dim theOleDbCommand As New OleDb.OleDbCommand( "INSERT INTO tblmain (PlayerID, Name, Team, Position1, Hits, Games, 1B, TB, OBP, SLG, OBPS, BA) VALUES (@p0,@p1 ...Show All

  • Prabagarane Work Item assignment on build Unit Test failure

    Hello, I've managed to get my build type assign the build failure Work Item to myself when the build fails, however, it does not create the work item if the sources build OK but the unit tests fail (and therefore the build fails). Does anyone know how to enable this Also check out the following forum post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=2718118&SiteID=1 The behavior you are seeing is by design. The CreateWorkItem task only runs if an error occurs during the CoreCompile target, which only includes compilation. You can write your own code to create a work item if tests fail, but this will require a custom task to determine whether or not the ...Show All

  • Lappis delete and delete[] in destructor crashes the program.

    Hello I was fooling around with some very basic classes, and much to my dismay I keep getting a runtime error when my destructor is hit. Everything compiles and run just fine, and the exact same code will run smooth and easy if compiled with MinGW. Here's my class; cyString.h #pragma once #include <cstring> class cyString { public : cyString( const wchar_t * arg); ~cyString( void ); private : wchar_t * thestring; }; cyString.cpp #include "cyString.h" #include <cstring> cyString::cyString( const wchar_t * arg) { size_t strsize = wcslen(arg); thestring = new wchar_t [strsize]; wcscpy(thestring,arg); } cyString::~cyString( void ) { delete [] thestring; } According to my te ...Show All

  • Ntc Undoing exclusive checkouts

    All: My question/problem is this: A TFS user has a number of files checked out for exclusive checkout. The user has subsequently left the company. His domain user account has been deleted. We've tried a number of command line commands to unlock the files, undo the operation, delete the workspace etc. However these approaches all seem to require workspace/owner information, & are unable to find/process the workspace the files were checked out to. How can I undo/delete the checkout operation if the workspace or domain user account no longer exists Thanks in advance, Dave Riches The TFS version my company is running is RTM (8.0.50727.147). When any of the 'tf status' command, the Team Explorer tool in ...Show All

  • sparkymark75 How do I set the fontsize and color of body text using mailto:?

    -Visual Basic 2005 Express- I've searched the internet and forums for 2 hours looking for a way to 'programmatically' change an emails font and color in the body. I haven't found anything on either of these. The following code is what I have so far. It works fine but I'd like to change the font size and color. There must be a way... Process.Start( "mailto:" & clemail.Trim & " SUBJECT=Notification%20of%20payment%20recieved&BODY=Payment%20recieved%20" & temp2 & "%0D%0ADate:%20" & Date .Today & "%0D%0A%0D%0AThank%20you%20for%20your%20payment.%0D%0A%0D%0APlease%20retain%20this%20receipt%20for%20your%20records." ) clemail is the customers email address. Any ...Show All

  • Kolja The first team velocity

    Hi We are doing our first project with MSF agile. To schedule our first scenarios we need a team velocity, which is a possible value to apply I understand that in follow iterations our team velocity value will be calculated by the previous iteration. Thanks in advance Javier There is no absolute number to suggest in this case. In order to come up with a first value, your team has to know enough about their experience in developing software, and make a gut feeling decision about it. If you absolutely need a number, Randy Miller suggests in his book "A practical guide to eXtreme Programming" that an initial velocity "to start with is to divide the number of person days in ...Show All

  • tkroll READONLY for System.IterationPath field

    We are trying to specify the System.Iteration field to be READONLY until the workitem reaches a specific task. It seems this is a special field that doesn't allow it. I can make the field readonly on the form but it cannot be enabled afterwards. Is there a way to accomplish this task Is there a documentation that provides the exceptions for special fields we have very little or no control at all Looking through the posts it seems people want to have most control over fields Team Systems folks deemed as special and as a result restricts the control over them. We are encouraged to reuse existing fields, we cannot control some of them, but there are restrictions on some of the field types one can have (i.e. no user-defined WorkItemC ...Show All

171819202122232425262728293031323334

©2008 Software Development Network

powered by phorum