Answer Questions
eTape Synchronizing TFS and Visual SourceSafe
I am looking to perform an evaluation of TFS in our corporate environment. During this evaluation live development will be taking place. In the event that our developers determine that they are not ready for TFS I will need to move the source code back to VSS. Are there tools or a simple means to do this No, we don't have any tools to go backwards from TFS to VSS. You would need to write one, or you could simply check back into VSS the latest copies of all of the files and sacrifice the history. Buck We've just release CS-Converter v1.1. This version has a 'Synchronization mode' that allows you to continue using both version control systems, TFS and VSS, concurrently even after conversion. Changes performed on ...Show All
N0v3m83r Unable to check in when Solution Explorer is open
One of our developers is having trouble checking in a file when the Solution Explorer is open. (When he invoke "Checkin pending changes, the file in question is not listed) However, when he closes the solutions explorer, he is then able to check the file in. Any idea how this could be Thanks, Maggie He probably has the "filter by solution" button pressed. It is a toolbar button in the Pending Changes toolwindow (or Pending Changes dialog) that is just to the left of the workspaces combobox. It can be toggled on or off. --Ben Ryan Hey Thanks! But where would the "filter by solution" button be found ...Show All
hellomcv Import Database Schema error: Cannot sort a row of size 8132, which is greater than the allowable maximum of 8094.
The error message is clear enough. To understand the problem, let's start the initial discussion with a description of the original database in question. The database has two tables that were at the maximum row size and everything was fine. After adding constraints to the database, those two tables ended up exceeding the maximum row size as these warning messages indicate: Warning: The table 'Table1' has been created but its maximum row size (8065) exceeds the maximum number of bytes per row (8060). INSERT or UPDATE of a row in this table will fail if the resulting row length exceeds 8060 bytes. Warning: The table 'Table1' has been created but its maximum row size (8065) exceeds the maximum number of bytes per row (8060). INSERT or U ...Show All
Jeff Williams Going back to Originating Form
Okay, This may seem like a newbie question, and it probable is. How does one go back to an originating form when the originating form could be one of many, many options. So for example: You have twelve forms. Each named (for simplicity sakes) Form1 through Form12. Form1 can take you to each of the twelve forms. Forms 2-5 can take you forms 6-12. Forms 6-8 can take you forms 1, 2-5, 9-12 or they make go back to themselves (From Form 6 to Form 8 and vice versa) Forms 9-12 can take you 1, 2-5, 6-8 or they make go back to themselves (From Form 9 to Form 12 and vice versa) All Forms can always go back to Form 1 (which easy enough) But if I am on Form 9 and I want to go back to 5 (an orginating For ...Show All
Chris Marts Deserialization error End of Stream Encountered before...
Hello, I am hoping I will end my struggle here. I have confidence in you ;) I am serializing a hashtabls in my sql database in a field of type "image" with length 16. The serialization goes fine. later on in the code, I try to retrieve the value in the image field in a byte array as such: //***** code snippet begins object param = row["Parameters"]; // this is the field that has the serialized value. byte[] myBParam = (byte[])param; // cast it to an object. //***** code snippet ends and then I try to deserialize to make sure that I can retrieve my original hashtables, so I do this: //***** code snippet begins Hashtable myOrigHt = (Hashtable)Deserialize(myBParam); // Which goes to this me ...Show All
GeorgeOu New user / template
Hi I have just installed VB express for the third time and just want to get started. when I try to open a new project I get the followng error "the filename, directory name, or volume label is incorrect. (Exception from HRESULT 0x8007007B" Any ideas gratefully received Thanks for the info, tried changing the directory still doesn't work. I'm trying to install visual studio express editions visual basic 2005 on xp Do you have any special characters in your username that would prevent you from creating new projects Try setting the default project directory to a different folder and seeing if that fixes your issue. Are you installing english VS Expres ...Show All
Phonics3k In MSTest, group all test within a class together
Hello, In MSTest, is there a way to ensure that all tests within a class are run together (Within an individual class, the tests can be run in any order) The problem I'm facing is that I use the ClassInitializer to setup a shared object that is specific to that test (the database). I then run 20 separate tests on this object. However, if I have two classes of tests, then the ClassInitializers conflict. In other words, What I want is all the tests for each class grouped together,like so ClassInitizer_1 Test_1.1 Test_1.2 Test_1.3 ClassInitizer_2 Test_2.1 Test_2.2 Test_2.3 However, the problem is that the tests from different classes are mixed together, and the classInitializers conflict, making the tests fail ClassInitizer_1 T ...Show All
Blackwood How to kill horizontal scrollbar of treeview control
Now, I have treeview with Scrollbar properties is true, it mean that I will have two scroll (vertical scrollbar and horizontal scrollbar) . So, I don't want to use horizontal scrollbar, I want to kill this scroll. Please give some idea or solution for this problem. Many thank, Check the answer you got in the other thread you started. Please: don't cross post in multiple forums! Hi, Setting the Scrollable property of the TreeView to true will display a scrollbar when it is needed. There will be no horizontal scrollbar unless nodes are expanded that take more horizontal space than available. So your question is to hidethe horizontal scrollbar when it is needed Charles Hi, You ...Show All
Raju Sreenivasan source control
does visual studio team system for database professionals incude source control if yes, is the source control at the database level meaning if someone goes into Management Studio will they "see" that a stored procedure is currently checked-out and then they cannot modify that sp. We souce control the filesystem, not exactly the database. In VSTS-Pro database is broken into the Visual studio project which constists of files, which is souce controlled. SSMS is showing the online view of the database, and in my view, has nothing to do with the source control. Yes, it includes the source control at the solution explorer level. SSMS (Man ...Show All
mandrijasevic MSDATASRC Version 7.0.3300.0
I have written a program that works perfectly on my computer. However, when I try to execute the program on another computer, setup fails because the subject assembly is not found. What do I need to do to get the subject assembly on another's computer Will appreciate any and all help on this. Thank you. The dotnet framework 2.0 needs to be installed on the computer you are running the application on. You will also need all the files in the bin directory your exe was in. Try using the publish features of VB Express to create you setup - which will include .net 2.0 as a requirement and install it if its not already installed. It makes deploying applications much simpler. ...Show All
GlitchEnzo Tearing my hair out over a LNK2019
Ok, let me explain my sob story: I am working with the Intel Performance Primative trying to do an FFT as fast as possible. My original compiler was Metrowerks Codewarrior. After reading the IPP manual, I succesfully implemented the IPP code into a DLL using Codewarrior. It is pretty darn fast. After talking with a CS friend of mine, he recommended using the Intel Compiler for even faster code, which is a plug-in for the Microsoft compiler. So I installed my old copy of Visual Studio .NET 2003 C++ compiler with the Intel Compiler on top. Alright, now to the fun part. I use the EXACT same code that I used in Codewarrior, and the VC++ compiler refuses to link succesfully. My code is basically (by basically, I have left out a ...Show All
Pooja Katiyar Exception while creating Team Project programmatically
Hi, Has anybody tried creating a project programmatically using PCW (Project Creation Wizard). I have a code that uses vsipunit.dll and VsipUnit.UnitTestFramework.dll. I am getting following error: ---------------------------------------------------------------------------------------- Error while executing tests : System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.IO.FileNotFoundException: Could not find file 'C:\WINDOWS\TEMP\-evnofn0.dll'. File name: 'C:\WINDOWS\TEMP\-evnofn0.dll' at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean ...Show All
Mike Barry Table relationship
I have 3 tables I am trying to relate for a music player. I was following the example in the msdn however, my relationships do not seem right. Here are tables i want to relate: Table 1: ArtistID ArtistName: Table 2: RecordingID RecordingName ArtistID Table 3: TrackID TrackName TrackNumber TrackLocation RecordingID So the main idea here is that the foreign keys are recordingId and artistID. So what i did is created the 3 tables and then make a diagram to create the relationships. I then was reading this post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=219696&SiteID=1 What i want to do is use 2 different text boxes lets say and as i move from the records in the Record_table (2) the corresponding artist will change with it. How ...Show All
Gilberto Lima VSS Migration hanging TF60047 - how to fix it?
Hi, I'm trying to convert a VSS Database to TFS but TF60047 error lock the PC. Scenario Old PC but New W2003 Installation TFS and VSS on the same PC VSS size 415MB The 1° time i had tried after 48 hours VSSCONVERT write more the 4000 error and 8 tf60047 then I delete all PIN files and ANALYZE many time with different options VSS Database. The 2° time i start VSSCONVERT after 3 days (now is stll run) VSS write more only 11 error but more the 80 tf60047!!! Now the week is finish so i let VSSCONVERT run but on Monday i stop it. How to fix that (BIG) problem Thanks Paolo Botti Robert, thanck you for ur reply. I will try to follow ur rules but I have to stop procces of the 2° try after 5 da ...Show All
mahima Directory Structure - Best Practices Question
I'm sure this is a dumb question, but i'm a little confused about something. I am trying to set up my build machine to be able to build some of our projects (we've moved to TFS for source/version control and work item tracking, but not yet for builds). What are the "best practices" for having all of the required files on the machine to be able to build the sources. Not everything is included in source control for the project being built. Examples of things i'm talking about might be: Output of other projects developed by our team. Output of other projects developed by other teams (or 3rd parties). Includes/Libs from SDKs - WM SDK is the one i'm dealing with right now. I imagine that this can be done quick ...Show All
