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

Software Development Network >> VS Team System

VS Team System

New Question

Noob Frustration
Functional testing of windows based c# application in VSTS
Access tests stored in shared folder
Getting started with Visual C++
Find in Files broken
The effect of stopping windows Firewall/Internat connection service.
MCTS exam HELP REQUIRED
Send text message to my cell
Accidentally deleted the only licensed user!
How do I _DELETE_ a file from source control... Like it never existed at all?

Top Answerers

Reuben
Raj Deep
ICP-Fan
Joel Marcey
Sir Sean
Microsoft Visual
ezikiho
xlordt
Tryin2Bgood
HilliMonster
sitemap
Only Title

Answer Questions

  • newyuppie DataGridView Column's expression

    hi all, i need to know more about DataGridView Column's expression. I have column-C want to do expression, choose Data from Column-A if the column have value, otherwise choose Column-B. It is got any idea ...Show All

  • kiwilamb Development scenario and license needed? Please advice

    I need to setup a project team with an architect and 4 developers. We plan to use Microsoft .NET 2005 Team System. The following is the things I am going buy: 1 copy of Team Foundation Server 1 copy of Team edition for Architect with Premium MSDN subscription 3 copies of Team edition for developers with Premium MSDN subscriptions. I found that Team edtions are not available without Premium MSDN subscriptions. Why is it so What should I actually buy Please advice. Microsoft, please answer my question. THanks Yes you are right about what you need to buy - which is the following : 1 copy of Team Foundation Server. 1 copy of Team edition for Architect 3 copies of Team edition ...Show All

  • DMan1 When do reverse deltas take place?

    The TFS FAQ mentions that the server creates "reverse delta" of both binary and text files "asynchronously as a background task". I'm unable to find any other information on how or when this reverse delta creation happens, what factors affect how long it takes, and if it can be controlled.  Is there any documentation on this In addition to just wanting to know, I'm interested in understanding reverse delta creation as I am experimenting with using TFS as a large binary data file version control system. I'm working with a company that has to manage large binary data files  (not documents and which cannot be easily converted to relational data); most of their files are 10-60MB in size, but some reach from .5GB up to 30GB ...Show All

  • MrZap How do I calculate the absolute width of glyphs?

    I am working on a project to collect data via an order entry interface and part of the data is a personal message that will be engraved on the inside of a ring in a factory. Personal messages are being offered in true type fonts and I need to know if the personal message fits given the circumference of the inside diameter of the ring. How can I calculate the width, perferably in inches, of the personal message I have searched this web site and found functions such as getcharABDwidths but a description of the function does not define the return value. I am looking for a return value that represents distance. SJWhiteley wrote: All fonts of the same size return the same value Yes, I went and tested and you are correc ...Show All

  • Vijay_kar How to implement AssignTo combobox

    I would like to implement an Work Item's "Assign to" Combox box. How to get the list of users listed in the Combxo Box through VSTS web services Thanks, Yuhang. Very cool! Thanks, Yuhang You can use the object model to do this.  If would look something like this. Reference the following DLLS in c:\Program Files\Microsoft Visual Studio 8\Common7\IDE\Private Assemblies\ Microsoft.TeamFoundation.dll Microsoft.TeamFoundation.Client.dll Microsoft.TeamFoundation.WorkItemTracking.Client.dll using Microsoft.TeamFoundation.Client; using Microsoft.TeamFoundation.WorkItemTracking.Client; TeamFoundationServer tfs = TeamFoundationServerFac ...Show All

  • Jim Perry How do i make icons for my projects

    Hello all, I would like to know how to make icons for my VB projects. Is there a specific program to make them. Any help will be good. Thank you http://www.vbaccelerator.com/home/VB/Utilities/Alpha_Icon_Creator/article.asp This is also a good free tool. I use the photoshop plugin as well as this. One thing nice about this is that it will make the multiple sizes of an icon required by projects all in one file. Hi There is a plugin that works for both photoshop and psp that allows you to save images you make or digitals images as an .ico file There are several icon-making packages available. Do a search using google (or your favorate search e ...Show All

  • progames25 Include / Exclude target to drop

    Hello, We have loads of solutions being build as part of our TFS builds, and each solution contains the main project (class library) and one or more test projects, containing either unit tests or test harness controls. I obviously want all the projects in a solution to be build so the unit tests can run, but ALL the compiled projects are copied to the drop folder, rather than just the main class libraries. Is there a way to specify that you want to build all projects in a solution but only copy one of them to the drop location I don't think I need to go so far as to build a custom task to do something that the MSBuild copy task can already do for me ( http://msdn2.microsoft.com/en-us/library/3e54c37h. ...Show All

  • sabarish_s OutOfMemory Exception Error

    I'm working on a rather complicated program using signature tablets. Someone signs the tablet, displaying their signature on screen. That signature is then broken down into a unicode byte string to be saved into a database. So far, so good. When I open a second form, designed to display entries from the database, it gets as far as the code below and give me an error message saying 'OutOfMemory Exception is unhandled'. This is the code designed to retrieve the unicode string from the database and turn it back into a signature. Dim ImgData As String ImgData = RegisterdbDataSet.Time_In_Table.NewTime_In_TableRow.Signature_Data() Dim bytes As Byte () = System.Text.Encoding.Unicode.GetBytes(ImgData) FileOpen(1, Envir ...Show All

  • jkw Error: Cannot Open SQL Server

    i am receiving an error "Cannot Open SQL Server" I'm just wondering why am I receiving such error when I am using Access as a Database...and why this error comes out on the line REPORT.Preview() here's my sample code Try XFROM = cmbfrom.Value XTO = cmbto.Value XPREVDATE = "As of " & XFROM.AddDays(-1).ToString( "d-MMM-yyyy" ) Dim APP As New CRPEAuto.Application Dim REPORT As CRPEAuto.Report REPORT = APP.OpenReport( "C:\SHIPMENT_SCHEDULE\REPORTS\XL.rpt" ) REPORT.RecordSelectionFormula = "{T_SUB.EXFACTORY} >= #" & XFROM & "# AND {T_SUB.EXFACTORY} <= #" & XTO & "#" REPORT.ParameterPrompt ...Show All

  • OndraKKK MDI Forms appearing under my parent controls

    hello my mdi is showing under my controls like the child appears under a button i use dim child as new mychildform child.show child.mdiparent=me me is mdi container please does anyone know how to resolve this Thanks Yeah. Thats it. Thanks I think your only options are to: either not have the second form be a child form. or move the other controls out of the way and perhaps set the location of the second form within the parent form . Position child form example: Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Form2.MdiParent = Me Form2.Show() Form2.Location = New System.Drawing.Point(100, 100) End Sub ...Show All

  • vineet1408 Random Number Generators

    Hello I have the following code : Random random = new Random (); for ( int i = 0; i < 14; i++) { int number = random.Next(0, 10); MessageBox .Show(number.ToString()); } How can I create an Array (or an ArrayList ) in order to display all the numbers in a listbox I also would like to create a seed based on the clock of the computer, thus each time the program would run it would be unique. Is such thing possible Thanks in advance. Nefer-Ra You could do this: Random random = new Random (); for ( int i = 0; i < 14; i++) { int number = random.Next(0, 10); listBox1.Items.Add(number); }   The constructor 'Random()' uses th ...Show All

  • harcrow Q on conditional Rules- how to delete content of field on every CTRL+S

    Hi,   I customize my WI to have new text field caled - assignment notes, I use this field on every stage(state) The thing is that I want that in every Ctrl+S the field content will become empty (the content will be save in the history) so that in the next state I will have this field empty with <REQUIRED> attribute   There is a way to do it   I couldn’t find any trigger for Ctrl+S action.   Thanks in advance,   Shmulik.   Thanks for your reply. I tried already to implement the idea that you mentioned, the problem is that you can't have this two rules to work together on one stage. I mean that if you are ...Show All

  • Hunt_web.tw Running programs that are outside my own

    the objective is to make a menu for a autorun CD that once clicked on an item runs a particular .exe file separate from my own. the file is very old dos file made from .bas with QB7.1 but i got it to work with the command "System.Diagnostics.Process.Start()" though it doesn't show the PRINT as this: prog inputs: dia#: Mes#: ano# But does't show nor this print for input nor the result print: the screen is black but if you press the keys it goes to next line as if it was working but not showing. Any sugestions Thank you, JDuarte. No the pro doesn't require any special arguments or options in windows i just run the .exe file and it opens a dos window with the prog. but w ...Show All

  • Shark_ visual web developer will not create databases

    When I try to create a database using visual web developer I get the following error "Connections to SQL Server files (*.mdf) reqire SQL Server Express 2005 to function properly. Please verigy the installation of the component or download from the URL: http://go.microsoft.com/fwlink/ LinkID=49251" I have installed SQL Server 2005 express If I create the database using SQL Server Management Studio express I can then connect from Visual Web Developer and add tables etc. Its just initialy creating the database that causes the problem. I also had nightmarish problems with the aspnetdb required for Logins. I had to create this using the aspnet_regsql.exe utility and modify my web.config to make the ASP.NET configuration utilt ...Show All

  • Sascha Zeidler How do you import entire schema?

    Every time I try import Schema to a project and compare it back to the source database there are always statements that are missed by the import. I then try to run an update and get a whole host of user or group not found errors. Are there settings that need to be changed when importing schema I have already tried having the source schema settings override the target settings and have also tried default settings. Hi Which objects are missing Within the project, we treat rules, defaults, permissions, role membership signatures, storage, custom errors, encryption keys, linked servers and logins are pre or post deployment objects. Therefore they do not always appear in the Schema compare when d ...Show All

646566676869707172737475767778798081

©2008 Software Development Network

powered by phorum