Can I add breakpoint on CreateProcess in VS
Can I add breakpoint on windows CreateProcess API in Visual studio like I can do in Windbg? ...
Can I add breakpoint on windows CreateProcess API in Visual studio like I can do in Windbg? ...
Debugging stored sproc can be menace, & I was not able to use the Immediate Window like the way I thought I would be. Is the immediate window available while debugging Stored Procs in VS 2005? Is there any other way I would be able to run queries on a Temporary Table which I am creating inside a Stored Proc ? As the scope of the Temp...
Is there a visual studio plug-in that will track how long it takes to compile and run a project? Basically I'm trying to make a case to get faster computers for the development department. It seems like it takes a minute or so every time I want to run/debug, so I want a way to track how long ever day/week/month my computer spends compil...
The primary reason for asking how to do this is because I personally never use it. The Designer is slow to load... especially on complex pages with lots of controls. To put it bluntly, I think of it as a crutch that web developers should avoid. I would like to encourage team members to avoid using it as well. If there is a way to do ...
We're considering converting a large solution from 2005 to 2008, but want to make sure that we don't hit any unforeseen issues. What are the things that we should be looking out for? Are we going to need to retest the entire project? Thanks! ...
I will usually have a number of instances of Visual studio 2005 open on the same machine loaded with different versions of the same solution. I would like very much to be able to do is to identify which instance is which (prefferably from the taskbar or the title bar) without having to drill down to an individual file and right click vie...
I need to perform bulk insetion into a sqlite database in visual studio. Does anybody know how to do this? ...
Hi, i had a look on many similar questions on this side but none of them answered the question to my problem. The whole day i tried to solve this by finding a solution (via google etc.): I have 4 projects in my VS solution (everyone targeting .net 3.5) - for my problem only these two are important: MyBaseProject <- this class library...
I'd like to add an item into the Visual Studio 2008 context menu exactly how ASP.NET MVC projects have "Add View" or "Add Controller" items in the context menu. How would I accomplish this? Do I have to write an add-in? Thanks, Nathan ...
hi can you help me to find the problem at this line of my code where i try to add canvas to excel sheet from c# Line 1 Excel.Worksheet ws = (Excel.Worksheet) Globals.ThisAddIn.GetActiveWorksheet(); Line 2 ws.Shapes.AddCanvas(100,100,100,100); at line 2 it gives me exception... am i doing smth wrong? thanks a lot...
I am rendering stuff with a Graphics-object in a picturebox inside the Paint-event for that picturebox. void pictureBox1_Paint(object sender, PaintEventArgs e) { Graphics g = e.Graphics; g.FillEllipse(color, x, ...); etc etc...... } Everything works fine but suddenly the picturebox turns white and ...
Managing XML files in a Visual Studio project (2 instances) If I add an XML file to my VS project it at the root level of the project with the source files. But then if I want to test or build I need a copy down in the bin directory. Of course I always end up editing the one at the root level that is in VS and then I go to test and am u...
We have a dedicated Windows XP system running our VC++ application, full screen. We want to protect general user from access system resource via our application. We plan to add authorization to our VC++ application. Whenever user try to access system resource, he/she needs to pass the authorization check first. If we can use existing Win...
I'm using Visual Studio 2005, C#, and IIS 5.x on WinXP developement machine. In my VStudio solution I have these projects: FileServiceDemo (a web application project) hosted at http://localhost/FileServiceDemo2005 default.aspx - displays System.Security.Principal.WindowsIdentity.GetCurrent().Name and ...
Is there any way to analyze app-crash minidumps (e.g. created by SetUnhandledExceptionFilter, or minidumpwritedump()) with source, using Visual Studio 2008 Express? I generally do this at work using "real" versions of VS, but when trying to get it to work on my personal projects (using VS 2008 Express) it tells me "There is no source ...
Hi My default browser is Chrome. When I run my web applications within VS 2008 IDE, it uses chrome. I want to use IE for this. Is there an option in VS 2008 to make IE the browser to load the web applications? I just want this when using VS 2008 - I don't want to change my default browser each time otherwise. EDIT: when creating a s...
When I put a button on a form in C#, Visual Studio 2005, and have an action triggered by a button event, such as MouseHover or MouseDown, then the event triggers a single call to the function which defines the action despite the fact that I may continue to hover or keep the left button down. In this case I am trying to move a graphical ...
I don't know why but for some reason I am not able to refer to my tbText control in my code behind file. Here is the XAML part: <ComboBox.ItemTemplate> <DataTemplate> <ItemsControl x:Name="ic"> <Grid> <Grid.ColumnDefinitions> ...
I love Visual Studio's ability to auto format (CTRL + K,D). However, in HTML if you have something like: <h1><%# Eval("SomeField") %></h1> It gets formatted this way: <h1> <%# Eval("SomeField") %></h1> I'm fairly certain that the line break after the <h1> tag is caused by Visual Studio's formatting rules for embedded code bloc...
Perhaps this is a stupid question, but for the life of me I cannot find a way to do this. How would one go about adding an event handler to a control in a form in Microsoft Visual Studio (2008) with C#? I can do it manually, but opening the Designer.cs file for the Form, but I cannot find a way to do it through the interface. In MSVC 6...