Software Development Network Logo
  • Visual C#
  • Microsoft ISV
  • Audio and Video
  • SQL Server
  • .NET Development
  • Visual C++
  • Visual FoxPro
  • IE Development
  • Game Technologies
  • Visual Studio
  • SharePoint Products
  • Windows Vista
  • Smart Devicet
  • Windows Forms
  • VS Team System

Software Development Network >> VS Team System

VS Team System

New Question

Complex Version Control - or is it?
Failed When I execute Build Team Project
Checking in - Developer Comments & Other Comments
Installing Teamserver 2005
How to delete selected row in datagridview?
Extending Team Portal to have calendar...
Sendmail vb
Another Question
datagridview problem
TF14087: Cannot undelete...because not all of the deletion is being undeleted.

Top Answerers

TJ2007
Spankmaster79
Ritesh Singh
pretzelfisch
Nuno_Salvado
Jay Thomas
johnvarney
IanBlackburn
sunil_sg
Preston Park
CoolRay
Only Title

Answer Questions

  • Jassim Rahma visual basic express saving problem =(

    hey i just got visual basic express and i can program 2 a certain extent but when i save my programs it always saves in 3 different files. da 1st file is the actuall scripts. da 2nd file is the design in script form....... da third file is somethin completely random that i hav no idea wat its 4. can i just save it on file yea thanx 2 all those people who actually read this and help. thanx =) It depends on what kind of file you are creating in your project. Classes and modules are single files, however designers such as forms and components are stored in three seperate files. 1 for the code you generate (MyForm.vb) 1 for the form resources (MyForm.resx) and 1 for the IDE (MyForm.Designer.vb) ...Show All

  • Alan S geting numeric data in and out of text boxes

    Hello, Summary: How do I set up text boxes so that when I enter numeric text in one box (named X_Test_Input) , it will raise events that the other box (named X_Accel_Raw_Value) will collect/consume and display the data in that second box. Overview: This is my first attempt Windows programming. My goal is to collect six numbers from an embedded device over Ethernet (five to ten times a second) and display them on my computer so as to have them available for further processing. In dividing this into small steps, I first want to be able to get values from somewhere and display that data. Only after I get the basic windows display part of this working will I attempt to get the data from the embedded device. In my ...Show All

  • B.Young controlling volume level through code

    Can anyone suggest a way to programmatically increase/decrease your computers volume level thanks for any help :) thanks much ahmedilyas I never knew controlling the volume would turn out to be such a tall task, but with the code you shared, I was able to implement the functionality I was looking for - thanks again :) hehe - no worries, glad I could help buddy! such things are not built into the .NET Framework - its out of scope for it and its more of a Windows thing therefore you need to P/Invoke (Platform invoke) meaning to use Windows dll's etc... and use the API's to do the task. there isnt a way of doing this in .NET so P/Invoke would be the opti ...Show All

  • ctssoms DataGridView1.DataSource

    i would like to get number of rows of filtered dataview, but i always get number rows of data table that i assign to data view. Dim dv As New DataView dv.Table = ds.Tables( "group" ) dv.RowFilter = "PO_NO = " & "'" & CboPO.Text & "'" DataGridView1.DataSource = dv below line will have same row number as in the filter table (if the table contains 5 rows and the filter contains 1 row, below code will result 1) MsgBox(DataGridView1.Rows.Count) below line will result 5 (same number as the table rows instead of 1 as the result of filter of dataview) Dim dvg As New DataView dvg = DataGridView1.DataSource MsgBox(dvg.Table.Rows.Count) Thank you. ...Show All

  • RameezM Improving ProvideCorrectArgumentsToFormattingMethods ;-)

    Good morning. I've just written my own rule to analyze my use of some internal Tracing APIs. I used Lutz Roeder's reflector to examine the canned FxCop ProvideCorrectArgumentsToFormattingMethods rule and indeed my own rule is almost identical to ProvideCorrectArgumentsToFormattingMethods. (Shame I couldn't inherit from it :-() As a nice side effect, I've improved the regex that ProvideCorrectArgumentsToFormattingMethods uses to match argument groupings in the format string: static ProvideCorrectArgumentsToFormattingMethods() { // This regex matches format arguments of the form {0:x}. // The first group, "(^|(\{\{)+|[^\{]+)" defines what is allowed to precede the format argument: // * The start of the ...Show All

  • windflower Team Foundation Server vs SubVersion

    Hi, Did any one has done comprehensive report comparing Team Foundation Server vs SubVersion vs VSS The comparison will be toward business decision. - Cost analysis. How much saving if using TFS compare to others - Efficiency & Productivity - Quality Assurance. - etc Thanks, John I have personal experience with the both the Teamprise Eclipse plugin and the standalone client. I have to say that they are nowhere near the level of Visual Studio's Team Explorer in terms of functionality. IMHO any Java developer wishing to use TFS (or being forced to use TFS) should suck it up and write C# or J# code instead. It's that painful... > Sourceforge is using ...Show All

  • jonam How do I produce graphs using "Microsoft Office Chart 11.0"??

    Please forgive me as I am really new to programming and also I apologise if I am posting in the incorrect forum. I am writing a program where the user inputs some variables. On the click of a button, a calculation is performed and a 2 dimensional dynamic array is compiled. The first column is my x-axis, distance, and the second column is strength, the y-axis. I have worked out how to add "Microsoft Office Chart 11.0" to my toolbox, but that's it. I'm completely befuddled by how to create a graph. Your help would be greatly appreciated. Thanks again. I dont know that is possibe to use MS office chart in VB.NET... But You should use free NET components for charting : "ZedGraph", ope ...Show All

  • c.c.chai Creating a template excel work item list

    Maby this is a stupid question but I'm trying to create a template excel sheet to track work items in our projects. To do this I need to bind the work item list to different projects on the server. Is there any way this is possible after creating the list and in that case how should I do. Regards, Christian I think if you are connected one project on particular TFS and creating the workitem list..after that you couldn't change the project or TFS .....i think so...and also if you saved the excel sheet then you can't change the project or TFS and you can't create a work item list also...... ...Show All

  • happymozart Building 1 Soln with multiple web projects in Team Build

    Hi, I have a solution with mutiple projects. There are 3 web projects in the solution and a few other library projects. WHen using a web deployment project (wdproj) for the main website, how come Team Build skips compiling of the 2 other web projects I need these two web projects within my solution. What can be done to oversome this I have created two new configurations DEV & QA within configuration managere and set those release types. I am only building in DEV & QA modes not Debug & Release. My DEV & QA modes are essentially release modes. Skipping because the "$(AspNetConfiguration)" configuration is not supported for this web project. You can use the AspNetConfiguration property ...Show All

  • ShannonMurphy1234 Customize web setup for Auto Installation and Testing

    Hi, In my TFSBuild process i have WebService, Setup Project, Web Deployment Project and Unit Test Project. Through automated build am able to create .msi for my webservice and install it on my Build server as well. My next step is run my test against this Installed webservice as a part of automated build process. But when the webservice is installed. I see 1. it by defaults to ASP.net 1.1 instead of ASP.net 2.0. 2. web service should be Windows Inegrated Authentication selected and should not allow Anonymous Access but it does exact opposite of this. Due to this my test cases fails. How do i customize my setup project so that i achevie above settings. Thanks, Jignesh Vyas This probably isn't ...Show All

  • Rhubarb call a c++ dll func returning a int array from a c# code

    hello! I need a help for this: i need to call a c++ dll that allocates and returns an int array something like this struct vett_int { int vettore_interi[10]; }; static struct vett_int new_vett_int; extern "C" __declspec (dllexport) vett_int __stdcall intvect(int scelta) { { switch (scelta) { case 1 : return new_vett_int; } return new_vett_int; } } i am calling intvect from a c# application like this [ DllImport ( "dataex.dll" )] public static extern vettore_di_interi intvect( int choice); public struct vettore_di_interi { public int [] vettore_di_int; } main prova_chiamata_a_dll. Program . vettore_di_interi vettore_interi_instance = new Program ...Show All

  • ruddynsi Index was outside the bounds of the array using WorkItemStore

    I've got a major problem with VSTS and everything that interacts with the Work Item Store (including creating new projects, running work item queries, creating new work items, etc.) generates a: Index was outside the bounds of the array. message within Visual Studio 2005. This problem isn't restricted to Visual Studio and also occurs if you try and interact directly with the WorkItemStore API. Here are the details from WinDbg if they are of any help: 0:000> !pe Exception object: 01e540b0 Exception type: Microsoft.TeamFoundation.WorkItemTracking.Client.UnexpectedErrorException Message: Cannot complete the operation. An unexpected error occurred. InnerException: Microsoft.TeamFoundation.WorkItemTracking.Client.ClientE ...Show All

  • PareshGheewala Why enumeration?

    Hey guys, thanks in advanced. I am reading through a beginners C# book and it cover enumeration, but yeah in great detail as far as why to use it. Can someone explain why you would need or want to use enumeration over another option. And what are other options if there are Thanks a ton. Hello All. bk13: Nope, if you want the integer portion of an enumeration, then you must explicitly cast to int. Always. That's why, if all you want is a named integer constant for collection indexing, then enumerations are not as good as actual named integer constants. However, there are three main strengths of enumerations. First, all of their members are members of the same strong type, so you could declare a ...Show All

  • msdate How to get the logged in user is Admin / User

    Hi All, I am using the following fuction in my application to check whether the user is admin or a normal user. Now my problem is when iam running the application on Windows XP i am getting the correct results(ie when i loged in as admin i am getting the admin / true and when i logged in as user i am getting the user / false). But when i tried to run the same application on VISTA i am getting the return value as false (user) in both the login modes. How to change my code to give the correct results for bot the login modes. Please help me in this. BOOL IsUserAdmin(VOID) /*++ Routine Description: This routine returns TRUE if the caller's process is a member of the Administrators local group. Caller is NOT expected to be impersonating ...Show All

  • Kevin Hoffman Filtering words from read out ASX file in a listbox

    Hello all, My problem is this: I read out an asx file (a playlist file) into a listbox. Now my problem is the whole asx file is being read out there and I only want the file names to be seen there, my code is this so far: string file = fileListBox1.SelectedItem.ToString(); StreamReader re = File.OpenText(file); string input = null; while ((input = re.ReadLine()) != null) { listBox1.Items.Add(input); } It works fine, but the output of that listbox is: <asx version="3"> <Entry> <ref href = "C:\filename.mp3" </Entry> </asx> Each of these lines is a seperate selectable thing in the listbox, but I want it to show like this: filename.mp3 So that you can s ...Show All

555657585960616263646566676869707172

©2008 Software Development Network

powered by phorum