The version-compatibility tag has no wiki summary.
0
votes
1answer
23 views
Is it possible to build maven 1.x project using maven 2.x?
I know, we can convert the project.xml from maven 1.x to pom.xml for maven 2.x, but I have come across a complex project setup that was build using maven 1.x, and I just have maven 2.x currently ...
1
vote
1answer
37 views
Feature compliance across different OS versions for the Android NDK
Are NDK features OS dependent? For example, if I have Gingerbread 2.3, can I only use NDK features for 2.3 and below, or can I take advantage of the latest fixes and features the NDK provides?
The ...
0
votes
1answer
99 views
Windows Service with Visual Studio 2005 solution not opening with Visual Studio 2010
I am unable to open a solution created using visual studio 2005 version. The solution has two windows services within. I recently upgraded to Visual Studio 2010. Now I am unable to open the solution ...
4
votes
1answer
140 views
Monotouch: 5.1.0 Beta API change in CheckVersion
In Beta 5.1 of MonoTouch the API to check version changed, it is returning an int now.
UIDevice.CurrentDevice.CheckSystemVersion(5,0,0);
I can't find out what the int mean though. Before it was a ...
2
votes
2answers
784 views
Error when including the zoo package in R
When I tried to include the zoo package, I received the following error information:
> library(zoo)
Error in dyn.load(file, DLLpath = DLLpath, ...) :
unable to load shared object
...
0
votes
1answer
101 views
API to programmatically set Version Compatibility of a VBA Project
Is there an API to programmatically set Version Compatibility of a VBA Project?
Unfortunately i couldn't find component tab in VBA(micosoft visual basic for applications) Project properties dialog to ...
0
votes
1answer
695 views
Error creating a table executing rake db:migrate in Rails 2.0.2 and MySql 5.1
I am trying to implement a rails Recipe application from the site http://oreilly.com/ruby/archive/rails-revisited.html . They have given a good example highlighting the significance of Rails for Agile ...
1
vote
1answer
141 views
GetProperty works in .NET 3.5 but not in .NET 4
I use following code:
protected object GetProperty(object target, string fieldName)
{
Type type = target.GetType();
PropertyInfo mi = type.GetProperty(
fieldName, ...
0
votes
1answer
3k views
Viewing ACCDB with Access 2010 runtime when Access 2007 is installed
I'm hoping someone can either tell me what I'm doing wrong correct my flawed understanding of how this works and explain why it's not possible.
I've been developing a fairly basic database/program ...
6
votes
3answers
242 views
How to check the compatibility between my program and the .NET Framework versions?
I am writing a program which is targeted to run on .net framework 2.0.
I have chosen 2.0 in my VS project.
It runs fine on my machine (mine has 2.0 SP2), so there is no compile error. but when I ...
0
votes
3answers
704 views
Loading a .NET 3.5 assembly via reflection in .NET 2.0
I have an interesting situation and am trying to do something that I'm not even sure is possible.
I have a .NET 2.0 project that via reflection loads an assembly, and calls a specific method on that ...
2
votes
3answers
254 views
Can I write an app in the new version of Visual Studio and make it compatible with .NET Framework 1.1
I am a Web developer who spends 99% of his time in Linux, but I need to develop a super simple application with VB or possibly C# (.Net). The only version of Visual Studio I have is the most current ...
9
votes
5answers
9k views
OS Compatibility for various .NET Framework versions
What are the minimum OS requirements for each of the .Net frameworks? E.g. for which version is it impossible to run each OS on:
Windows 95
Windows 98
Windows 98SE
Windows ME
Windows NT 3.x
Windows ...