Ralph Anthony's Q&A profile
Visual Studio Team System More on my question...Resolve Bugs automatically.
Hi, How are Bugs added I can run a test and add them manually by right-clicking on the test result and adding or associating the result with a Bug Work Item. However, I would like to know whether Bugs are ever automatically added, and if so, how one can configure this process. E.g. I see that MSF Agile comes with a few pre-added bugs - I suppose they were automatically added by the Build process. Bugs won't be added during ad hoc builds by the developer while s/he is developing, I suppose. Are they added automatically during a Team Build Are bugs ever automatically added, and if so, how Kind Regards ...Show All
Visual Studio 2008 (Pre-release) Has anyone already styled a scroolbar using Expression designer?
Hi, If you do, can you please help me I tried it, but doesn't work. I want it to change al the scrollbars in my window (textbox scrollbar, general scrollbar,...) tnx in advance This isnt very easy right now but I was able to do it with a combination of editing directly in Expression and hand manipulating the XAML. I added a Scrollbar (not ScrollViewer) to the stage from the library. Then I edited a copy of the style (easily accessed through right click on the ScrollBar itself). Note, I did not edit a copy of the template. At this point you have to exit the "style" editing mode so you are bac ...Show All
Visual Studio Tools for Office Text / MS Word in .net and printing - any suggestions?
I love the .net framework and what it has to offer. But it seems it is lacking a bit on text and graphic manipulation. I have a situation where I need to throw fairly simple variables into a MS Word template and simply print the template. The template has images and text. The user will need to preview the printable version in a .net windows form. Unfortunately, I'm not even sure how to host a windows word document inside a windows form - let alone print it. I heard you can use activex container to host a windows document - I may try this if nobody has a better solution. I think .Net needs a better text editor control... ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Directx and vb6 error "AUTOMATION ERROR -2146073472 DIRECTX"
i try to make chat app with direct play 8 and when i when i connect to server in the vib chat box i get this message run time error : AUTOMATION ERROR -2146073472 (80158480); ------------------------------------------ AND I HAVE other qustion why winsock can 't connect to other machin over the internet i try it many onces and in the end i used dircet play 8 is it are good divice to creating chat room like DJchat is the mirosoft campany hideing the informations i also try Winsock API and it IS NOT work why The VB6 COM wrappers for old versions of DirectX are not supported MS pr ...Show All
Visual C++ Vusial Studio 2005 samples
Hello all Does Visual Studio 2005 come with " Visual Studio" code sample If it doesn't then does this code sample exists anywhere else Regards, Sergei Sergei, I believe I was referring to these samples at that meeting: http://www.windowsforms.net/Default.aspx tabindex=4&tabid=49#WinForms%20V2%20(Whidbey ) ...Show All
.NET Development .Net 2.0 Installation Problem
I have installed .Net 2.0 on my computer however my projects within Visual Studio 2003 are still using old system dll versions of the .Net Framework. How do i tell it to use the new .Net 2.0 Framework. VS2003 does not use 2.0. There is no way to make it do that. You need VS 2005. For further questions on VS use http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=26&SiteID=1 ...Show All
.NET Development why unable received sended mail?(system.net.mail,.net 2.0 )
< %@Page Language="VB" %> <%@ Import Namespace ="System" %> <%@ Import Namespace ="System.net" %> <%@ Import Namespace ="System.net.mail" %> <script runat="server"> Private Sub Page_Init() Response.Expires = -1 Response.CacheControl = "no-cache" End Sub Private Sub Page_Load() End Sub Private Sub ExecuteSend(ByVal Sender As System.Object, ByVal E As System.EventArgs) Dim a As New System.Net.Mail.MailAddress(" example@hotmail.com ") Dim a2 As New System.Net.Mail.MailAddress("Received @hotmail.com ") ...Show All
Visual C# How can I prevent an event's parent version to be processed?
I have a function -with a common name- both in the child and in the parent form. And I do NOT want the event (in the parent form) to be processed while the event in the child prossesing... (hint : In VFP the equivalent phrase is 'NoDefault') Thanks in advance. Can you clarify If you're using the class name when calling the function (e.g. class.SomeFunction()) this shouldn't happen, unless I'm not understanding your question. Josh ...Show All
Windows Forms Data Binding
Hi, How should i correct the statements below, so that the ID text box will shows the ID=1 when the arrow of List View point to ID=1 Or is that any other methods to do this IdTextBox.DataBindings.Add("Text", dataset1.Tables["employee"], "ID"); Thanks. You're welcome! Glad I could help (I noticed that I left something out of the code I provided ... I forgot to add the ListViewItem to the ListView, but I see you did it correctly). ...Show All
.NET Development Windows update reset the runtime security policy.
Hi, I manage to configure .NET framework 1.0 so that local PC is able to run a window application from network. However, when there is a windows update the framework configuration is reset to default. May I know is there anyway to prevend this Or I have missed something in my configuration Following are the steps for the configuration: - create a new code group under localIntranet_zone - configure the new code group so that it will grant fulltrust to the window application in the network. Thanks in advance. Regards, Wilson You can use the .NET Framework Configuration MMC s ...Show All
Visual Basic Making a combobox readonly
Hi Is there any possibility of making a combobox readonly I could of course set the enabled = false but then it changes color. Any good way of doing this Hi Dan, You can create your own usercontrol with combobox and lable to get different color when disabled. Regards, Vallari ...Show All
.NET Development Convert MSXML2.DomDocument to XMLNode
Hi all, I have been trying to convert an MSXML doc to .NET system.xml.xmldocument in order to eventually get the document to a node. However I am not having any luck loading the MSXML doc to system.xml. Example: Dim xDoc As New MSXML2.DOMDocument() xDoc.loadXML("<Root><Element>Text</Element></Root>") Dim xDocNew As XmlDocument xDocNew.LoadXml(xDoc.xml) 'ERROR xDocNew.Save("C:\SAVED.xml") Dim xNode As XmlNode xNode = xDocNew.Clone Sorry ppl, monday I quess not quite with it yet Change: Dim xDocNew As XmlDocument To: Dim xDocNew As New XmlDocument ...Show All
Visual Studio 2008 (Pre-release) Expression<Func<A,R>> to Func<A,R> conversion
Since the compiler is able to generate both Expression<Func< int , string >> e = i => i.ToString() and Func< int , string > f = i => i.ToString() I think it would be very helpful to have a way to get the Func<,> delegate for a given Expression<Func<,>> Easiest way would be by an implicit conversion f = e; I understand it is the job of the compiler to generate either the Expression or the Func and I saw the Espresso sample in the LINQ preview where a pretty elaborated parser has been created in order to do so. As the sample shows, there is obviously  ...Show All
.NET Development Attachment problem
I have an asp.net application. This application will be generating a lot of Html files( Content as stream, and Html Name). I have to email these file to respective client. After testing it i happen to get the The attachment content in the Body of the mail.I want to get it as a different file( Attachment file). Please help this my code MailMessage Mail = new MailMessage(mFromEmailAddress,mToEmailAddress,mEmailSubject, mEmailBody); Mail.Attachments.Add(new Attachment(mFileContent, mFileName)); mSmtp.Send(Mail); Parvez mohamed I am sorry that particular statement has confused you. It is as an at ...Show All
Windows Forms Displaying ppt files in fullscreen
Hi! I'm developing a Winforms application that needs open a powerpoint presentation when a certain event occurs in the application, and start displaying the slides. When the presentation is finished I need to close the presentation. Does anyone know how I should approach this Regards, Vidar Whatever works best/easiest. My only requirements are that I can show it fullscreen and that I'm notified when the presentation is finished. ...Show All
