Pabs's Q&A profile
Visual Studio Team System Source Control doesn't do an automatic get latest on checkout?!
We've been using the new source control for about a month now, and it seems everytime somebody goes to check-in there code there are all kinds of issues with stuff being out-of-synch. And it seems the code on the source control server never seems to compile, but of course the local copy of everybodies machines do. I've been pulling my hair out trying to figure out why everything keeps getting out of synch...today I found out why. ...Show All
Visual Studio Team System Backing Up Team Foundation Server
Now that we've actually gone live with TFS, we need to back up all our data. I'm trying to follow the instructions here , but when I try to go to: http://teamsystem:8080/bisserver/Registration.asmx it comes up with: Server Error in '/' Application. The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable ...Show All
Visual Studio Cross-tab adjacent fields in a row
Hi all Is it possible to design a cross-tab report as shown here: Month Code Sum(quantity) with a "description" field beside the "Code" field. The summary rules are not changing. Thanks ...Show All
Smart Device Development VS.NET 2005 BETA2 : Could not establish connection to network
Hello to all! I just create one simple solution in VS.NET 2005 Beta2 with 2 projects: -webservice project (just with default HelloWorld web method) -smartDevice project (who call HelloWorld web method) When I try to call WebMethod the error occurred (I use PocketPC 2003 Emulator): An unhandled exception of type 'System.Net.WebException' occurred in System.Web.Services.dll Additional information: Could not establish connection to network. W ...Show All
Windows Forms automatically sending an email
Hi I have put this here as i'm not sure specifically where it should go: I am trying to create an addition to an application that i have already deployed. The addition sends a weekly email to certain users and is ran as a scheduled task on the server.. it is an exe... when i run it as an executable on the development server it works no problem, however on the deployment server it gives me the following error: i have included the ...Show All
Smart Device Development Takes several pictures with CameraCaptureDialog ?
Is someone succeed to takes several pictures with CameraCaptureDialog I can't succeed to do this, the windows don't close itself if I do a loop... CameraCaptureDialog cameraCapture = new CameraCaptureDialog (); string PhotoPath; String PhotoName; cameraCapture.Resolution = new Size (640, 480); cameraCapture.InitialDirectory = "\\Storage Card\\Report photos\\Photos en attente" ; cameraCapture.Title = " ...Show All
Game Technologies: DirectX, XNA, XACT, etc. MDX, where do I put the symbol files?
Sorry for the newbie question, but where do I put the Symbol files I am using April 2006 release, VS2003, MDX, x86. Thank you. Well I didn't have that directory, but after a little hunting I discovered that its a separate download. http://www.microsoft.com/downloads/details.aspx familyid=562D72FC-61C8-41A3-8BFF-509466F3D6AA I always assumed these were for C++ only but you are correct that there are symbols for the managed assemblies t ...Show All
SQL Server Will ROW_NUMBER ( ) keep the provided order of records if the OVER clause orders on the same value?
In the code example below, I am trying to store the user-provided sort order for a set of record ID's passed to me by the application. Since I am Ordering by the ResultSetID, which is always 42 in this example, is it guarenteed that the passed in order of ListingID's will be maintained by the ROW_NUMBER() function --Code Starts Here Declare @ResultSetID int , @ListingIDsXml XML Set @ResultSetID = 42 Set @ListingID ...Show All
Visual Studio 2008 (Pre-release) i need to download latest makecert.exe & certmgr
hi there, i dont have makecert.exe in my system can sombody point me to a location so that i can download one. just the makecert.exe. and certmgr.exe my internet connection is slow so.... thanks prasanth I cannot believe someboyd will post something like this. Here is a bit of information on the history of some of these files: Microsoft first released code signing technology ("Auth ...Show All
Visual Basic Run Application in ForeGround
Hi, How can I make sure that my vb form in my application always start/show in foreground (fore front) and any other application will run in background (behind my application) Thanks ...Show All
Visual Studio Sample Code: Using subreports
using System; using System.Data; using System.Windows.Forms; using Microsoft.Reporting.WinForms; public class Demo : Form { private DataTable orderDetailsData = null; private DataTable LoadOrdersData() { // Load data from XML file DataSet dataSet = new DataSet(); & ...Show All
Visual Basic StreamReader
Imports System.IO Public Class Form1 Inherits System.Windows.Forms.Form Dim IDNo As String Dim Rate As Double Dim Hours As String Dim RegPay As Double Dim GPay As Double Dim OvrPay As Double Dim EmpData As System.IO.StreamReader # Region " Windows Form Designer generated code " Public Sub New () MyBase .New() 'This call is required by the Windows Form Designer. ...Show All
Windows Forms Gettiing name of the function
I want to get name of the function/sub when i am inside that same function block ie. Private Sub Btn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ... ... << here it should return name of the sub ie.Btn_Click >> .. ... E ...Show All
Visual Studio Express Editions Color Selector Question
Ok I have this code under a button. ColorSelect.ShowDialog() Dim tmp As Color = ColorSelect.Color chat_backcolor.BackColor = tmp ColorSelect is the colorselect dialog chat_background is the button How can I make if they hit cancel while selecting a color, it doesn't use the color that was already selected on the color select If ColorSelect.ShowDialog() = Windows.Forms.DialogResult.OK Then Dim .... Chat ..... End ...Show All
Visual C# alt text in image
Well, when u put the mouse over a img in the internet it shows a text. How can i do it on c# Do you mean in an ASP.NET web page or a windows app If a Windows app... simply use a ToolTip when the MouseEnter event is raised by the image holder. ...Show All
