Tagged Questions
The version-compatibility tag has no wiki summary.
6
votes
3answers
167 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 ...
5
votes
5answers
4k 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 ...
3
votes
1answer
64 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
3answers
229 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 ...
1
vote
1answer
97 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
54 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
492 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 ...
0
votes
1answer
1k 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 ...
0
votes
3answers
568 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 ...