drastik's Q&A profile
Visual Studio Team System WSS Customization how to remove Process Guidance?
Not sure if this is the right forum to ask but since it gets created by TFS I'll ask here. I've been creating my own TFS template using the MSF Agile as a baseline and I'm having almost everything the way I want now, except the WSS site. I'd like to remove the Process Guidance from the left menu of the WSS sites created. Does anyone know how I can do this I already removed all the content under it by removing certain things in my TFS template (so when you click Process Guidance it gives 404 in WSS) but I'm not sure how to change the WSS site left menu. Is it the .stp file I need to customize I'm not sure what tool can open the stp file ...Show All
.NET Development XslTransform.Transform(): Different results on different machines?
Hi, I have an application which works fine on my development machine. However, when I used my build on the production machine, I get an Exception. I use code like this to transform a XML string "Text" to its transformed version: XmlDocument oXML = new XmlDocument(); System.IO.StringWriter sw = null ; oXML.LoadXml(Text); XslTransform xslt = new XslTransform(); sw = new System.IO.StringWriter(); xslt.Load(XSLT); xslt.Transform(oXML, null , sw); return sw.ToString(); With the same input string and stylesheet, on my machine, it works fine and on the prodcution machine, it generates an exception. Here ...Show All
SQL Server Report Viewer/Explorer-WebPart missing under SharePoint v3+SQL Server 2005
Hello all, I'm new with SP v3 and the Reporting Services of SQL Server 2005. I did a prototyp report and show it with "SQL Reporting Services Report"-WebPart, but I can't find the WebParts Report Viewer and Explorer in the WebPart Gallery. Please, could somebody give me a clue where the problem could be, or how I could isolate the problem area. Cheers Marc Hi , Can any one help me to create a webpart which is a report explorer for WSS using asp.net. If you any code snippet can you help me out with this. regards Sahu ...Show All
Visual Studio Team System MSDN Academic Alliance
Will TFS be available for universities via the academic alliance program I couldn't find any page with any information on that. Let me also state my opinion on that: I think learning how to organise team development, manage a dev process etc is a key component of any CS education. So, I think you guys should do everything so CS faculties can provide a TFS for all their students so that they learn how to use it. Along that line I believe you should include the Team Suite in the academic alliance program instead of the pro version. I think it is so important to NOT have students use tools that are less professional than what they will use on ...Show All
.NET Development How do I catch an exception in a form
How do I create an exception handler at the form level without writing a try-catch round every event Suppose I have a series of user controls, all of which use a limited set of known exceptions. Let's call them CloseAppException, CloseMdiException, CloseWindowException, SignalWindowException. I wish to handle these in a default manner in a Form superclass that has no controls on it. How do I catch the exception if I have nothing to wrap a 'try' round In VB Open your your project properties and check the "Enable Application Framework" checkbox located on the application tab. Then click th ...Show All
SQL Server Integration Services in BOL: Is this all I get?
Short answer NO, the beta or CTP Books Online that you're using is not all there's going to be. Make sure that you watch for the Web release of BOL that will drop around the time that SQL Server 2005 hits the streets! Read more to understand why. More information SQL Server 2005 is going to be released simultaneously in 8 or 9 languages. Since the documentation team had to lock down early to allow time for translation, the version of Books Online that you'll get on the CD in the box is going to be several months old. Think of the BOL in the box as Version 0.9, while Version 1.0 will be the RTM Web release. Meanwhile we're working non-sto ...Show All
Smart Device Development Problem debugging CE5 app with VS2005 (no activesync)
Hello all, After much searching I have been able to get the deploy feature running with my c++ App from Vs2005 to my CE 5 device. Unfortunately, I am unable to debug. I get a "Unable to start debugging" error message from Visual Studio and not much else. The exe makes it to the device and I can run the exe from the device. I just can't debug it. I still have eVC++4 on my machine so I tried that and I am able to debug the same application using eVC++4. The app is just a simple dialog based windows app created by the wizard. I have done tons of searching on the net and the closest thing ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DirectX Help!
How I can Link DirectX 9 SDK with Visual C++ 2005 Express Edition. You will need to make sure that you have the platform SDK Installed and configured , then update the directX SDK. Moving the thread to the DirectX and Game Development Groups. ...Show All
.NET Development Unload/unbind an assembly
I have a question with respect to loading assemblies and what overhead there is if I continue to load new assemblies. What drives this question is that I have a script engine that loads VB or C# source files, builds a temporary assembly and then loads that assembly and then starts execution from a known interface. Once I'm done with the assembly I would like to release/unload/unbind the assembly and remove the temporary files. I want to do this because I assume that the assemblies are taking up space in memory and need to be released. Is this so and if it is so how do it I've answ ...Show All
.NET Development script callback for treeview(asp.net 2.0)
anyone have implmented the script callback in treeview control , guide me or give me some links atleast, urgent Hello, The best place to ask ASP.NET related development questions is usually the ASP.NET Developer Forums at: http://forums.asp.net/ - which are maintained by the ASP.NET developer community and product team. Hope that helps, Stephen [Microsoft Common Language Runtime: Security - Developer] http://blogs.msdn.com/stfisher ...Show All
Visual Basic Remote computer
I am now doing cybercafe for my final project. i type this command at the admin pc at command prompt shutdown /s /m \\mymachine_name Why when i type this command it tell me that is access denied May i know that how can i let the admin pc to access to the client's pc Calvinkwoo, this isn't a programming issue, and as such, is not appropriate for this forum. You have a security issue that you need to resolve. ...Show All
.NET Development error in Deserialization
i have a class thatz derived from MarshalByRefObject; i' have a client that has to serialize and deserialize this class.Deserialization throws exception. public class TestClass:MarshalByRefObject { public TestClass(){ } } in TestClient ihave this code //TestClient.cs BinaryServerFormatterSinkProvider provider = new BinaryServerFormatterSinkProvider(); provider.TypeFilterLevel = TypeFilterLevel.Full; IDictionary props = new Hashtable(); props["port"] = 8085; TcpChannel channel = new TcpChannel(props, null , provider); ChannelServices.RegisterChannel(channel); Remotin ...Show All
Visual Basic Setup Wizard
I purchased Visual Basic Standard 2003 and I see that there is no setup wizard.. Isn't there supposed to be one ...Show All
Windows Forms How can I reach the Tag of a checkedListBox-Item??
Hi! I created a CheckedListBox. Every contained item got an unique Tag: ListViewItem baItem = new ListViewItem(bauabschnitt.BA_Bezeichnung); baItem.Tag = bauabschnitt.BA_ID; listBA.Items.Add(baItem.Text); Now I want to loop through the selectedItems and retrieve the Tag of each item. But I only can do something like this: foreach (int indexBA in listBA.CheckedIndices) { string baBez = (string)listboxBAS.Items[indexBA]; ... } Isn't it possible to retrieve the Tag of an item Thanks, Barthi If you are sure that each item in your CheckedListBox is a ListView Item then you can simply iterate thr ...Show All
SQL Server how can i create replication
hi, i am new to sqlserver i want to know how can i create replication Double click on the job in the monitor and that should give you more information. There should definitely be more information regarding the failure. If this is the first time that the job is run, please see what the job is running as, what credentials is it using to connect to the Publisher, Distributor and Subscriber ...Show All
