motleycrazy's Q&A profile
Visual Studio Team System Logon with the object model in RC
In beta 3 I used a NetworkCreditials object to create a conenction to a TFS server. NetworkCredential objNetworkCredential = new NetworkCredential (strUserName, strUserPassword, strDomain); TeamFoundationServer objTFS = TeamFoundationServerFactory .GetServer(strVstsURL, objNetworkCredential); But in the RC version the factory uses a Microsoft.TeamFoundation.Client.ICredentialsProvider in the GetServer method. In Cli ...Show All
Visual Studio Stop locking up my app!
This is something that continues to bug me about Crystal and I'm wondering if there is a workaround. I previously asked if there was an event that is triggered once the Crystal Report has completed rendering, but apparently there isn't (which is odd since this seems like the most useful event they could make). I've also found that the CrystalReportViewer will not start rendering until the document has been loaded and the report is actually added ...Show All
Visual Studio Team System Will TFS work on a Windows 2000 AD domain?
We are about to start our evaluation of the Team Foundation Server (TFS) beta 2. Our original plan was to add the server running TFS to our usual network. The problem is that our network is a Windows 2000 Active Directory (AD) domain. The installation guide for TFS clearly states that a Windows 2003 AD domain is required, though. Is there a chance of getting TFS to work on our 2000 AD domain or do we need to set up a separate Windows 2003 AD do ...Show All
.NET Development AccessViolationException with C# Ping class
I have a "watchdog" program, c# console application, coded with VS 2005. Program runs every 3 minutes. And one part of program checks pings to ~20 ip's. I'll give that function code: static private bool ping ( ref String ip) { bool success = false ; Ping pingSender = new Ping (); if (pingSender.Send(ip).Status.Equals( IPStatus .Success)) { success = true ; } else { success = false ; } ...Show All
Visual Studio 2008 (Pre-release) Avalon Web Application fails to publish
I'm running september build of WinFX runtime + SDK. VisualStudio is Beta2. Using WinXP+SP2. Steps to reproduce: 1) Create an Avalon Web Application from project template; 2) Build solution; 3) Go to project settings, "publish" tab; 4) Without changing anything push "Publish Now" button; Results: Build succeeds but publish fails: "Unable to add 'AvalonApplication1.application' to the Web. Unable to add file 'AvalonApplication1.appl ...Show All
Visual Studio Express Editions Truely a Newbie
I am Very Raw at this. I have visually constructed a Windows App. But now I don't have the slightest clue how to "Tell" It what I want it to do. I have various text boxes for inputing numbers. I want to do math equations. Example...as an investment calculator and a mortgage calculator. I would like to hit the "Button" and run the calculations. I don't even know where to start. I know NO code at all and can't seem to ...Show All
Visual Studio Team System Team Build Machine Configuration
I guess the build verification tests run on the Team Build machine If so, then imagine an application which talks to the database. The team build machine would need to be configured with supporting config files (connection string etc) as well databases in order for the build verifcation tests to pass. What is the best practice to handle above-mentioned scenario I guess we could install the configuration files in specific directories (unles ...Show All
Software Development for Windows Vista Why is Microsoft using a proprietary web forum solution and a proprietary RSS format?
Why is Microsoft using a proprietary web forum solution instead of Internet standard newsgroups (e.g. microsoft.public.*) Why is Microsoft's propritetary web forums using a proprietary RSS format that doesn't work with Newsgator Michael. We are starting to move away from newsgroups to discussion forums based on the feedback from many of our customers. Two of the major benefits of forums are the support ...Show All
Smart Device Development VS2005 and Simbian OS is it possible?
Is there a possibility to program Simbiam OS with VS Please direct all Symbian related questions to Symbian related news groups. Thanks. ...Show All
Visual Studio 2008 (Pre-release) GridView representation of XML
Hi, I am trying to display the contents of an Xml Document in a GridView. An example of the the Xml is as follows; <Table> <Column>Name <Cell>Dave</Cell> <Cell>Pete</Cell> </Column> <Column>Age <Cell>32</Cell> <Cell>26</Cell> </Column> </Table> I want the GridView to look as follows; [Name] [Age] Dave 32 Pete 26 That is, in tabular form. My Xaml ...Show All
Visual Studio Team System Web Deployment Project -> Team Build
Hi, We are having issues converting Web Deployment Project file as team build type. 1. We created a W.D.P file and successfully built using this in local machine. 2. In order to create a build type for web app, we created the W.D.P file and added to source control along with Team Build Types. 3. But in team explorer, we are not able to see the W.D.P file as a team build type, thus unable to build it. How can I do this Is there any ch ...Show All
Visual Studio Team System Heeeeeelp!! i cant unlock a file locked by other user!!
Hi, please help me, other user have locked a file for editing, but his PC crashed, now hes formating his PC. i've tried to unlock it without success, i've read about permissions, i found the "Unlock others", all my groups have this enabled, but doesnt work, what am i doing wrong Hi Oscar, Is it possible you're posting to the wrong forum This forum is about SourceSafe and source control integration. If by "locked&q ...Show All
Windows Forms Problem with combobox and databound datagridview
Hi I have a datagridview that is databound to a table via a bindingsource and a DataGridViewComboBox column that is bound to a second table (both in the same dataset). I am dynamically adding the column to the grid. Dim viewcol As New DataGridViewComboBoxColumnviewcol.DataSource = _dsEquivalents.Tables(1) viewcol.DataPropertyName = "ViewName" viewcol.ValueMember = "ViewTable" viewcol.DisplayMember = "ViewTable" ...Show All
Smart Device Development first chance exception of type 'System.IO.IOException'
Surely this shouldn't be happening! The following code creates a connection, DataAdapter & DataSet, then fills the DataSet. the myDataAdapter.Fill creates a 'first chance exception', whatever that is Imports System.Data.SqlServerCe Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim myConn As N ...Show All
.NET Development Triggers not kicked off with DataSet.Update
I've got a table called JOBS with a INSERT, UPDATE, DELETE trigger on it. I'm reading data in from a text file and inserting a row for each line, and tried using DataSet.Update to do this. What I'm doing is creating a new dataset, then "myDS.Retrieve("SELECT * from Jobs WHERE JobID = -1")" which gives me an empty DS then for each line in the text file, myDS.Tables(0).Rows.Add() myDS.Tables(0).Rows(nRow).Item("ID") = ...Show All
