Martyburns's Q&A profile
Visual Studio Team System When will the vb6 & vs2003 Plugins be available?
will we have to wait till the final release before seeing these its just we have a source safe db that we want to convert onto Team System. but there is some vb6 source code in there. and im unsure what will happen if we convert. will we still be able to access this code and will in be check in/check out enabled any help greatly appreciated! Cheers, Craig If you are speaking of the MSSCCI plug-in that Doug Neumann mentioned in his TechEd 2005 breakout session in Orlando, it'll be sometime close to or after we ship this version. It will not be included "in the box". The current plan is that it'll be availabl ...Show All
Visual Studio Team System Customizing bug form
Hi there, How do I make sure that the group box is only as big as it fills all the controls in it and does not leave any empty area, so that it looks better as well I can utilize maximum area of the form. Basically how do I set/control the height (as I can do for width by percentwidth attribute) of any control or group in form Thanks, Anu Hi Sagar, Do you know how I can make all of my FieldControls the same size I have several groups with controls in them. However some controls are larger than others. I want them all to be the same size (width x height). Is there an attribute for the Control element to ...Show All
Visual Studio How can i force the placement of a port on its parent ?
I would force the position of a port on the bottom edge on its parent. Is it possible to implement this feature There is a PortPlacementHelper property but it's a non overridable static property. Is it a way Thanks, Hi Malain, You need to write a BoundsRule for the Port shape. BoundsRules can be applied to any shape, and are used (1) to restrict how the user can resize the shape (not applicable to Ports) and (2) to restrict how the user can place the shape. using System; using Microsoft.VisualStudio.Modeling; using Microsoft.VisualStudio.Modeling.Diagrams; public p ...Show All
SQL Server SQL Server 2005 Remote Connection Problem... Big Time.
Hi, I installed SQL server 2005 express edition on my windows server and I had no problem with connecting it remotely through Management Studio, then I removed it and installed a full edition SQL server 2005. That's when it's gone all wrong. Now I can't remotely connect the server through Management Studio. The error I get is the same as some of the people in this forum has which is: "An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network In ...Show All
Game Technologies: DirectX, XNA, XACT, etc. [directx]loading Texture from custopm format
i want to load a texture from a custom image format file. i have loaded my datas in an Image object, i can draw them on screen using gdi i try to load them like this : Bitmap bmp = new Bitmap( img ); Texture t = new Texture( device,bmp,0,Pool.Default ); and i get an exception. in order to validate i haven't make any mistake i try this: Bitmap bmp = new Bitmap( filePath ); Texture t = new Texture( device,bmp,0,Pool.Default ); i got the same exception finaly i try: Texture t = TextureLoader.FromFile(device,filePath); and it works how can i made my original solution work ...Show All
Visual Studio Team System Can't add domain user to TFS groups
When I select "Add Windows Users or Groups", it only shows the local machine, I can't browse to the domain, and can't add user in the form "Domain Name\User Name". The machine has already joined to the domain and the current user is the TFS administrator (also Domain Admin). How can I add domain user to TFS groups Thanks! While this may not specifically be your issue, since you have your dc on the same box as the AT I wanted to make sure you were aware that we've seen issues reported where AD was installed AFTER IIS, etc. We've posted some documentation that says that you should install AD right after the Windows install. marc ...Show All
.NET Development How to use Type.GetType(string)? Doesnt seem to work.
I'm trying to write a function to genericly return a new instances of a Windows form control based on its typename. It would seem that I should be able to do something like. Activator.CreateInstance(Type.GetType("System.Windows.Forms.Label")) to accomplish this. I can make Type.GetType work for simple types such as "System.Int32" or "System.String" but it does not work when I ask for a label or textbox. Obviously I'm not getting the typename right, but it seems right to me and I really dont know where to look next. Please help! Bill "System.Windows.Forms" is different then "tyepof(Label).Assem ...Show All
.NET Development Sqlparameters open or close
anyone know for sqlparameter could be open or close Another thing you should do is look at the Data Access Application Block for .NET v2 they have helper code along with supplemental documentation that can help you manage parameter issues like this. ...Show All
Visual C++ Assembly Information on Visual C++
I am having trouble on the assembly info for my project. Back on Visual C# It was really easy you could just click on the "Project" Menu you and then click on the bottom which was the Properties window for your project, and then you could just type in the stuff, but now I can't figure it out on how to setup the info like the version number on the finished application and my company name or any of that... Can anyone help Take a look at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=160694&SiteID=1 since it deals with similar issue. Hope this helps! Thanks, Ayman Shoukry VC++ Team ...Show All
Visual Studio Two locations of VSS.
Hi there. I'm with a problem here that I thinl any of you can help me. I have a solution in .NET 2003 and this solution works fine. But now, we need some changes on this solution and another company will do that. The problem is on "Place A" I got VSS and the solution working fine and now I need that another location "Place B" (that is on another side of the city, state or country) use my solution, modify, add, remove whatever (ok, until here) but this another company need to source control too! How can we put on source control a project that was already under source control in one place to another location Remember ...Show All
Visual C++ difference between value type and ref type (C++ CLI)
Hi all, I'm programming with C++/CLI and I'm not sure of this concepts. I hope you can make it clearer for me. What exactly are value type, using the value keywork What exactly are ref type, using the ref keywork And specially, What are the difference between the two Thanks a lot in advance for you help. Best, Nicolas Thank you for all your answer. I will use this types more efficiently now Take care about your health Nish Best regards, Nicolas ...Show All
Visual Studio Team System Enabling Code Coverage in a Remote Desktop Session
Does code coverage work in a Remote Desktop session I have VS 2005 Team Suite installed and opened in a Remote Desktop. I am able to run Unit Test for a Class Library without any issues but everytime i try to select the Code Coverage option in the Configuration dialog, the dialog just closes automatically without an error message of any kind..is this a known issue My Config is as below :- Dual Proc running at 2.8 GHz 4GB RAM Windows 2003 Stadard Edition Visual Studio 2005 Team Suite Thanks, Krishna Hi Krishnaswin A similiar issue has been reported by another customer. In order to diagnose ...Show All
Visual Studio Express Editions How to set traffic priorities?
Tell please! How it is possible to establish a priority on the traffic on this or that process or a thread hi, the thread has periority property you can use it something like this MyThread.Priority = ThreadPriority .Normal MyThread.start() hope this helps ...Show All
SQL Server RDA Pull from Windows Server 2003 gives Native Error 28035
I currently have a Vs.Net 2003 Pocket PC application that uses sql server ce 2.0 to push and pull data from Sql Server 2000 to the Pocket PC. The sscesa20.dll isapi agent is installed on a Windows 2000 server and points to another server that hosts the SQL database. In this configuration everything works like a charm. I am in the process of upgrading my application server to Windows 2003 Server but the RDA PULL process does not work, giving an Native Error of 28035 EVERY time. I use the exact same code in the app but when I point to the isapi agent on the 2003 box it does not work. When I connect to the the sscesa20.dll via the Pocket IE it ...Show All
Visual Studio Help collection manager missing
When I open the Visual Studio documentation and go to index, I cannot find the Help Collection manager under "collection manager." I cannot integrate the PSDK, DirectX sdk, and National Instruments help into the visual studio collection, but other fellow employees can fine. How can I get the collection manager back so I can integrate the other help files Thank you :) I did a repair install, and the Collection Manager came back. However, when I checked to include the PSDK and restarted it, it went through what looked like the update process, but when it finally opened the PSDK help did not appear ...Show All
