I previously have been involved in a lot of classic ASP based websites, so when it came to migrate to ASP.Net, I took the Website route as it is very similar. I am just about to start on a large new project and wondering if I should re-evaluate my processes.
I have been reading up the best part of a day on the differences between a web ...
I have a function like this:
MyFunction(double matrix[4][4])
{/*do stuff*/}
I am calling this from an outer function (the otuer function is a member function of a class, in case that matters):
OuterFunction()
{
double[4][4] x;
initialize(x); //this function puts the data I want in the matrix
MyFunction(x);
}
I am trying to debug th...
Soon after I tried installing Expression Studio three times, and had to do a system restore each time, suddenly my Visual Studio lost nearly all its project templates (except for Other Project Types). When I try an run a repair off the install disk, it says it cannot load files and is cancelling the install. Anybody have any experience...
I'm running different versions of our application on Sun's open source VirtualBox, is it possible to remote debug the app from the host OS with Visual Studio? The problem is that in Visual Studio when I want to attach to a remote machine I have to enter either a computer name or IP and the IP I get from within the virtual box isn't pinga...
I've installed SlimDX but the assembly reference does not come up as a choice in Visual Studio, and I cannot for the life of me find out where SlimDX has installed itself! Any help would be greatly appreciated!
Thank,
Mikey
...
I'm working on our continuous integration system, and I'm interested in simulating our systems handling of unexpectedly long compile times. Is there any way to cause the compilation to take a long time to complete? Or perhaps force it into some sort of loop that would take a large amount of time to compile? I'm looking for something as e...
Visual Studio is yelling at me about using itoa()... saying to use _itoa instead? It looks to me like they are the same function... what gives?
...
Is there a programmatic way to determine the available themes and skins that exist for a particular control type at run-time, without having to resort to I/O?
The IDE does this elegantly using the SkinIDTypeConverter - most of its logic can be found in GetStandardValues(ITypeDescriptorContext context) and the call to ThemeProvider.GetSk...
I used the macro mentioned in this question to comment a text selection in the CSS editor in VS 2008. I am looking for another macro which uncomments comments.
...
Where can I find the .NET Compact Framework SDK for developing Compact Framework applications in Visual Studio?
...
I use XUnit and Resharper to run my tests. In a given project I usually have a few utility tests which are not really tests but exist purely so I can execute a bit of code easily. For example, I have a test which outputs my NHibernate mappings (I use Fluent NHibernate) to a temporary directory. I don't really like having these as tests, ...
Am I a lazy developer?
Is it being lazy to use automated tools, such as code generators and such?
Now, I could, if I had to, create all the data layers and entities I needed, but I choose to use CodeSmith to generate my datalayers and entities.
I also use Resharper and I would say it fights with MSDeploy as to which gets installed first...
i want to visually display my data on asp.net website as www.visualthesaurus.com display for thesaurus. When the user click on the node then next child node displayed
i want to know is this possible in asp.net.....Give me some idea or any api by which we can achieve this functionality in our website.....Some sourcecode also welcome.....
...
After spending a little time wondering why my app was running a particular scenario very slowly with the debugger attached, I discovered that this was due to having a conditional breakpoint (whose condition was never being met). This seems reasonable, as the CPU would signal the breakpoint and VS would need to evaluate the condition bef...
Recently, I installed the JDK and a java library called LeJOS NXJ, for controlling a LEGO Mindstorms robot. I'd like to be able to set up the language to run through visual studio, which offers J# color coding. The command line to compile the program is:
nxjc "Myfile.java"
and the command line to deploy or download the program to the ...
I have two databases: the source is a database from SQL Server Express by client and the target is a database from SQL Server 2005 database as backup initially. What I need is to sync the source to the target db if there is any difference between them and the sync is one-way from source to target.
I am not sure what tools are available....
I'm using Visual Studio 2008 for C#. I can't understand why this simple code does not work as expected. Any ideas? Thanks!
using System;
namespace TryRead
{
class Program
{
static void Main()
{
int aNumber;
Console.Write("Enter a single character: ");
aNumber = Console.Read...
Another project, Visual Studio's Code Analysis has this option. But I couldn't find it for StyleCop (AKA Source Analysis).
The file I want to ignore is a dbml's .designer.cs code, that includes the // <autogenerated> tag. A blog post tells me that it would be sufficient, but in my case it is not.
...
we're trying to sort out some conventions for handling dependencies with code checked into svn. the previous method was basically a free for all, meaning projects couldn't be checked out and built without fiddling with references (most projects are C#).
we're fixing this one step at a time, and are now checking in binaries to a separate...
I often find myself using several programming languages when making .NET applications. Usually C++/CLI for interop to legacy code and C# for the rest.
With the coming support for F# as a first-class language, I could see myself mixing that in as well.
But is the only way to use multiple language still to setup a project per language? D...