Does anyone know if there are plans to implement JavaScript in MS Visual Studio, like they do all the other languages?
I am fairly new to coding in JavaScript, but I have come to realise how powerful a language it really is for creating RIA. The main problem is that when it comes to developing and debugging in the IDE, it’s nowhere near...
What is the option for linking the source files in Visual Studio in makefile?
I have given it as 'link', but that doesn't work.
The option for compilation is 'cl'. This is working well.
I want to know the link option.
...
foo.cpp(33918) : fatal error C1854: cannot overwrite information formed during creation of the precompiled header in object file: 'c:\somepath\foo.obj'
Consulting MSDN about this gives me the following information:
You specified the /Yu (use precompiled
header) option after specifying the
/Yc (create precompiled header) option
...
I ask because I couldn't find the stack trace in Visual Studio, while debugging an exception that occurred, after 30 seconds and didn't know to initially google for "Call Stack Window".
And now via the magic of StackOverflow and Google, I won't ever have to remember again. Though through the act of writing this, I will never forget. Is...
Are there output streams besides:
Console.WriteLine(data)
Trace.WriteLine(data)
Debug.WriteLine(data)
Any notable nuances or uses of each(for example: which by default go to command,output,immediate?)
Also which if any are available to show as output from the external tools window when the target is a windows application (...
I have a class with a few methods and I would like to see how the code is converted to IL code. Can I do this using the reflector? If not, can I use VS IDE to view the IL code?
...
Can a component designer access and modify the app.config or web.config file of a project at design time? More specifically, is there some hosting service exposed by VS to do this 'the proper way' ? I know I can locate the .config file myself, open it and have my way with it as I please, but I want this to go through the VS sanctioned wa...
It's been bugging me for a while now, but the ASP.NET designer in VS 2008 can be terribly slow for editing even the simplest of pages. The machines we use are not bleeding edge, but one would think that a 2Ghz Dual Core AMD 3800+ with 3Gb of RAM and a 7200RPM 120Gb hard drive would perform better than it does.
To quantify the problem, ...
I'll explain what I'm trying to achieve:
I want to have a situation where I can create as many controls as I want by creating them in a loop in the code behind. I can do this while using PHP, by mixing the PHP code and the HTML code. This allows me to generate actual HTML tags dynamically.
In ASP.NET, I haven't found a way to replica...
hi,
I hav my execuatable produced by command line building.
I want to debug it in command line itself as like as gdb does in linux.
Also i want run my program in Visual studio GUI from command line options..
How can i do that?
...
Is it possible to get WCF to run under Express edition?
...
Hi
I am currently using Visual SourceSafe, I do not find it easy going. What are other people using, and does it
a) integrate into Visual Studio 2005 and 2008.
b) allow a migration path from Visual SourceSafe with full history/versions.
Thanks
...
Hello,
Is it possible, with Visual Studio compilers, to write 2 functions that get called before calling into other functions and after the functions have executed? In gcc you could do that with __cyg_profile_func_*() functions:
void __cyg_profile_func_enter(void *func_address, void *call_site )
__attrib...
I'm just starting to get into generating code from a DSL using visual studio and was looking for help in how to get one template to call multiple sub-templates.
I was also wondering if there is any merge features that make it easy to regenerate the code when you make changes to your model without loosing any code that has been added.
...
I use a modified form of TODO comment (SteveC_TODO) that allows me to group my own todos together in the task list.
Yesterday I thought it would be nice to modify the refactoring snippets to add a todo comment to the usual NotImplemented exception. I modified the Method Stub - Body snippet to this
$signature$
{
//SteveC_TODO: impleme...
Is it possible in Visual Studio 2008 SP1 to target a C++ COM project to vcredist 2008 instead of vcredist 2008 SP1?
Our customers have the vcredist 2008 installed and we don't want to force them to install vcredist 2008 SP1. (thousands of computers!)
...
In terms of coder productivity what is the quickest way in VS 2005 or 2008 to determine if Foo implements IDisposable. It has happened to me on more than one occasion that I've been caught using a type without a using block because it never occured to me that the thing would need to implement IDisposable.
...
I have a Web Forms textbox in a gridview and I want to higlight the text on a button click. textbox.select(start,end) doesn't work. Here is the code:
Dim row As GridViewRow = TryCast(DirectCast(sender, ImageButton).Parent.Parent, GridViewRow)
Dim txtdays As TextBox = row.Cells(2).FindControl("txtDays")
Dim lbldays As Label =...
I have a solution.
I have an interface.
I have several classes that implement the interface.
I can use "Find All References" in order to find where the interface is implemented, but it also returns results where the interface is the return type, or where a class explicitly implements an interface's method.
Is there a better way to quic...
My co-worker is trying to merge his development branch back into the baseline. Even though he only modified a couple files, all files in the baseline are being checked out for merging. As if it's a baseless merge. What gives?
I don't experience this and the only difference I can see is that I branched directly from the baseline and he m...