JonEagle's Q&A profile
Visual Studio Team System is there a way to add more priority levels?
i have looking around for a while trying to find some way where i can add more priority levels and instead of have 1 2 3 i have critical high etc is there any way of doing this and is it possible with the process template editor Thanks You might want to contact the company that created Process template editor. Meanwhile, you can use our command line tools witimport and witexport for editting the work item type to add new priority values. http://msdn2.microsoft.com/en-US/library/ms253163.aspx http://msdn2.microsoft.com/en-us/library/ms253051.aspx Let me know if you have more questions! ...Show All
SQL Server Getting HelloWorld_CLR sample to work
Hello, I have been trying to get the app installed and running; I've updated the install script to point to the right server and it worked. I've run the ALTER DATABASE ssb_HelloWorld SET ENABLE_BROKER ; and the EXEC sp_configure 'clr enabled' , 1; and the CLR seemed to have problems while getting replies back from the server. However after repeated retries it worked well. Sporadically I would see an error. After uninstalling the sample and installing it again - to document the steps previously taken - the CLR application is no longer receiving messages from the server. Any idea about what setting might be needed Thanks, See this previous post: http://forums.micro ...Show All
Software Development for Windows Vista Dynamic Delays help Please
Hi i'm making a Task manager for clients. I am representing a time period by a Parallel activity and each task to do that time is a Listen with a HandleExternalEvent and a Delay. What i need to do is have the Delays to be "the rest of today" + some presubcribed window. I'm Creating the WF instance from a XAML file so i can easily edit the first time period using System.DateTime.Now and some simple math. But once the WorkFlow is Instantiated is there away so that once one time periods Tasks are complete the next set of delays will be the rest of that day plus their own timespan I was thinking of building a Custom Activity that Inherits from DelayActivity and making it's Execute method something like: Execute(){ ...Show All
Windows Forms Postback not happening on selectign a treeview node
Hi, I have a treeview control wherein the parent nodes are populated with single data and child nodes are populated with tables. Here is how it is populated: dRow is a row in a datatable. parent node: newNode.Text = dRow[2].ToString(); Child node: newNodeChild.Text = "<Table width='300px'><TR><TD>" + dRow[4].ToString() + "</TD><TD>" + dRow[3].ToString() + "</TD></TR></Table>" ; The selectedindexchanged event is called only when I select a parent node. It is not called when I select the child node. How do I make the postback to happen on selection of the child node also ...Show All
Visual Basic Visual Studio 2005 SP1
Hi all I just want to know if SP1 for VS2005 release date will be in the ending of 3rd Quarter ! anyone knows ! thsk JSB I think you would probably be more likely to see it in 4th quarter - before the end of the year. I dont think its scheduled to be released before end of the month. ...Show All
.NET Development Confused with xsd.exe output!
I thought I understood what was private or public and how it can be referenced. But I just tried out the ability to auto generate a calls for a data connection and found the following declarations! Can someone let me know if this is right If so what does it mean or should it have created a different set of declarations there are many others these are just a sample! public private : __property System::Data::DataColumn * get_Reference_IDColumn(); public private : __property System::Data::DataColumn * get_S_DateColumn(); public private : __property System::Data::DataColumn * get_S_TimeColumn(); public private : __property System::Data::DataColumn * get_Section_Label1Column(); public private : ...Show All
SQL Server Better was to handle fixed width flat files?
Is there a better way to handle fixed width flat files than the built-in SSIS capability I have a fixed width file with over 400 columns and it looks like I need to manually click lines where each column starts/ends (quite tedious and prone to error). I have an excel version of the spec with start position, length, and data type for each column. So far it looks like the only way to automate this task is to somehow automatically generate the package XML from the spec and paste it into the dtsx file. Anyone know of a better way Lee, first I applaud your ingenuity. I'm going to share it with a few others who've painfully constructed flat file conns with several hundred columns in fixed width and ragged righ ...Show All
Smart Device Development Windows media player 11 beta
it will not play mpeg 2 files it says there is a audio codec missing and it cant be found to be installed I tryed to uninstall media player 11 it will not go even from uninstall windows components ,i try to install 10 and it says there is a later version installed .but no windows media in program file folder. Sorry but this is the wrong forum to post your question. Please post your question in the appropriate newsgroups, which maybe located at: www.microsoft.com/communities Thanks! ...Show All
Windows Forms Problems with the SYSTEM account in task scheduler
I have some problems with my task scheduler on a w2k P – I have been told to use Microsoft "SysTaskFix.exe" utility to resolve the issue but I can’t find where to get hold of it! Anybody here ho knows, please ...Show All
Visual Basic Me.MouseButtons = mousebuttons.left Error( Read Only), But Is it????
Is there anyway to get around the example I used On the heading Me.MouseButtons = mousebuttons.left means, Left Click Nick Cammarata 14 yr. Old Programmer System.Windows.Forms.Cursor will give you control over the mouse. Use Cursor.Position to move it around (in screencoordinates, so use the Control.PointToClient() to translate that into coordinates on your control, and Control.PointToScreen() if you need to convert to Screencoordinates. ...Show All
Visual C# Using C# to register to a call back function written in vb.net
Hi, I want to use C# to register a call back function written in VB.net. I have the dll in VB.net that I am referencing in C#. what should I pass in the argument of RegisterCallback() function Delegate Sub DelegateSubscribeCallBack( ByVal publishedData As String ) Private CallBack As DelegateSubscribeCallBack Public Sub RegisterCallback( ByRef CallBackFunction As DelegateSubscribeCallBack) If CallBack Is Nothing Then CallBack = CallBackFunction End If End Sub Thanks, Thanks, but I got this error message on this line vbObject.RegisterCallback(ref new DelegateSubscribeCallBack(MyCallbackMethod)); It did'nt like new ...Show All
Visual Studio Express Editions Transfer Data from one form to another
Hi how do you transfer data a user has typed in on one form to a label on the second form I am dabbling in Vb.Net and this seems like such a simple concept, but trying to find it written this simple is EXTREMELY APPRECIATED. Thanks for you input, it is hard to wade through the information overload sometimes. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Mulit Core programming
Hello, I would like to know how to make a multi threaded application using XNA Framework Is it possible to set Draw method on a thread and the Update method on another And how to do it thanks in advance I suspect this is something MS need to provide more documentation on when they ship. I'm not 100% sure what the threading API will be like for the 360, not what the best practises are for DirectX - I know you have to be very careful when using DirectX with multi threading - usually people keep their rendering on one thread and do updates/physics/AI etc on others to be safe. Don't forget to create your device with the multi threading flag! If I was you I would add something to connect reque ...Show All
Visual C# How do I code a sumation?
Hello, I know c# must have a sumation command in here somewhere. I am trying to code this Sumation I will use E for the sumation command. t E (C/t) / (1+r)^t t=x So I need the sumation for C at time t divided by 1+r to the t where t = x You may recognize this as the formula for NPV. It is outlines in wikipedia here. http://en.wikipedia.org/wiki/NPV Thanks for the help. The code construct looks something like this: double s = 0; double t = something; for ( i = 0; i < n; ++i ) { s += theNextTermInTheSeriesDependingOn(t); t = NextT(); } return s; ...Show All
Visual Studio Team System Check-in/Shelve programmatically with dialog?
Hi, does anyone know if there is a possibility to open the usual Team System Check In dialog programmatically I would like to have a special list of files showing in the dialog. I have the Visual Sudio 2005 SDK installed, but would be very happy if someone could point to the right place or tell me if this can be done at all. Thanks, Armin Sorry to disappoint you, but in current version the dialog cannot be used for extensibility purposes. You will have to implement your own dialog. Regards, Eugene ...Show All
