SqlBoi's Q&A profile
Visual Studio Team System Deleting a Team Build
A while back there was a thread that mentioned a command line utility for deleting Team Builds - see http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=6684&SiteID=1 Will this utility make it into RMT What is it called Will I believe the utility they are referring to is TFSBuild. From the VS2005 command prompt, type TFSBuild delete teamservername projectname buildnumber ...Show All
Visual C# paint is called multiple times
Has anyone ever experienced the problem of a paint method being called multiple times causing the screen to flicker erratically. It does this for no apparent reason and only on my machine, i ran the project on a co-workers station and it worked fine no problems. Here is the paint method and a mouse down event that calls a repaint. private void panel1_Paint ( object sender , System . Windows . Forms . PaintEventArgs e ...Show All
.NET Development Asyncronous Receive
Hello, I started to develop a proxy server. So by preface I'm trying to get this code working: (from http://msdn2.microsoft.com/en-us/library/bbx2eya8(VS.80).aspx ) Private Shared Sub Receive(client As Socket) Try ' Create the state object. Dim state As New StateObject() state.workSocket = client ' Begin receiving the data from the remote device. client.BeginReceive(state.buffer, 0, state.BufferSize, 0, _ AddressOf ...Show All
.NET Development Support for Agent Technology in .NET Framework
Hi I want to develop an Information Agent in .NET environment. I want to know that is there any support for Agent Technology in .NET Framwork like OAA [OAA] and JADE [JD] in Java If not. Then What can be its possible solution Thanks for your time Bye [JD] Java Agent DEvelopment Framework [OAA] Open Agent Architecture I'm also looking for information for developing Agents in a .NET environment. ...Show All
Windows Forms Dataview Sorting problems
Hi, Datagrid.Sort() doesnt seem to sort integers right. My code is something like this, this is a part of datagrid event: dgProductList.DataSource = catalogXml; dgProductList.CurrentPageIndex = e.NewPageIndex; //create a new dataview with xml data DataView dvCatalog= new DataView(catalogXml.Tables[ ...Show All
Visual C# thnaks
hi how i can use peer-to-peer connections with c# application and how i can send file to other application or computer There are so much articles, example and tutorials on the net. Take a look at some of there articles: Real Time TCP/IP using C# - The Code Project - C# Programming Introduction to TCP client server in C# VB.NET TCP Client - Server Socket Communications Client Server Multithreading Applic ...Show All
Visual Studio Express Editions installing problem
-I have downloaded .net,visual basic and sql server components (2005 beta 2) - I had .net 1.0 and no other vb or sql server versions on my machine. - i uninstalled the 1.0 framework and installed the 2.0 beta 2 version - when i tried to install sql server it told me that i either had previous versions of sql server or .net on my machine. - i therefore uninstalled .net beta 2 and tried installing sql server again -- this time i got a messag ...Show All
Visual Basic Splash Screen and Message Box
My app launches a splash screen and then attempts to authenticate the user in the database. If it fails, it displays a message box informing the user of this. This authentication takes place in the LOAD event of the MDI form. My problem is that the message box always displays behind the splash screen. The only way to see it is to click anywhere on the app. Then the splash screen goes away and the message box is shown. If I try to refer to the ...Show All
Windows Forms Selecting distinct values from a view using RowFilter?
Hi, I'm trying to populating multiple ComboBox controls from a single DataSet with one table. The dataset has 6 columns and the data is hierarchical so only the last column has unique values. Each combobox on my screen applies to one of the co ...Show All
Visual Studio Team System Using Excel pivot charts, can I filter on creation dates within the Work item history cube.
Hello, I am using the cumulative count in Work item history cube using the Pivotchart within Excel (a great way to get quick graphs for management). The problem I am having is that I want to see the progression of states between specific dates. As it stands now I can choose specific weeks to see but the counter in the graph does not start at zero. If I could put the creation date as an additional filter the graph would start at zero. ...Show All
Visual C# Using multiple forms
Hello, I am trying to use multiple windows forms in my project like this: the main form that shows all of my information, and I have a button when clicked I want to show a new form and have my main form disabled until the new form is closed. What is the best way to accomplish this Thank you -Bryan You should display your second form as a modal form. Until it is dismissed the user can not interact with any other part of your U ...Show All
Windows Forms How to set scanner properties using code in c#.net
How to set scanner properties using c# code I tried the below code in several ways. It's giving error: -------------------------- WIA.Device d = axCommonDialog1.ShowSelectDevice(WIA.WiaDeviceType.ScannerDeviceType, false , false ); string deviceName = ""; //object tempobj; foreach (WIA.Item item in d.Items) { foreach (WIA.Property itmprop in item.Properties) { //deviceName = ((IProperty)itmprop).get_Value().ToString(); d ...Show All
SQL Server Unable to replicate over websync but via the lan
Hello, I am having a problem trying to run websync but can run replication over the lan. During the websync it errors out stating cannot connect to the distributor. The same login and password are used in both scenarios. Am I missing a setting John Are your Publisher, Distributor, IIS and Subscriber machines separate Are you using Integrated authentication If so, try with Basic authentication ...Show All
Visual Studio Express Editions New project creation error
Hi All I just installed Visual basic 2005 Express Editon, but any attempt to create a new project producess the below listed: The file, directory name, or volume label syntax is incorrect (Exception from HRESULT: 0x8007007B) Please help thanks. Ps: I'm using window XP Home Edition There is a known issue where having the "&" charac ...Show All
Visual Studio Team System Difficulity in viewing test results summary
Hi all, I have following inconveniece when I want to view my test results. 1. I have several test runs, and each one have one or more test cases. All these test cases are different. 2. After each test run completes, I publish the test results. 3. In the Test Runs view, I see those completed test runs. But I can only select ONE test run each time to view the test results in the Test Results view. My expectation is to see ALL ...Show All
