visual-studio

Does anyone know how to debug javascript in IE 7 and IE 8 using Visual Studio Express 2010 without having to install Frontpage Server extensions?

I want to use visual studio express to debug Javascript in IE7/8, but it seem to require that frontpage server extensions to be installed on the page. ...

How can i download openGl for C#?

How can i download openGl for C#? ...

Assembly reference in Silverlight class library and used only in xaml is not packaged in XAP

I have a 3rd party library (A). That library is referenced in my Silverlight class library (B). That Silverlight class library is referenced in my Silverlight application (C). The 3rd party library is not explicitly referenced in the Silverlight application. It seems that "A" is added to my XAP if "A" is used in any class in "B" because...

Which VS 2010 version to get?

I want to download VS 2010 Ultimate through my MSDN licence, but I don't see one for the 64-bit. There's Visual Studio Team Foundation Server 2010 (x86 and x64) - DVD (English), but is that just the server or can I use it for dev too? ...

Split large repo into multiple subrepos and preserve history (Mercurial)

We have a large base of code that contains several shared projects, solution files, etc in one directory in SVN. We're migrating to Mercurial. I would like to take this opportunity to reorganize our code into several repositories to make cloning for branching have less overhead. I've already successfully converted our repo from SVN to Me...

CSS is not effecting immediately after change

In Visual studio 2008 I changed css methods (like font size increase). Which is not effecting when I run immediatly. If I publish to server. I can see changes. Why it is not happing in from VS 2008? Thanks ...

Cannot read from registry - HKEY_CLASSES_ROOT if not running in Administrator Mode

I cannot read from the registry unless I run my application in administrator mode. I am building a preview handler, using the IPreviewHandler interface, and I require GUIDs for file types located in HKEY_CLASSES_ROOT. How can I access this information without elevating my application to adminstrator. I am using Delphi but happy for ...

How can i use generic list with foreach?

if i compiled below codes error return foreach loop how can i solve it? Error:Error 1 foreach statement cannot operate on variables of type 'Sortlist.MyCalısan' because 'Sortlist.MyCalısan' does not contain a public definition for 'GetEnumerator' C:\Users\yusuf.karatoprak\Desktop\ExcelToSql\TestExceltoSql\Sortlist\Program.cs 46 1...

How can i add list data in my object?

Below codes run perfectly but i want to re generate simply static void YeniMethodListele() { Calısan calisan = new Calısan(){ ID=1, Ad="yusuf", SoyAd="karatoprak"}; List<Calısan> myList = new List<Calısan>(); myList.Add(calisan); MyCalısan myCalısan = new MyCalısan() { list = myLi...

Is there a way to watch all COM activity on a computer?

I'm trying to deal with a piece of specialized hardware, that presents it's interface as a COM object, using win32com in Python. However, the documentation for how to actually set up the hardware through the COM object is sparse (it requires a significant amount of initialization), and entirely oriented at using a bunch of pre-built lib...

Visual Studio 2010 debug minidump

Hi all, Consider the following code (written with Visual Studio 2010 and .NET 4.0) using System; namespace DumpTester { class Program { static void Main(string[] args) { int test = new Random().Next(); Console.WriteLine(test + new Random().Next()); Test(); } private static void Test() { throw new Exceptio...

How to add search.asmx web reference to webpart application in VS2008 ? facing problem.

Hi, I am trying to create the custom search webpart. I want to use Enterprise Search Query Model (MOSS) . But unable to add the web reference of the search.asmx webservice. infact it has no WSDL file. just wondering about what setting it needs.... too If anybody know how to do, same. please let me know. you can find the search webservice...

Way to generate a code that creates a constructor based on the current values of an object?

Hi, What I want to achieve is after loading my object from the database, to generate a code that will give me a block which initializes my object based on its current values so that I can use this code-block in my unit tests again and again without loading it from Db anymore. Is there any tool around to achieve such a goal for VS? tha...

How can i use listDictionary like list generic?

How can i use ListDictionary like List my sample codes below real codes is last one. for (int i = 0; i < listMyColumnNames.Count; ) { if (i < listMyColumnNames.Count - 1) ---> this is important Text += ", "; i++; } how can i do with ListDictionary. int Qu...

How can I see the C/C++ #include graph easily?

I'm looking for a tool (preferably, a Visual Studio plugin) that would display all files included by a given file and show all files included by those files and so on. ...

How to change font and set word wrap viewing for "find symbol search" result in Visual Studio 2010?

I want to set the font and be able to view in word wrap mode when viewing the results after making a search for a symbol (I often search for references of a method). I don't know how to do this. ...

How can i solve "An explicit value for the identity column in table"?

if i try to add some data into my table error occurs: Error:Msg 8101, Level 16, State 1, Line 1 An explicit value for the identity column in table 'ENG_PREP' can only be specified when a column list is used and IDENTITY_INSERT is ON. insert into ENG_PREP VALUES('572012-01-1,572012-01-2,572012-01-3,572013-01-1,572013-01-2', '', '500', ...

MSChart in VB6 - Axis Formatting

I'm putting together a graph with the MSChart control for VB6. Is there a way to adjust the location of the points on the X axis so that the first data point in the series sits against the Y axis? By default it floats in a space between the origin and the first gridline. ...

Converting 'foreach' to 'for' loop or vice versa with ReSharper possible?

Hi, Is it possible to mark a foreach loop code block and convert it to a for loop with ReSharper? Or with Visual Studio? Thanks! ...

Do the assemblies in Add Reference dialog differ depending on .Net framework used?

I'm curious - does the listing of assemblies in the Add Reference dialog vary depending on the version of the .Net framework used for the selected project. If they do differ, I'd love to know where the differences lie. Thanks! ...