Answer Questions
StarsFire downloads
i want downloads of visual studio express, & themes to put on my laptop, You can download all the Express products here: http://msdn.microsoft.com/vstudio/express/ Is there any other question you have ...Show All
Radith Unit Tests and Nightly Build
Using VSTS for Developers. I have a solution with a test project for my unit tests. When I create a new build type and select the metadata file, (".vsmdi") the "Test list to run:" list is always empty. The only mention that I can find about test list says to create them within test manager. But I do not see a test manager tool within VSTS for Developers. Does anyone have some insight into getting my unit tests to run during the nightly build Thanks I still haven't heard anything. I tried manually editing the vsmdi file, but the only reference I could find online was from a previous version of TFS so it didn't completely work. It showed up in the "New Team Build Type" wizard, but running it ...Show All
Ted. export remote MS SQL 2005 express table to local excel
Using VB 2005 express, I can connection to a remote SQL 2005 express. Is there a way to export the records in the table say for example, employee to a excel worksheet May be there is a way to bulk copy from MS SQL to excel by open one connection to SQL and one to excel So far, I could not find complete working code. Vincent ...Show All
Amitai TFS building Warehouse during restore
Hi, I am trying to build the warehouse after taking backup of the database. But i am facing with some errors. I tried this command on the command Prompt, C:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Tools>setup warehouse -o -s isinetpoc1 -d C:\TFS_Data_Backup\TfsWarehouse -c warehouseschema .xml -ra TFSReportAccount -a TFSServiceAccount but it is showing errors like An unexpected error occurred when connecting to the Analysis Server. Check that your Analysis Server is up and you have sufficient privileges on it: File system error: Error opening file; \\ \E:\Program Files\Microsoft SQL Server\MSSQL.2\OL AP\Data\TFSWarehouse.0.db\Build Quality.0.dim\221.Build Quality.Build Quality.ls tore i ...Show All
Sweeps78 Some users cannot acces version control
Hi! We have a problem with some users not being able to access version controlled files. They can see all projects and they can work with Work Items and run reports. They can also see the folder structure in the Source Control Explorer but when they right-click on a folder they get a menu with the only text being "No commands availiable". Has anyone seen this or has any idea what the cause can be We are running TFS with SP1. Some of the users have upgraded to SP1 for VS2005 and some have not. The problem seems to exist regardless of client version of VS2005. I have of course checked that the users in questions belong to the group Contributors or Project Administrator and should have permissions to change (or at least see) the sou ...Show All
Rossman1012 control not bound to areapath or iteration
I have a custom field ref, with allowed values from a global ref. I display the field with a WorkItemClassificationControl, but the control is grayed out on the form and reads "control not bound to areapath or iteration." Any suggestions ++Alan WorkItemClassificationControl can be bound to either AreaPath or IterationPath, and not other non-tree fields. You can use FieldControlt o display a list of items. Here is example: <Control Type="FieldControl" FieldName="System.State" Label="&State:" LabelPosition="Left" /> Well duh! That was easy. Thanks (once again) Naren. ++Alan ...Show All
cmarshall26 Where is it placed locally?
When I bind a solution to the source control, I imagine Source Control copies the solution files to a local place. However I cant see where this is copied to... Anyone has any clue What do you mean by Base Direcotry files I found out my problem, I was not creating correctly my WorkSpace. There is another issue, though. I noticed that my Base Directory files just vanished after I added this solution to Source Control. I suppose VSTS does this automatically so that we dont get confused about the source of the files (cause now its referencing my local machine directory). I am right The directory where I TFS first used, to know what were the files to be taken to Source Control... ...Show All
NReddy Build completed email - include changeset/work items in the MAIL?
Hi! If a user subscribes to the "Build completed" project alert he/she will receive a mail that looks like this: BUILD OurProduct.Main.Daily_20061229.7 SUCCESSFULLY COMPLETED Team project: Company.OurProduct Build started by: DOMAIN\username Build machine: BUILDDOOZER2 Build started on: 29.12.2006 15:18:33 Build completed on: 29.12.2006 15:22:43 Notes: - All dates and times are shown in GMT +02:00:00 FLE Standard Time - You are receiving this notification because of a subscription created by DOMAIN\username Provided by Microsoft Visual StudioR 2005 Team System What I really would like is an email containing the changes. So the user does NOT have t ...Show All
MikeAtOpco AssemblyInfoTask default Versioning Flawed?
Is it just me, or isn't the notion of versioning defaulted to by the AssemblyInfoTask http://www.gotdotnet.com/codegallery/releases/viewuploads.aspx id=93d23e13-c653-4815-9e79-16107919f93e fundamentally flawed. Assuming major.max.build.revision. Everyone using this task, including Microsoft, seems to be using the strategy that the build number is specified to be DateString with a format of yymmdd, you get something like 061117 on the day of this post or the following if we accept the defaults: 1.0.061117.00 First of all, the actual number (since it gets converted to an integer) becomes 1.0.61117.0 when it gets compiled. Most importantly, if this was next year (2007) at this time, you get assemblyinfo files u ...Show All
rwerner VS 2005 IDE Create SQL Store Porcedure like 2003 IDE
I use to have an option within the 2003 IDE to generate SQL Stored Procedures, however using the new 2005 IDE and SQLDataSource I can only generate dynamic SQL stagements or refer to existing Store Procedures. Can 2005 IDE generate SQL Stored Procedures If so how I have looked through the MSDN library and How to's for this. Doug DrDrain, You won't be able to create a stored procedure from the SQLDataSource wizard in VS2005. But from VS2005 IDE, you can create the stored procedure from Server Explorer (View menu-> Server Explorer). Connect to your database from the "Data Connections" node (by right click on it)->after connecting, go to the Stored Procedure folder for your database-> then right click on your ...Show All
tribal sql insert statement
I am trying to create a SQL insert statement and I am stuck, If someone can help me. here is my code : Imports System.Data.SqlClient Public Class NewCellTypes Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim connectionString = "Data Source=localhost;Initial Catalog=TESIS;User ID=sa;Password=mypassword" Dim queryString As String = "INSERT INTO FR-DEVICE-TABLE(DE_MANUFACTUREER, DE_ACTUAL_COST)VALUES( , )" '''' Using connection As New SqlConnection(connectionString) Dim command As New SqlCommand(queryString, connection) Dim p1 As New SqlParameter( "@p1" , SqlDbType.Text, ...Show All
Woyler Build with tests fails with no indication of where
I have setup two builds on my TFS project - one to run when code is checked in that only verifies that the code will build, and one to be run automatically that will run our tests. The first build appears to work correctly, but when I run the second (from my VS) it fails. When I look at the BuildLog.txt file, I can't see any failures, and the build results in VS show red "X"s next to the "Running tests" and "Running tests for Any CPU/Debug" entries. I have looked at this post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=673795&SiteID=1 and based on that tried installing VS Test edition on the build machine, with no change in the results. I am running Team Suite on my machine. Can anyone ...Show All
allison_h getting error while using template class.
Hi, I sifted my c++ code from VS6.0 to VS 2003. while compiling I am getting errors. this is the code: template XuSingleton::self_type* XuSingleton::_instance = 0; getting following error: d:\frontier_source\xutils\XuSingleton.h(153) : warning C4346: 'XuSingleton::self_type' : dependent name is not a type prefix with 'typename' to indicate a type d:\frontier_source\xutils\XuSingleton.h(153) : error C2143: syntax error : missing ';' before '*' d:\frontier_source\xutils\XuSingleton.h(153) : error C2501: 'XuSingleton::self_type' : missing storage-class or type specifiers d:\frontier_source\xutils\XuSingleton.h(153) : error C2065: 'T' : undeclared identifier d:\frontier_source\xutils\XuSingleton.h(153) : error C2955: 'XuSingleton' ...Show All
Mike_in_NC Error uninstalling TFPT v1.1 under Vista
Trying to install TFPT 1.2 and I get the following error when trying to uninsall my previous TFPT version under Vista: Error 1721. There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor. Managed to get it uninstalled, just had to turn off UAC to do it. ...Show All
warning9 Error when opening "Performance Tools" Tools Options page
I *suspect* this issue has occurred since I installed SP1. I had no errors installing SP1 and not noticed anything untoward (so much so that I was near on upgrading my other machine!). Whilst I was poking around the options I found out that my Tools Options page for 'Performance Tools' is broken - when I choose it I get "an error occurred loading this property page" instead. I do recall an error loading a package but I didn't note the GUID down and it's not prompted me since :( I'm not sure if it really was SP1 but if anyone could offer any advice on how to fix it I'd appreciate it! PC: Windows XP Sp2 + all updates, Pentium M-760, 2GB RAM Visual Studio version info: Microsoft Visual Studio 2005 Version 8.0.50727 ...Show All
