Software Development Network Logo
  • Visual Studio
  • Visual Basic
  • Smart Devicet
  • IE Development
  • Windows Forms
  • SQL Server
  • VS Team System
  • Windows Vista
  • Visual C#
  • Audio and Video
  • .NET Development
  • Game Technologies
  • Visual FoxPro
  • SharePoint Products
  • Visual C++

Software Development Network >> bw12117's Q&A profile

bw12117

Member List

Denis Cilliers
OscarKwok
Elaine.Wong
avalancheseah
moondaddy
Adam Plocher
leibnizster
XNA.Zach
donbox5
George Abraham
Harris140c
~rabin
QWERTYtech
Matt Falzon
VirtualJuha
asiaindian
Tryin2Bgood
ChaCh
kangalert
vincent90152900
Only Title

bw12117's Q&A profile

  • Visual Studio Team System Transitioning WorkItems from one TeamServer project to another

    I had an idea this morning and I would like comments to see if it is possible. I want to split issues between the development and software support teams. So basically I thought I would set up a server for Software Support to handling Questions, Suggestions and Bugs from customers. Once they get triaged and Software Support determines that it is a valid WorkItem I would like to automatically create a new WorkItem in a Dev project. One way this could be done is as a process that runs at scheduled intervals which checks a field in the Software Support WorkItem to see if its valid and then create WorkItems in the Dev Project. Does anyone have any other ideas for a better implementation or comments I haven't tried it, however ...Show All

  • Visual Studio Team System Test List group of tests are not executing in the correct order

    I have created 1 manual test called "GER-Setup W2KSP4" I have created 1 ordered test called "W2K SP4 TYPE B+ DD" I then created a test list which contains both this manual and ordered test. I want "GER-Setup W2KSP4" to run first...however when I run this test list it starts with the first test. Any ideas NOTE: that the manual test "GER-Setup W2KSP4" is listed first in my test list. Is there a way to set a priority to tests within a test list Thanks Newbie Hi Mary, I am not sure if you have already looked at this resource. If not then this might help http://msdn2.microsoft.com/en-us/library/ms182460.aspx Thanks, Anjana [MSFT] Microsoft Developer Support T ...Show All

  • Windows Forms How to bind a DataGridViewComboBoxColumn?

    Hi! I'm trying to add a combobox in my datagridview, but i can't show any value. I have two DataTables, A and B. I want that the DataSource of my DataGridView be A, and the DataSource of the DataGridViewComboBoxColumn be B, so i can select any value from B in any value in A. I try: dvg_variantes.DataSource = A; DataGridViewComboBoxColumn col = new DataGridViewComboBoxColumn(); col.HeaderText = "Nexos"; col.Name = "Nexos"; col.DataPropertyName = "ID"; col.DataSource = this .B; col.ValueMember = "ID"; col.DisplayMember = "NOMBRE"; col.ReadOnly = true ; Debug.Print(col.Items.Count.ToString()); // --- > 0 dvg_variantes.Columns.Add(col); }   I think that the problem is DataPropertyNa ...Show All

  • Visual Studio Team System Difference between stakeholders and constituents?

    Stakeholders and constituents sound like the same group of people. What's the difference between them Are they interchangeable For example, an end user is a stakeholder to a project, can I say he is also a constituent for that project Thanks in advance. Hopefully what is a "constituent" was sufficiently covered in the thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=936639&SiteID=1 A "stakeholder", as defined on page 60 of the MSF Essentials book , is "anyone with a vested interest in the effort...". Therefore, comparing the two: a constituent is someone (or something) being advocated (often indirect influence over project requirements) whereas ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Better to rotate a sprite or animate it?

    Is it better to create an image and then rotate it to achieve an animation (for movement as example), a ball for example, or better to have the image contain all frames that are needed and just select the area of the image that is needed in the frame (again, for movement as an example). I hope that made sense Basically, I want to have a ball roll across my screen, and I am just wondering which technique provides the best options. Thanks for any opinions. Well the answer is, it depends You may get a better image quality if you render each frame and display the approriate frame, but you will probably get smoother movement out of having a single image and rotating it, since you would have to have a lot ...Show All

  • Visual Basic Datagrid

    How can I produce a total for values in a datagrid and them display them in a label Where: dgv is the name of your DataGridView contol. "columnName" is the name of the column the total of which you are calculating. lblTotal is the name of the Label control wherein you wish to display the calculated sum. Dim total As Integer Dim c As Integer = dgv.Columns("columnName").Index For r As Integer = 0 To dgv.Rows.Count - 1 total += DirectCast(dgv(c, r).Value, Integer) Next lblTotal.Text = total.ToString() You could of course simply initialize c to the column index yourself but you'd have to remember it if you changed the order of columns later. If you were going to go this route ...Show All

  • Visual Studio Enumerating the IVsTextViews

    I'm trying to listen to text changes in all IVsTextViews. I've figured out how to listen for register/unregister events, but if my addin is loaded after VS starts, there may be IVsTextViews that are already registered, and I never get an event for them. I figure enumerating the existing views with IVsTextManager.EnumViews should do the trick, but for some reason I can't seem to get it to work. There are no docs, but the IDL file has the following function definition in IVsTextManager: // Enumerate views. Pass NULL for pBuffer to get all views. HRESULT EnumViews ([in] IVsTextBuffer *pBuffer, [out] IVsEnumTextViews **ppEnum); When I try the following: ServiceProvider sp = new ServiceProvider ((Microsoft.VisualStudio.OLE.Interop.IServiceProvi ...Show All

  • Smart Device Development How do I record wave into a stream?!

    I try to record built-in microphone voices into a stream and at the same time read the stream with another function. How do I do this ! use WaveIN API ! OPENNETCF or another way ! ( It try to draw live waveform for built-in mic. voices) ...Show All

  • Visual C++ How to out put the value of a variable, during debugging?

    During debugging, How can I make the debugger to out put the value of a variable and the return value of a function OutputDebugString works too. Even if you're not debugging and use SysInternal's DbgMon utility... ...Show All

  • Windows Forms how we can get the dataGrid row values....

    1)i want to get the all the values which is enter in the rows 2)i want to display the value in the datagrid which i just enter in the textbox and press enter..... thanks Hi Ather, You would have to use: foreach( DataGridRow row in this.myDataGrid.Rows ) { TextBox first = (TextBox) row.FindControl( "_first" ); String input = first.Text; ... } Good Coding! Javier Luna http://guydotnetxmlwebservices.blogspot.com/ ...Show All

  • .NET Development Xml Serialization of Custom Collections deriving from CollectionBase.

    Hi, I have seen several posts on the net on the following issue of xml serialization of custom collection classes deriving from CollectionBase. "you must implement a default accessor on AccountCollection because it inherits from ICollection”. System.InvalidOperationException: You must implement a default accessor on MyNamespace.MyClassList because it inherits from ICollection http://www.dotnet247.com/247reference/msgs/5/27024.aspx http://www.topxml.com/ASPNET-Webservices/rn-245057_ICollection-default-accessor.aspx And the obivous answer for all these problems is implementing the "default accessor" for your custom class. But no where I could find details on, why does the xmlserializer need a defa ...Show All

  • Software Development for Windows Vista Windows WF installation requirements

    What are the requirements for developing Windows WF applications It lists Windows Workflow Foundation Runtime Components as a requirement but I cannot find this anywhere. I assume this is a subset of fx3.0 runtime components. Do I need to install fx3.0 Do I need to install the Windows SDK separately I ran the installer for Windows WF VS2005 Extensions but I cannot find anything that was installed on my machine. Are there any other requirements Thanks. Here is link that lists out what you need to install http://www.netfx3.com/blogs/news_and_announcements/archive/2006/11/06/.NET-Framework-3.0-has-been-released_2100_.aspx HTH Pradnya ...Show All

  • Visual Studio can not install Visual Studio 2005 extensions for .NET Framework 3.0 (WCF & WPF), November 2006 CTP

    The installation error message is: You must have installed at least one of Visual studio 2005( standard, professional, Team system) Visual C# Express 2005 Visual Basic Express 2005, Visual Web Developer Express 2005 Please install one of these versions of visual studio 2005, along with the msdn documentaion and restart setup. I installed Visual C# express 2005 , Visual Web Developer Express 2005, Visual studio 2005 team trial version. I still got this error message. Thank you for any help. I am not sure about the supportability part , but would surely like to look into what is causing the problem. Please send me the following info 1) Download the tool msidebug.reg.tx ...Show All

  • Software Development for Windows Vista Sample Simple-STS for RC1+: Cannot retrieve a Managed Card from SampleSecurityTokenService

    I can create *.crd without any problems. However, I’m unable to retrieve the Managed card form SampleSecurityTokenServices. Repro: 1. Run SampleSecurityTokenService.exe to accept Managed Cards 2. Go to https://www.fabrikam.com/CardSpace/Sample.htm and click on “Click here to get the Token” 3. Select the Managed Card and Send. Windows CardSpace tries to contact https://www.fabrikam.com:7001/sample/trust/selfissuedsaml/mex and receives the following error. “Your data could not be retrieved from the Managed Card. Check your network connection and verify you have supplied the correct authenticated credentials." In the Event Log, I found the following message: There was a failure making a WS-Trust e ...Show All

  • Visual Studio Tools for Office End of Line

    Hi, i am working on [C#] VSTO 2005 to perform Office 2003 automations. The code to go to the end of the document is something like object oEndOfDoc = "\\endofdoc"; wrdRng = oWordDoc.Bookmarks.get_Item(ref oEndOfDoc).Range; Is there a way to go to end of a line or a table which is inbetween a document Is there a predefined bookmark for end of Line I need to insert a table and a paragraph inside a sub-heading in between the document. I was able to insert the table using a bookmark defined after the sub-heading. Now how can i go to the end of that specific inserted table. Hi AmrishDeep, I don't belive that there is a bookmark option for end-of-line currently in office 2007. But it sounds interesing. You could subm ...Show All

©2008 Software Development Network