QWERTYtech's Q&A profile
Visual Studio Team System Is there a way to automate getting latest and doing a team build in Team Foundation?
I essentially need to do a get latest, do a team build, and publish to a different server. Is there a way to automate this process nightly in TFS Sorry I forgot to add that...I had tried that as well but when I use this: TFSBuild start http://tfsserver "Team Foundation Source Control" "Nightly Team Build" /m:devbox-10 /d:c:\tfsbuilds ...the command prompt opens up and looks like it is trying to initialize a build but then closes and doesn't seem to do anything.... ...Show All
Visual Studio Express Editions VS Express and Hibernate
I have usedHibernate for 6 years to avoid long startups. But, since I have started using VS2005 Express (primarily VB), Hibernate consistently fails. When I go to restart I get a full reboot ending with a message box: "The system as recovered from a serious error" "For more information on the error, click here" Clicking brings up a message box with: "Error Signature": BSCode: 10000050 BCP1: F000FF63 CP2: 00000000 BCP3: FBA0DFC1 BCP4: 00000002 OSVer: 5_1_2600 SP: 2_0 Product: 768_1 There is also a .dmp file and a sysdata.xml file. I've looked at them but nothing jumps out. (Is there a utility to read these ) I'm quite certain that the problem is with VS2005 as it ONLY occu ...Show All
Visual Studio 2008 (Pre-release) How I create a Proxy for WCF with TCP Transport and Binary encode in SDK July CTP?
How serialize customized messages with WCF Binary encode and TCP transports How I create a Proxy for TCP-Binary in SDK July CTP Do you have any example Thanks, Daniel Andrade Not sure if I understand your question. But there are generally two basic approaches to create consumer-side objects to talk to services: -one would be to do contract assembly sharing and not relying on generating source code from interoperable metadata (like XSD, WSDL and/or MEX). This is, IMO, the preferred way to go in what I would like to call 'closed scenarios' (I also wrote a bit about this here). -second one is to use svcutil.exe and point it to either the WSDL or MEX metadata of your service. This second option ...Show All
Windows Forms Forms
How can I show the form when I have more then one forms .ActiveForm returns the 'Active' form, which is likely the form that your code is running from, Form1 if you have not renamed it. DO you mean that you have created forms in the form designer and wish to display them To show a form that you have designed in the form designer you must instatiate it, then show it. So that if you had created a form called Form2, to display it: Form2 myFrm = new Form2(); myFrm.Show(); The same for any further forms that you have designed, a form is just a class, so it must be instatiated into an object before you may access its non static members. If you are still stuck, shout back, ...Show All
SQL Server Local system and SQL Server Service
Hi: A very stupid question but want to see if i have an answer. Is it possible to run SQL Server Service and SQL Server Agent Service under local system(not Domain account) without granting SA Permissions on the server. is it ever possible to run by just granting some registry permissions and not making BUILTIN\Administrators a SA on the server. Thx AK You can remove Builtin\Administrators from the server and the server will still run, but some applications relying on the presence of that login could be broken by this action. Thanks Laurentiu ...Show All
.NET Development Help with ComponentArt Grid CallBack Method
Hi All Elite Programmers I am using ComponentArt Grid which uses AJAX functionality ,I have populated the Grid using some Tables and the first column of the Grid Contains the KeyID field,I need to get that KeyID on RowSelection or Grid Click with out refreshing the entire page, I tried to make an SQL Procedue the Returns the KeyID field but everytime I call the Stored Procedure the Page gets refreshed how can I get that KeyID without refreshing the entire Page. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. What is MultiSampleQuality
Hi, I'm curious as to what exactly MultiSampleQuality is. I understand how to set fsaa with MultiSampleType using a PreparingDeviceSettings Event Handler or just fiddling with the presentation parameters can calling Reset(). But to fulfill my curiousity, I was browsing the docs and saw little documentation on MultiSampleQuality. I understand I need to set the Type to NonMaskable to use the MultiSamplyQuality Or it must beset to an int less than the Type. What is that int all about and MultiSamplyQuality all about Thanks Found something about that in the gamedev.net forums click Topic bye ...Show All
Visual Studio Express Editions Having problems installing Program on differnt machines
So, I wrote a program. and installed it on win98, and xp. but i have one or 2 pc's that just will not let me install it on. It gives me An error saying it could not download one or more of the files. needed. however the entire thing is there.. It does use .net 2.0 Any ideas Hi Enlikil, Can you give abit more detail please, like whats the OS, system spec (CPU, RAM) and as mentioned is the .Net Framework 2.0 installed Also can you either past the error message in or attach an image of it please. Thanks Scott ...Show All
.NET Development Monitoring network packets - incoming and outgoing
Hi all, Is there any provision to monitor the http packets sent and received per user basis in a network interface . I want to develop a download/upload limit software where I can restrict users setting the download limit in terms of 1000 MB of data or 2000 MB of data etc., Thanks. Hi, Thanks for the reply :) I already saw IPv4InterfaceStatistics. It gives overall bytes received and sent, whereas, am looking for per user basis, the bytes sent and received. Any suggestions on that Thanks. ...Show All
Software Development for Windows Vista UnauthorizedAccessException when using MSDTC
Hello everyone, We have a 3-tier application, the client, the server and the databaser server. It was developed using C# 2.0 and .Net 2.0, the database server is MS-SQL 2000 and we have some MSMQ in there. All 3 are located on different machines. The client is Windows XP SP-2, the application server is Windows Server 2003 SP1 and the daatabase server is also Windows server 2003 SP1. Most of the time when the client performs an operation to the application server the database gets updated and something is written to a queue. The writing to the database and queues is performed in the context of a transaction, we use the System.Transactions facilities and MSDTC. When the server performs the writing operation it 'impersonates' ...Show All
Visual Basic Crystal Report
Hi everyone, I have just written a "Thank You" letter in crystal report. What I'm having trouble with right now is how to tell Crystal Report to automatically go to another letter after each "sponsor name" is used. here is my letter, QWERTYtech wrote: [Contact Name] [Sponsor Name] [Address] [City][State] Dear [Sponsor Name] , Thank you for being a [Sponsor Type] at the AITP Annual Fundraising Golf Tournament. Your contribution will enable our student members to attend both Regional and National AITP Student Conferences in the future. Thank You, What I want is the Crystal Report to look at my database and for each "Sponsor" I want it to create a letter wit ...Show All
SQL Server Querying XML from SQL 2005
Hi, We are storing the entire xml of an infopath form as a string alongside structured data in a sql 2005 db. The project is a reporting one and we need to retrieve data from the infopath forms for display in the reports (along with structured data). We need to be able to build a query which retrieves both structured data from the tables and xml data from the xml string (also within a table). So the question is: can you query an xml string stored within a table from with a stored proc If so can you combine this query (I'm guessing this will be XPath) with a standard sql query to return both types of data The MS devs (yes actual MS employees) I'm working with don't so it will be interesting to see if anyone can suggest a solutio ...Show All
Visual Studio Team System How to creat an Unassigned user for the AssignedTo feild?
How can I customize the template so I can have an Unassigned option in the Assigned To dropdown The VALIDUSER key will restrict the values to users in that group, so you can try doing the below instead to use LISTITEM: <STATE value="Created"> <FIELDS> <FIELD refname="System.AssignedTo"> <DEFAULT from="currentuser" /> <ALLOWEDVALUES expanditems="true" filteritems="excludegroups"> < LISTITEM value="[Project]\Business Analysts" /> <LISTITEM value="Unassigned" /> </ALLOWEDVALUES> </FIELD> </FIELDS> </STATE ...Show All
.NET Development Xml returned in one textbox, want multiple
Hey all. I have posted Xml to a web service that then returns a string of XML back. Right now I can display the entire Xml string in a text box with: this.txtReturned.Text = reader.ReadToEnd(); How can I get the values in the Xml tags to populate web form text boxes individually instead of the one big text box For example, <Envelope> <Customers> <CustName> Mr. Bill </CustName> <CustAddress> 123 Street Ave </CustAddress> </Customers> </Envelope> I have a text box that I want to have "Mr. Bill" in it, and another that I want his address in. I don't know exactly how to do this... How can I cycle through the returned Xml somehow and get <CustName>Mr. B ...Show All
SQL Server To Order More Than One Coloumn
Hellos; I have a lot of News. Only i want to get last 10 news and piorty is important for me to change orders of the news. So i add a new coloumn in the table (Piorty int) ... select top 10 NewsID, Piorty, Title, Spot from News order by 1 desc, 2 asc -- i want to get last 10 news than order by piorty (which piorty is bigger is be thre first) but in this query i just get last 10 news desc the piorty isn't imports even though i would get them order by piorty but last 10 news... How can i do that Please hellppp ... thnank you verry muchhh ... Hi Hugh: You are right. I read the post again and realized the problem. Here is the improved one. SELECT t1 . N ...Show All
