visual-studio

Crystal Report: Showing Single Column Data into Rows of Multiple Columns

Crystal Reports in Visual Studio 2008 with C# Normally Data from single column comes like Column1 val1 val2 val3 val4 val5 val6 val7 val8 BUT,I want to show data from my Single column in following format: Column1 val1 val2 val3 val4 val5 val6 val7 val8 val9 val9 val10 ...

How can i use complextype class or multi type class is it generic collection?

i need a complex returning type. i have 4 class returning types COMPLEXTYPE must include Company, Muayene, Radyoloji, Satis because i must return data switch case situation how can i do? Maybe i need generic collections How can i do that? public class GenoTipController { public COMPLEXTYPE Generate(DataModelType modeltyp...

How to edit localized forms all at one time in Visual Studio

Hello, I have several forms that are localized to multiple languages. If I do a change on one form (for example, changing the size of a textbox) the change is done only on the localized version of the Form that I have currently selected. Is there a way of extending the change I've done the different localized versions of the same Form ...

Visual studio - Open browser inside it for live editing

I really wonder Can we have a browser inside Visual studio for live editing ( like CSS ) . Thanks for reading :) ...

invoke method of ui

if (b->InvokeRequired) { FuncDelegat^ as = gcnew FuncDelegat(funct1); b->Invoke(as,nullptr); return; } Why that code may not the call function funct1 ...

How to give reference lines dicom pic on Dicom pics in CLEARCANVAS?

i will do that if i open my dicom pics.i have a study . if you look below pic you can see study pic left corner. Big pic is one of series. How can i do that clearCanvas open source sdk? ...

Is it possible to use Visual Studio 2010 to edit Visual Studio 2008 solutions without conversion?

I just downloaded the Visual Studio 2010 trial. It would be nice if I could try it out by doing some real work on some real projects, but I can't convert these projects to 2010 format, because then noone else could open them unless they also install VS2010. Is there any way around this? ...

Is it possible to store credentials for auotmatic Team Foundation Server login?

Is it possible to store the credentials that I use to connect to my Team Foundation Server directly in Visual Studio 2010? I would like to avoid to insert them at every VS launch. The problem is that the machine that host TFS is not in the domain and I am conneting using the credentials of a user created on that machine. Suppose that ...

Automatically inserting new fields in a web.config file

I have an ASP.NET project which has already some custom fields in it's web.config file. I've added in it three more fields and used them in my changes, and it's working great. But where it needs to be used, there aren't these thre fields in the web.config (this was expected, I've just added by hand for tests and developing). How do I c...

Web setup Installer(MSI) error on windows server 2008 environment

Hello!, I have developed a Web Application on VS2008 and I have created WebSetup for my web site. It is working fine when I install this MSI or setup.exe on windows server 2003 environment. If I tried to install on windows server 2008 using MSI file it is throwing error as below- "You do not have sifficient privieges to compelte this i...

.NET Compact Framework with Visual Studio 2010?

Hello can i use .NET Compact Framework with Visual Studio 2010? I have Visual Studio 2003, but i want change to one IDE. ...

Getting the Folder Path via the Browser using Internet Explorer

Hello all, I would like to create a folder selector for my application which will only run on Internet Explorer Browsers (IE6+). I would like to get the full folder path a user wishes to use via a HTML browse button or similar and then pass this to my server side application which is written in PHP! This can not be done via JavaScript ...

Best method to store Enum in Database

What is the best method of storing an Enum in a Database using C# And Visual Studio and MySQL Data Connector. I am going to be creating a new project with over 100 Enums, and majority of them will have to be stored in the database. Creating converters for each one would be a long winded process therefore I'm wondering if visual studio o...

Visual Studio 2010 isn't building before a run when there are code changes. It was doing working yesterday.

I've been using using F5 (Start Debugging) for years to build the code (if its out of date), and then debug. This was working on VS 2010 also, however today it just start debugging without a build. Say I do a clean on the project, and then hit F5 instead of building it so it can run it throws an error message saying that the exe doesn't ...

Creating Options Menu with overlapping panels

I'm trying to create an options menu in a C# forms project, and I'm curious if there's a less ugly way to do this. I have a ListBox that has the different categories of options, and when you select a category, the options for that category appear in a panel on the right. Basically, something identical to the options menu in Visual Studio...

How to skip building the current project and move on to the next project in the soltuion when building the solution

I have a condition, for simplicity let's say if a A.txt exist in the folder. I have couple projects in the solution, and when building projectB, I want it to check this condition and it should only continue to build the project (produce the project .dll file) if the condition failed. If the condition passes, it should skip the current ...

Is it possible to make visual studio treat .htm files like .aspx files? i.e. parse and compile them on build

I've inherited a bunch of code that has server script inside of .htm files. On IIS, a handler mapping pumps.Htm pages though the asp.net engine. Unfortunately, visual studio doesn't notice that they should be treated as code. Is there any way to make VS treat .Htm files as code/aspx files? ...

Visual Studio 2010 (maintaining backwards compatibility)

I know in Visual Studio 2008 you can target a specific framework with your projects, but from what I have been told if you open a project originally created in Visual Studio 2003 or 2005 in Visual Studio 2008, it requires you to upgrade the project to a 2008 project to work on it. Does Visual Studio 2010 have this same type of restrictio...

CMake: Making a Visual Studio project for Windows Mobile

Hi, so far, my night has been extremely frustrating, trying to learn CMake. However, I'm slowly getting there. There are a couple of things bugging me though: 1) Additional Library Directories I can either have this: CMake: link_directories ("../../YoghurtGum/bin") Output: AdditionalLibraryDirectories="..\..\YoghurtGum\bin\$(OutDir),...

Creating a tool dockable window for visual studio

So I have a web service system for mananging development projects, what I would like to do is create a visual studio plugin that accesses the web service and returns a list of tasks for the current users (via some sort of login). Looking round the internet I can't find any good examples or tutorials on how to create a visual studio plug...