Nay Lin's Q&A profile
Visual Studio Team System Problems deleting Queries from Currituck.xml
I'm trying to produce a minimal MethodologyTemplate - see my other posts. I have successful removed most of the initial tasks, work item type 'Qos', work item type 'risk' and work item type 'Scenario'. I have also added the new work item type 'Story' and added a corresponding query 'All Stories'. All this seems to work fine. However there are the following issues 1. Although the Team | Add work item menu correctly shows Bug, Stor ...Show All
Visual Basic synchronous vs asynchronous
I am a newbie and can anyone explain to me the difference between synchronous vs asynchronous programming Does .NET framework (VB 2005) is synchronous by default asynchronous means the code in the background. You should use this for procedures that take a long time to run so your program does not appear to be locked up. Synchronous means the code runs in the foreground. ...Show All
Visual Studio Is it possible to get the CodeElement of a projectItem, when the item is not the active document?
Hello, I have some problem with the following code: EnvDTE. Document doc = item.Document; // EnvDTE.CodeElements els = doc.ProjectItem.FileCodeModel.CodeElements; EnvDTE. CodeElements els = item.FileCodeModel.CodeElements; either way my FileCodeModel is null, since my Document is not the active document. Now my question is, if anybody knows, if it would be possible to get the code element even it is not set to active document. ...Show All
Windows Forms .NET Framework Deployment
This thought started in a different thread, but deserves it's own. I've heard it said (by Billy Hollis) that eventually the .NET Framework will be ubiquitous. That is a logical assumption, since Windows Server 2003 came with the Framework installed, and ...Show All
.NET Development Remoting Questions
I have a remote object that must be used by multi ple client possibly at the same time for across the net.My object only has 5 functions .The finally step(function does a sql process that is ran by an exe that I call from my remote object on the server.For some reason when one client is doing this process and the next client tries to just get connect to my object they get a remoting error and can not connect. Remote object <code> Imports S ...Show All
Visual Basic Using SendKeys (or equivalent) to a Terminal Server Windows
Hi all, i'm developing a simple application that reads data from serial port which is attacched a barcode reader. The trick is to send this captured bytes to a program that is running on a Remote Desktop Connection window. Is not necessary to find a window on remote host 'cause there's only one window running in remote desktop. I've tried to use sendkeys function andf sendinput function without success. There is a method to do this thing Thank ...Show All
SQL Server Error message "Interface not registered"
Hi I got the following error message when I make a new integration service project Failed to save package file "C:\Documents and Settings\Administrator\Local Settings\Temp\1\tmp2B.tmp" with error 0x80040155 "Interface not registered". Can someone help Me Hi there, This looks like a setup issue. Did you have a prior build of SQL/VS 2005 on the machine If so, likely the machine wasn't cleaned up prior to setting up. ...Show All
.NET Development DelegateSerializationHolder(): InvalidCastException
$exception {Function evaluation disabled because a previous function evaluation timed out. You must continue execution to reenable function evaluation.} [System.InvalidCastException]: {Function evaluation disabled because a previous function evaluation timed out. You must continue execution to reenable function evaluation.} _className: null _data: {System.Collections.ListDictionaryInternal} _dynamicMethods: null _exceptionMethod: null _excep ...Show All
.NET Development Problems with WebClient.UploadFileAsync
Hi, Consider the following code: //-------------------------------------------------------------------------- public Form1 { WebClient client = new WebClient(); client.UploadProgressChanged += new UploadProgressChangedEventHandler (client_UploadProgressChanged); client.UploadFileCompleted += new UploadFileCompletedEventHandler (client_UploadFileCompleted); Uri uri ...Show All
Visual Studio Team System Common/Shared Assemblies
First let me say I'm new to TFS, just got it installed over the weekend. I have a bunch of code that is currently in VSS, and it is currently structured as follows: $\ Projects Project1 Project2 Project3 Common/Shared Assembly1 Assembly2 Assembly3 I get how I should move the projects into TFS, but what about the assemblies Project1 and project2 use assembly 1 and 3, I don't want to duplicate the assembly projects, code, config ...Show All
Windows Forms how to shutdown or exit windows using vb.net
hi all ... can anyone tell me how to shut down a computer using vb.net .. if possible can anyone provide me with the code thanks In short: 1. Create a new VB Class Project ("WinShutDown") 2. Paste the code from inside m ...Show All
Microsoft ISV Community Center Forums Source Object as a query
Hi i have a form that contains 2 text box's and a subform what i really want to do is to run a query and not have an input box popup i would like the dates entered into the 2 text box's to be used in the query of the subform and display a table that shows all records that are between date 1 and date 2. SQL code: PARAMETERS [First] Text ( 255 ), [Second] Text ( 255 ); SELECT Equipment.* FROM Equipment WHERE (((Equipment.[Date Installed])>[Firs ...Show All
.NET Development Possibility to query the CLR execution engine ?
Hi, anyone out there who knows if (and if so, how) it is possible in the .NET framework to obtain the list of objects which are actually managed in a running application Thanks. Sure. Use Assembly.GetTypes() method: http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfSystemReflectionAssemblyClassGetTypesTopic.asp ...Show All
Visual Studio Team System Reading test data from vsmdi file
Hi All, I am new to this gruop. I have been working with TFS for around 1 month. I have programmed it in C# to get the WorkItems as per the Team Requirements (i.e connecting to the server/ getting project names/getting bug details etc...). I was trying to get the test case details using C#. These test cases are there in the 'Source Control' listed with the particular Team Project in the Team Explorer. The test cases file is a *.vsmdi file. ...Show All
Visual Studio Team System Web tests resulting in Internal Server error due to Invalid ViewState
I am seeing an odd problem when testing our web site. I have no problems navigating through our website manually from a web browser and experience no problems when creating a web test that navigates through our web site. But, when I run the web test I created, then I keep getting an "Internal Server Error" on the first server page transfer. When I look at our server logs it indicates that the problem is caused by an invalid ViewStat ...Show All
