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

Software Development Network >> VS Team System

VS Team System

New Question

Continuos Integration using Team Build
Get Latest Version extremely slow
form2 combobox
TFS Install Crashes/Freezes Server
TSD312: The following dependencies are missing, and running the object may fail ...
a few questions
how do i make Domain groups into global groups
Table relationship
Can't download from microsoft also
Lesson #1 - How to Set a breakpoint

Top Answerers

zapacila89
Dustpan Dave
Seefer
HSBF Lewe
qt1h00
rsri
Prabagarane
Cornel2
Roman S.
billqu
Html.it:
Only Title

Answer Questions

  • Lukasz Glaz Server not referred to by the FQDN

    I want the server to refer to itself ONLY by the FQDN. http://img116.imageshack.us/img116/2330/properties9sk.jpg if you have a look in the image - the server name is Fully Qualified, although the link that it will send the user to is not. how do i make them both be the same FQ thank you. What about the TFSNameUrl setting in the web.config Should/can I update that as well with the FQDN name Yes, that is true, the Sharepoint admin stuff always needs its own port. Here is my wishlist in this area: - Support having the TFS web services and the Sharepoint sites on one IIS site. That would make client access sooo much easier, SSL configu ...Show All

  • KarimG Chart Control

    I have upgraded a VB 6 application that has a chart.  The upgrade was successful but when I run the application I get the following error: System.InvalidOperationException was unhandled   Message="An error occurred creating the form. See Exception.InnerException for details.  The error is: Unable to get the window handle for the 'AxMSChart' control. Windowless ActiveX controls are not supported."   Source="WindowsApplication1"   StackTrace:        at WindowsApplication1.My.MyProject.MyForms.Create__Instance__[T](T Instance) in 17d14f5c-a337-4978-8281-53493378c1071.vb:line 180        at WindowsApplication1.My.MyProject.MyForms.get_Form1()   &nb ...Show All

  • rmichaels Adding a user to all team projects

    Perhaps I am not searching correctly in this forum but I cannot find an answer. Is there a way to add a user as a Reader for all team projects in one step rather than having to add the user individually to each team project Thank you! Stephen Thank you very much Adam for your reply. Although I like you first suggestion and will likely do that, I would love to see some sample code for learning purposes. Thanks again! Stephen Glad to help. I've written a demo command line application and posted on my blog with the solution files zipped up and attached. Check it out at " Random Acts of Group-ness ". Cheers, Adam The best option I can think of is ...Show All

  • saffy_in_aus RTM accepts SQL Server 2005 Express for Local Validation Instance

    According to the ReadMe, the RTM (V1) of DB Professional will again work with a local validation database SQL Server 2005 Express (as did CTP6 and before). I can not test this since I don't have a box that I want to degrade anymore. Apparently the DB Pro Team listened and reacted to the critisism on the forum regarding the requirements for CTP7. Thanks to the Team! Alle Yes indeed, but remember Full-text and Partitioning won't work if you use express as your designdb instance. ...Show All

  • New user to SQl 2005 DLL Help "VBExpress"

    hi Someone can help me with dll creation I want only know how to do this. Thanks Shady I have been trying to learn about using dlls by creating controls in them. These dlls (controls) can be added to the toolbox. I wish some of the professional programmers on the forum would critique the following class library. (Seems to work okay.) And let me know if I am doing anything really stupid. I don't have any books on how to develop controls or dlls. ' This file, named Moneybox.vb is a class library project ' which creates a dll. The dll creates a control for numeric ' dollar amoumt input. ' Negative numbers are not supported Option Strict On Option Explicit On Imports Sys ...Show All

  • platinumbay how some help fix my code?

    'Create a new MailMessage object and specify the"From" and "To" addresses Dim Email As New System.Net.Mail.MailMessage(" From@abc.com ", " To@abc.com ") Email.Subject = "test subject" Email.Body = "this is a test" Dim mailClient As New System.Net.Mail.SmtpClient() 'This object stores the authentication values Dim basicAuthenticationInfo As _ New System.Net.NetworkCredential("username", "password") 'Put your own, or your ISPs, mail server name onthis next line mailClient.Host = "Mail.RemoteMailServer.com" mailClient.UseDefaultCredentials = False mailClient.Credentials = basicAuthenticationInfo ...Show All

  • Jones Christopher Can't remove Ghost project from source control or add project with same name

    We have a ghost project in our source control explorer.  I tried using TFSdelte to remove it says it doesn't exist.  So when I try to create it it says it is already there.  Here is what it says when I try to create the project.  If it already exists, why can't I delete it   Thanks for any help you can provide. Error TF30004: The New Team Project Wizard encountered an unexpected error while initializing the Microsoft.ProjectCreationWizard.Portal plug-in. Explanation TF30171: The Microsoft.ProjectCreationWizard.Portal plug-in used to create the new team project could not be initialized and returned the following error: TF30270: Project site folder "Engage 2006" already exists. ...Show All

  • Camenwolf clipboard question

    hi, i'm trying to use the clipboard funtion to copy not only a string but the value of a variable as well, heres what I tried: Clipboard.SetText("string"variable) the thing is, it says I have to use a string, so I'm stuck. does anyone know how I can do this Hi, I'm not exactly sure what you mean, but here's how this works: Dim variable As String = "Some text I want to copy" Clipboard.SetText(variable) You declare a variable of String type and asign it some text value. Then you copy the variable's value to the clipboard. Andrej Thanks for your help, I'm going to try that ...Show All

  • _mthz Create New Website

    Does anyone know of a good tutorial showing the steps of creating a new website and adding it to souce control I have tried several times with little success. For example, do I start with some sort of project, such as a test project, and then add a new website to that Does it mater if create the web site using http or file system I have many questions and haven't been able to find a good site showing how do to this. Thanks My limited understanding is that 2005-style websites can be located anywhere (on disk, http, ftp) and can contain many assemblies, while 2003-style web projects must use IIS and always compile to 1 assembly. You can probably find a lot more info on www.asp.net and ScottGu's blog. ...Show All

  • DanBog To see or not to see?

    Ok, the program is doing everything I want it to, so now I need to intergrate it in to my main program, what I want is, in a buttons click event, to have the Labels created and shown, click again and they are gone, I can do this part.(No, really I can) My question is, can the Labels be created in say, a Panel, Picturebox or Groupbox so that I can make Visible True or False as required I’ve gotcha a bit better then... yes, you can use that code within an event handler for an event from another control... what kind of event are you looking for Are you also wondering how you could add the controls generated there to your picturebox/groupbox/panel If so, simply change the Me.Controls.Add line to refer to ...Show All

  • notacoder75455 Different size DLLs when building on the server vs Laptop VS build

    One of our developers brought this to my attention to research further... The developers have noticed that the sizes of the DLLs vary when built on their laptops vs a build on the TFS build server. Any clues as to why this may occur I'll get more details as the developers are availalble during the course of the day. For now I was looking at any direction you may offer as my TFS experience is very limited. Thanks TFSCLUELESS I'm seeing the same problem; when I build using team build , some DLLs that are written in C# are about half the size as the same DLLs built on the same machine by opening the solution and building locally. The DLLs are still the same wrong size when I build locally until ...Show All

  • CLIPER Redirect to different Project Portal

    Hi, first of all my question: Can I change the project portal (link/reference) used by a team project Why am I trying to achieve with this... I am planning to migrate a larger project to TFS. Right now I'm evaluating if it is better for us to have one large Team Project including several versions of the project or having a Team Project (TP) for each version. The benefit of a single TP would be to have one overall structure within that project that applies to all the versions within that project. Within this common structure today there are concepts, Q&A, guidelines, training etc. documents concerning all the versions of the development. How can I create such a common documents area when migrating into several TP with severa ...Show All

  • Ryn Unresolved token? Unresolved external symbol?

    I am trying to build a simple application that creates a Shell Link. It compiles just fine (I can port source code if need be), but it will not link. The linker complains: wc3270wiz.obj : error LNK2020: unresolved token (0A00001F) IID_IPersistFile wc3270wiz.obj : error LNK2020: unresolved token (0A000023) IID_IShellLinkDataList wc3270wiz.obj : error LNK2020: unresolved token (0A000026) CLSID_ShellLink wc3270wiz.obj : error LNK2020: unresolved token (0A000027) IID_IShellLinkW wc3270wiz.obj : error LNK2001: unresolved external symbol IID_IPersistFile wc3270wiz.obj : error LNK2001: unresolved external symbol IID_IShellLinkDataList wc3270wiz.obj : error LNK2001: unresolved external symbol IID_IShellLinkW wc3270wiz.obj : error LNK2001: unr ...Show All

  • Joel_F Why VSC++ Express don't rebild my C++ console application?

    When I tried, I received this output bild message: ========== Build: 0 succeeded, 0 failed, 1 up-to-date, 0 skipped ========== !! Somebody help me please. Thank's in advance. I got ashamed and get pink! I found the mistake, at all. I didn't add files to the left panel (Solution Explorer) of IDE, so I only copied that files to application. It is not enough. ...Show All

  • R8VI TF30162: Task "Populate Reports" from Group "Reporting" failed

    I am getting the following exception when I create a new project. I have followed all walkthroughs I can find online. I am now at a loss what to check next. Any pointers ---begin Exception entry--- Time: 2006-08-31 16:06:15Z Module: Engine Event Description: TF30162: Task "Populate Reports" from Group "Reporting" failed Exception Type: Microsoft.TeamFoundation.Client.PcwException Exception Message: TF30225: Error uploading report : Work Item with Tasks Exception Details: The Project Creation Wizard encountered a problem while creating reports on the SQL Server Reporting Services on 192.168.1.106. The reason for the failure cannot be determined at this time. Because the operation failed, the wizard was not able to ...Show All

8788899091929394959697989901234

©2008 Software Development Network

powered by phorum