KevinNanson's Q&A profile
Visual Studio Team System How do I run new UnitTests automatically?
Hi I’ve setup up a Nightly Build on the Team Foundation Server, which build my solutions, and runs UnitTests. Using the “New Team Build Type” wizard I’m only able to select a predefined list of UnitTests, and we have to remember to add new UnitTests to this list (using Visual Studios Test Manager). Of cause we all forget to add new tests to this list, and think that the build is ok, even if a new test is failing. Can I configure the Build to automatically include ALL UnitTests in my solution Thomas Hi Thomas, We've received many feedbacks on this and we're adding features to improve this expe ...Show All
Visual Studio VSS 2005 on VS.Net 2003 ???
Hi, Is it or will it be possible to use VSS 2005 on a VS.Net 2003 IDE We would like to wait a few months before upgrading our app to VS.Net 2005, but already leverage the possibilites of VSS 2005 ( Finally a REAL sourcecode system from MS ! ) Thnx in advance Sven Peeters Belgium Yes. See this post for more info: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=21470&SiteID=1 Alin ...Show All
SQL Server Query:Source from multiple tables to a Fact table
Greetings, Iam new to SQLl2005. Iam using DTS to transfer data from my source to the warehouse. I have a couple of tables in my source whein I have to join these to tables fields and insert the same in teh warehouse fact table. I have used a Join query in my Oledb source component, What other component needs to be used to insert the data into the fact table. I also need to extract same data with aggregation and insert the same into an another Fact table. Kindly help. I recheked and the columns are mapped correctly with corresponding datatypes. About 70,000 rows are going to oledb command, out of which only ...Show All
.NET Development Insert/Select Pic/Clip from MSSQL2K DB
Insert/Select Pic/Clip from MSSQL2K DB Hello, Can n e 1 show me the code of inserting/selecting the pics/movie clips from the SQL 2000 database from "IMAGE" datatype column set to the particular table Pics need to display in the web brower one below the othere and movie clips need to be played in the windows media player browser plug-in. taan ku phor your time. with regards, Beau Peep The Hospital (Bed Pans II - Sponge Bath Revange) Use binary type data for the image field in the table. When u upload the picture read the file in binary mode and store the binary data. When u retrive read the binary data back from the database ...Show All
Windows Forms Scrolling user control
how can i write a scrollable windows control with c# and how must i save it's content and manage it when scrolling by user. thank alot for your attention mark i will consider at your recommendation in my work. if i can't solve my problem, any way i hope that you help me again and tell me is it possible i get your control s ...Show All
Visual C# FAXCOMLib
Has anyone had any luck to get faxing working with C# Here is the code I have using System; using FAXCOMLib; namespace ConsoleApplication3 { /// <summary> /// Summary description for Class1. /// </summary> class Class1 { public Class1() { } public void FaxDocument(String TheFile, string faxnumber) { FAXCOMLib.FaxServer server = new FaxServerClass(); FAXCOMLib.FaxDoc doc = null; int response = -11; try { server.Connect(Environment.MachineName); } catch(Exception e) ...Show All
Visual Studio Team System Developer Edition and Builds
Hello ! When I read the posts, it seems that we can run tests in a build only with Tester Edition. However, when I ran by build on the server, here is the mesage I got : "MSBUILD : warning : Visual Studio Team System for Software Testers or Visual Studio Team System for Software Developers is required to run tests as part of a Team Build." So I installed Developers Edition and no more complain. However, no test is executed and this is apparently because no one is defined in my test list. And of course, because I cannot edit my test list in DE. With the Team Suite (trial edition) I had before, I could configure my build to ...Show All
.NET Development Calling a C# executable from windows explorer shell context menu
I have written a simple application in C# (2005 Express Edition) / Windows Forms that displays diskspace usage for a given file/folder as a pie chart that I wish to access from the windows explorer context menu. I have managed to add an item to the context menu for all folders using the file types tab in the folder options dialog within windows. This is sufficient for me as I don't intend to distribute this application, it is only for my own personal use, so adding it manually is OK. My problem is that I don't know how to find out which folder was right-clicked from within my application. Is the folder name simply passed as a parameter ...Show All
Visual J# a String "contains" method
Hello, I am new to J#, migrating from Sun's java. I want to do something simular to this in J#: String dayList [] = {"good day", "bad day"}; for (int a=0; a<2; a++) //iterate through the 2 Strings if ( dayList[ a ].contains( "good" ) ) //if the String contains "good" System.out.println(dayList[ a ]); I do not see a method " contains( String s ) " in the J# String class in the msdn documentation. I am wondering how best to go about this in J#. Thank you, Eric Thanks a lot, that's just what I need. I wa ...Show All
Visual C# SMS with c#?
does anybody Tried to make a SMS gateway with c# or even send hi zapacila89 i have seen one in Java.. but seems interesting concept... r u interested in this i also want to do interestng stuff like this......right now im working on directx ...Show All
Visual Basic Net 2005 Deployment and Installation issues
I've been trying Deployment on CD, including the Dotnetfx.exe file. The instructions indicate if you specify that file in Prerequisites, it's supposed to be downloaded and inserted into the Deploy folder. At least in my Express project I can't get it to work. And if it does get downloaded as advertised, what would setup.exe do with it Does anyone have experience with this working or not in 2005 Standard Please see Express thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=278533&SiteID=1 Has anyone done the Bootstrapper Sample thing described in "Using the Setup.exe Bootstrapper Sample wi ...Show All
Visual Basic Printing in color
I am using VB2005 Express. My problem is I can't print in color I am Importing Systems.Drawing.Drawing2D and System.Drawing.Printing Public Class Form1 Inherits System.Windows.Forms.Form Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click PrintDocument1.Print() End Sub Private Sub PrintDocument1_PrintPage( ByVal sender As System.Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDocument1.PrintPage Dim linesPerPage As Single = 0 Dim yPos As Single = 0 Dim count As Integer = 0 Dim leftMargin As ...Show All
Visual Basic Need link latest documentation for object Microsoft.XMLHTTP or MSXML2.XMLHTTP.4.0
Need link latest documentation for object Microsoft.XMLHTTP or MSXML2.XMLHTTP.4.0 for functions like setRequestHeader, put, get, post, etc... Did search in MSDN site but could not find any. Thank you. Microsoft.XMLHTTP is implemented by msxml3.dll on my system. I could just find setRequestHeader in the IXMLHTTPRequest interface: http://msdn.microsoft.com/library/default.asp url=/library/en-us/xmlsdk/html/7924f6be-c035-411f-acd2-79de7a711b38.asp ...Show All
.NET Development mixing generics and unsafe code
public unsafe virtual T Read<T>( ) where T: struct /*Do I need write something other */ { byte * data = stackalloc byte [ sizeof ( T ) ]; ... if ( invert ) for ( byte * left = data, right = data + sizeof ( T ) - 1; left != right; left++, right-- ) { byte tmp = *right; *right = *left; *left = tmp; } ... } Is it possible to get size (in bytes) of generic type This example returns an error during compilation If you know ahead of time the possible types that T might be, another option is to have a block at the beginning of the metho ...Show All
Visual C# c++ opengl engine in c# form
I wanna make a c# mesh viewer, so what ive done is to use swig to generate a wrapper for my c++ native dll. Now in c# i open a window of my engine, get the window handle so i can move it around when the c# form window moves. This is not optimal as my engine window lags around and doesnt want to resize :-/ it also has the minimize/close title bar up the top still. does any one have any ideas with a work around maybe a better solution cheers Hi, Here are some links which you may find useful: http://www.codeproject.com/csharp/csopengl.asp http://cs.gmu.edu/~jchen/graphics/book/notes/setup.ppt Regards, Vikra ...Show All
