Click here to Skip to main content
15,868,014 members
Everything / VS Online

VS Online

VS-Online

Great Reads

by Kamran Bilgrami
Quickly move from one method to another during debugging session
by CodeProject
On Wednesday November 12, Microsoft CVP Brian Harry will be available here for a live Q&A in the comment section of this article.
by Gaston Verelst
This article describes how to set up the deployment from VSO to an MS Azure website
by BC3Tech
As you've seen me post before, I use the Multilingual App Toolkit in my Upload to YouTube app to localize it into many languages.

Latest Articles

by Kamran Bilgrami
Quickly move from one method to another during debugging session
by Metaphysico
Quickly see the status of all of your builds in one widget on your dashboard
by David A. Gray
The Excel powered resource generator, version 2, is vastly improved and better documented.
by Thomas Cooper
Visual Studio Team Foundation Service Agile Bugs P2

All Articles

Sort by Score

VS Online 

20 Mar 2017 by Kamran Bilgrami
Quickly move from one method to another during debugging session
12 Nov 2014 by CodeProject
On Wednesday November 12, Microsoft CVP Brian Harry will be available here for a live Q&A in the comment section of this article.
3 Mar 2015 by Gaston Verelst
This article describes how to set up the deployment from VSO to an MS Azure website
23 Feb 2017 by Karthik_Mahalingam
try this, corrected code and custom search. private void btAdd_Click(object sender, EventArgs e) { string nameFamily = tbName.Text + " | " + tbFamily.Text; listnames.Items.Add(nameFamily + " | " + tbTell.Text); } private void...
9 Jan 2015 by BC3Tech
As you've seen me post before, I use the Multilingual App Toolkit in my Upload to YouTube app to localize it into many languages.
12 Mar 2015 by Graham D Smith
Continuous Delivery with VSO: Configuring the Basics
30 Oct 2015 by George Jonsson
Well, this is the wrong forum, but I see that you have posted the same question under the article.MFC (and C++ for that matter) is a different animal compared to C# or VB.NET.The code for a dialog (form) is usually located in four files. For example:MyDialog.h // Contains...
24 Apr 2016 by Richard MacCutchan
A quick Google finds: https://support.microsoft.com/en-us/kb/2717426[^].
20 Dec 2016 by Ralf Meier
I only can suppose ... but I think you should change your code like this :private void Export(){ SaveFileDialog saveDialog = new SaveFileDialog(); saveDialog.Filter = "Excel files (*.xlsx)|*.xlsx|All files (*.*)|*.*"; saveDialog.FilterIndex = 2; ...
1 Jul 2017 by OriginalGriff
2017 is slower than 2015, and 2015 is slower than 2013 - so if you want speed, go with 2013. However, you won't get the features and languages / language extensions you get with later versions, so upgrading your computer might be a better bet depending on your needs. We can't provide links to...
16 Sep 2017 by Graeme_Grant
GOOGLE SEARCH is your friend: volume of media player in WPF C#[^] Found this with C# source code and XAML: WPF - Custom design volume control - Stack Overflow[^]
22 Dec 2017 by Afzaal Ahmad Zeeshan
You can do that, just like with any other version control system. Visual Studio provides two ways to manage and version your source code, 1) Git (VSTS, Git for Visual Studio etc.) 2) TFVC (Team Foundation Version Control) First you need to check what does your repository use, that will narrow...
10 May 2018 by OriginalGriff
Two major problems with that: 1) Never concatenate strings to build a SQL command. It leaves you wide open to accidental or deliberate SQL Injection attack which can destroy your entire database. Use Parametrized queries instead. When you concatenate strings, you cause problems because SQL...
24 Feb 2019 by CHill60
Well I wouldn't call that "ambiguous"! You have exceeded the amount of string literals that the compiler can handle and you need to reduce that. Here are some ideas to help you do that: If you are using the same text repeatedly (e.g. In error messages) then consider using Consts to minimize...
4 Mar 2015 by Member 11497680
One of our customers uses Visual Studio Online which is based on capabilities of Team Foundation Server (TFS)We were researching how to do automated Builds and automated Unit Tests using the Visual Studio Online hosted build agent.We are trying to build one of our Web Applications on...
7 Apr 2015 by Gaston Verelst
This article describes how to set up the deployment flow from DEV to TEST to ACC to PROD using VSO.
2 Jul 2015 by Afzaal Ahmad Zeeshan
Unicode is supported in .NET framework, and you can easily use Unicode's UTF-8, UTF-16 or other encodings (or character sets) of Unicode in your applications. The thing is that you need to be sure whether your application is able to represent the glyphs or not. If you application's font family...
2 Jul 2015 by Sergey Alexandrovich Kryukov
Most of my answer is already in all my comments to the question and Solution 1.Short summary is: 1) Don't use anything non-Unicode; 2) don't even use UTFs, unless you persist the data in any file or stream; which has nothing to do with databases and ASP.NET (the pages should use UTF-8, but...
18 Aug 2015 by sachi Dash
Now I can get all the task through getting work item. WorkItemStore workItemStore = teamProjectCollection.GetService(); string projectName = dr["ProjectName"].ToString(); DateTime max = commonSvc.getMaxDate(groupId,...
28 Oct 2015 by naveen pallela
I am working on Windows Application for a client. We are using an excel tool in WPF. I want to use Application Insights for my application for tracking/monitoring performance analysis.I checked in Google and found that there is not so much discussion to use Application insight for Windows...
30 Oct 2015 by OriginalGriff
Don't post this under Quick Answers - if you got the code from an article, then there is a "Add a Comment or Question" button at the bottom of that article, which causes an email to be sent to the author. They are then alerted that you wish to speak to them.Posting this here relies on them...
30 Oct 2015 by Richard MacCutchan
This application is written in C++/MFC so is a totally different architecture from VB.NET form based applications. Unless you have a good knowledge of Win32, C++ and MFC it is unlikely that you will be able to make the changes you want.
9 Dec 2015 by Richard MacCutchan
This looks like a standard homework question; see https://www.google.com/search?q=c%23%20classes%20tutorial[^].
5 Aug 2016 by Duncan Edwards Jones
I have a visual studio online repo (TFS) that I use for my "CQRS on Azure" stuff but folks are looking for a GitHub version so they can contribute - is it possible to set something up to keep them both in sync?I want to keep the "fast ring" on TFS but push to GitHub as a build step on a...
2 Apr 2016 by Sergey Alexandrovich Kryukov
One of these two Revision Control systems has nothing to do with another one.Therefore, to sync them, update code from one of the repositories and commit updated code to another one. That's all.In a way, this is sensible but cannot be considered as a part of any reasonable development...
24 Apr 2016 by DSomesh
I have a Windows 7 Machine (64 bit). I was trying to install Microsoft Windows SDK for windows 7 but got the error message vcredist_x86.exe installation failed with return code 5100..However , after a bit of googling I found I need to uninstall redistributables of Microsoft VC++ 2010. I...
11 Jun 2016 by Dave Kreskowiak
No.Download it yourself from here[^].
6 Jul 2016 by Thomas Cooper
Visual Studio Team Foundation Service Agile Bugs P2
5 Aug 2016 by calway
Have a look at git-tfs[^] which seems like a reasonable way to keep two repo's on the different plaforms in sync. It's not that hard to setup and use.
11 Aug 2016 by shms_rony
Hi Please I need help I just installing Visual Studio 2015 ( Windows 8.1)but I can't Switch between tabs and Design view is Black you can see The problem here http://i.stack.imgur.com/r8yod.pngWhat I have tried:I tried to repair Visual Studio but didn't work
20 Dec 2016 by Siza International
application stopped working when i open in debugging mode using C#one image are What I have tried: private void Export(){ SaveFileDialog saveDialog = new SaveFileDialog(); saveDialog.Filter = "Excel files (*.xlsx)|*.xlsx|All files (*.*)|*.*"; ...
23 Feb 2017 by Graeme_Grant
According to ListBox.FindString Method (String) (System.Windows.Forms)[^]: Quote:Finds the first item in the ListBox that starts with the specified string.Your ListBox looks like this:listnames.Items.Add(tbName.Text+" | "+tbTell.Text);And you are doing nothing with your search...
16 Apr 2017 by mahakaal
can you share the screenshot of error message ?
29 Jun 2017 by RickZeeland
I think you need WebHooks, see article here: Announcing Microsoft ASP.NET WebHooks V1 RTM | .NET Web Development and Tools Blog[^]
20 Jul 2017 by Member 13321067
My Computer have installed eFPS (Clickonce application) from http://ipds.gujarat.gov.in/eFPSClient/publish.htm But When i start this application without internet efps automatically closed and my computer shutdown automatically without any error. Please give me any sollution... What I have...
20 Jul 2017 by KarstenK
Contact the publisher of the software to change this bad behavoir. Maybe you contact some authorities or the press because it is annoying. For the shutdown the app needs admin rights. Check in the installation folder, whether there is a tiny app with admin rights. Rename it. Maybe the app has...
16 Sep 2017 by Wajahat Aziz Balti
hello everyone i am creating a simple media player in wpf c# (visual studio 2013)and instead of slide bar i want to use increase and decrease (-,+)buttons for volume so can anyone help me how i can do it through code in my code my increase volume button is working but my purpose is to...
20 Sep 2017 by Dave Kreskowiak
Connections to TFS are based on the user that launched Visual Studio. In order to connect as someone else, you have to exit VS and relaunch it using a different account.
22 Sep 2017 by Rodrigo Alex Rodriguez
I had tried for hours to log in and believe it in Visual Studio, the SOLUTION was in the credentials of windows, there was stored the credential to enter the TFS, we must remove that credential and start again visual and will be logged out this solution: como cerrar sesión, o tambien...
22 Dec 2017 by EasyHero
I was added to a team of developers who has the source code on something.visualstudio.com . How do i pull the code to my machine, work on it and push back to the account? What I have tried: i have used the link "Open in Visual Studio" that is on the dashboard of the account but it just opens...
10 May 2018 by jsc42
Further to OG's response... I assume that this.EmployeeUsernameAdd.Text is the old username that you are replacing, so you should use (for example) an @OldUsername parameter. To not change Name if the user has left the field blank, use something like ... ... Name = CASE WHEN @Name = '' THEN...
7 Dec 2018 by BH2016
I recently updated from visual studio 2013 to visual studio 2015. Without doing anything else I opened up a project from 2013 and it told me I could not migrate it but it would do it for me. So I hit okay and went into my project code and I could run it and everything except for my Setup file....
7 Dec 2018 by Richard Deeming
Setup projects are not included by default with Visual Studio 2015. They are now provided as a separate extension which you need to download and install: Microsoft Visual Studio 2015 Installer Projects - Visual Studio Marketplace[^] There's a separate version for Visual Studio 2017: Microsoft...
10 Dec 2018 by RickZeeland
VS2013 does not support setup projects anymore, but you can download an extension here: Microsoft Visual Studio 2013 Installer Projects - Visual Studio Marketplace[^]
12 Dec 2018 by BH2016
I recently upgraded from windows 7 to windows 10. I also updated my visual studio from 2008 to 2013. I have two laptops connected, one with VS 2008 & Win7 and the other is VS2013 and Win10. On my win 10 laptop I have the VS installer which seems to migrate the projects fine from the old laptop...
12 Dec 2018 by OriginalGriff
Go to the Menu bar, and Select "Build ... Clean Solution" to remove all intermediate files - in theory you don't have to do this, but I'm a trusting soul. The Go to "Build ... Rebuild Solution" to do a full rebuild (in theory, this starts with a "Clean", but as I said - I'm a trusting soul, but...
2 Jan 2019 by OriginalGriff
Even if there was, we would not be providing them to you: what you are doing is in breach of at least 2 copyright and licencing agreements, and counts as malicious behaviour. We do not condone, support, or assist in any way with such activities: this is a professional site for professional...
19 Jan 2019 by Primo Chalice
Hello! I have a XML with data in the following format: Original format: Text 1 Text 2 Text 3 Text 4 Text 5 Text 6 Desired XML: Text 1 Text 2...
19 Jan 2019 by Richard MacCutchan
xedoc.Element("artikel").Eleme...
24 Feb 2019 by ahmed_sa
Problem ambiguous error happen when build project on visual studio 2015 ? error : Combined length of user strings used by the program exceeds allowed limit.. How to solve this error please ? my project big and have more files and cannot know on which place this problem come problem...
7 May 2019 by BH2016
When I first try to open a VS2008 version in VS2013 a screen comes up with a migration report with the error... >visual studio needs to make non-functional changes this project in order enable the open visual 2013, 2012, and 2010 sp1 without impacting behavior. then when the program is ran it...
7 May 2019 by #realJSOP
You're migrating through 4 or 5 versions of VS. You should honestly expect issues.
9 May 2019 by OriginalGriff
You should talk to the people who created it - they should provide technical support and will know more about their product than we will. If they don't, then find another supplier and demand your money back! It's their licence, so they are the only ones who know enough detail to check / issue a...
29 May 2019 by Richard MacCutchan
See Starting to Develop Visual Studio Extensions - Visual Studio | Microsoft Docs[^].
29 May 2019 by johannesnestler
I'd just create a new extension project (VSIX Project). Verify you have updated your knowledge and can install/uninstall the new VSIX Project, and find out how to work with the "experimental instance" of vs (on Project properties page you can deploy your vsix on build directly to the...
24 Jan 2020 by s yu
I installed VS Code and Git, and also some needed setups. Then I opened the project file on VS Code. I typed npm install I got such errors error Error while executing: error C:\Program Files\Git\cmd\git.EXE ls-remote -h -t ssh://git@github.com/Esri/dojo.git error error...
27 Jul 2016 by Metaphysico
Quickly see the status of all of your builds in one widget on your dashboard
12 Jul 2016 by David A. Gray
The Excel powered resource generator, version 2, is vastly improved and better documented.
29 Jun 2016 by Thomas Cooper
This is a simple desktop application, which used the Visual Studio online API to create and add elements to bug within your AGILE workflow.
4 Aug 2018 by OriginalGriff
Simple: stop using row zero each time:row["Cast"] = objResult.ResutlDs.Tables[2].Rows[0]["Column1"].ToString(); ^ | Instead, set up a integer variable outside your loop (or better use a for loop...
5 Aug 2018 by Akshada Sane
Thank you all for helping me i got solution using below code objResult.ResutlDs.Tables[0].Columns.Add("Cast", typeof(string)); for (int i = 0; i
5 Aug 2018 by Akshada Sane
Thank you all for helping me i got solution using below code objResult.ResutlDs.Tables[0].Columns.Add("Cast", typeof(string)); for (int i = 0; i
5 Aug 2018 by Akshada Sane
My Current Result in Table[0] Id | Name | City 1 | Akshada | Baroda 2 | Rutu | Pune I want to add Cast from Table[2] into Table[0] I Want Below Answer Id | Name | City | Cast 1 | Akshada | Baroda | Bramhin 2 | Rutu | Pune | Rajput 3 | ...
19 Aug 2021 by Mohammed-cd7
I have application (winform) use a sql localdb, the probleme when I insert arabic word i have in the colomn of the name this character "??????" ,I use this code: var arabic = Encoding.GetEncoding(864); var bytes = arabic.GetBytes(libelléTextEdit.Text); ...
4 Jul 2015 by Mohammed-cd7
Thank you for all your solution ,i just add N inside the data in the query and is inserted successfully.
23 Feb 2017 by Member 13019612
hi allquestion is i want to user put name of the item in serch textbox and then click on search button and when that item finded show tell number of that name in an other textbox here is my code private void btAdd_Click(object sender, EventArgs e) { tbTell.Text =...
5 Aug 2018 by Akshada Sane
My Current Dataset in Table[0] Id | Name | City 1 | Akshada | Baroda 2 | Rutu | Pune Second Dataset Table [1] Cast Bramhin Rajput Muslim I Want Below Answer Id | Name | City | Cast 1 | Akshada | Baroda | Bramhin 2 | Rutu | Pune |...
30 Oct 2015 by Member 11267069
Hello code project people, this site is awesome, I have always found interesting information.I do really need to edit this project: HexEdit - Window Binary File Editor[^]The edition will be intended for educational purposes, it consist in several things like:1) Edit the main screen...
9 Dec 2015 by Member 12197504
add a new public class named grocerybasket-derive from the generic List class-ensure that only groceryItem objects are stored as items
18 Oct 2016 by OriginalGriff
It was aquired by Episerver: Ektron[^] so start there.If that doesn't do it, ask at the developer forums: Ektron Developer Center[^]
1 Jul 2017 by Mr_cool
Hello, I have been using VS 2012 for quite long now. But now I need some new features. Which version shall I use? I'm looking forward to use community editions of VS and TFS. Also, will SQL Server 2008 (Professional) work fine with the higher versions or shall I try latest express edition...
20 Sep 2017 by Rodrigo Alex Rodriguez
how to log out, or change user ?? in Team Foundation Server from Visual Studio .. What I have tried: how to log out, or change user ?? in Team Foundation Server from Visual Studio ..
10 Nov 2017 by Sarah Mohammed77
and this is my vslog [^] What I have tried: I don't know what to try to finish the applying
10 May 2018 by Primo Chalice
Hello, I have created a Windows Form using C# Windows Application to add, update, delete and show user data from SQL. All the queries are working perfectly but when I am updating a particular user data, the fields that I am leaving empty are becoming blank in SQL as well. I have 3 TextBoxes: ...
4 Aug 2018 by akash dhonde
I guess you have to learn innerjoin,leftjoin that will help you join table and get colume from 2 table with first and display together This is an example try this SELECT Orders.OrderID, Customers.CustomerName FROM Orders INNER JOIN Customers ON Orders.CustomerID = Customers.CustomerID;
10 Dec 2018 by BH2016
I recently upgraded from visual studio 2008 to 2013. I am trying to open the .sln file from 2008 in 2013 and it all works except for the setup file which says the wrong version is downloaded and incompatible. I think I have to edit something in the text editor but not sure. What I have tried: ...
29 May 2019 by jing567
Hi, I have a project which builds a custom tool menu item in Visual Studio i.e an extension add-in project to visual Studio 2005. Now I need to upgrade this project so that it should behave as plugin/extension for VS2017. My first question is, Do we have possibility to upgrade this project...