Questions tagged [backwards-compatibility]

Backward compatibility refers to a software or hardware system that can successfully use interfaces and data from earlier versions of the system.

1060 questions
0
votes
1 answer

Form validation backwards compatible with earlier versions of IE

I know this is an on going concern in IT these days with different versions of IE being used between different machines, but I was wondering if someone might be able to advise me on how to successfully make this code (which works fine for all my…
0
votes
1 answer

Xcode backward compatibility

I have built an app whose target iOS version is iOS 5.1 and my device's version is 6.1.3. However, I cannot make my app run on my device, as I get the following error: "No provisioned iOS devices are available with a compatible iOS version. Connect…
pierrotlefou
  • 39,805
  • 37
  • 135
  • 175
0
votes
1 answer

what are the consequences of using === in pre javascript1.3?

the Strict equal operator only appeared in Javascript1.3 and ECMAscript 3rd edition. the oldest browser i have is IE6, which implements 1.3. So I don't have any practical way to test the outcome of === on those browsers. if I use === what will…
gcb
  • 13,901
  • 7
  • 67
  • 92
0
votes
0 answers

Assigning value to class method with parameters in C#

I'm working in an assembly in C# that will replace an old DLL registered as COM. That old DLL allowed COM enabled applications (like VB or Perl) or do things like in the following VBS example: dim All_Domains set All_Domains =…
Francisco Zarabozo
  • 3,676
  • 2
  • 28
  • 54
0
votes
1 answer

Renaming a public class in a shipped library

I have a library which has shipped (internally, but still shipped), and I would like to rename a public class within the library. What I would like is a way to make sure that client code keeps on working client code gets a deprecation warning on…
Martijn
  • 11,964
  • 12
  • 50
  • 96
0
votes
1 answer

open intranet URL XP prompts for credentials NTLM compatibility

We have an intranet site on our network which uses NTLM to perform single sign on that works without issues. I wrote a C# application which spawn's an IE window with the site URL. Because the application also installs other applications from a…
Dave
  • 1,823
  • 2
  • 16
  • 26
0
votes
0 answers

Windows DLL Backwards Compatibility

I am using MS detours 3.0 Express to create a DLL that detours a function of an application. I have used StudPE to enter the dll API and hook it to the application. Everything works fine except for it won't work on windows XP. Windows 7 works fine…
madziikoy
  • 1,447
  • 7
  • 22
  • 32
0
votes
1 answer

Backwards compatibility and HTML5 date input - date formatting

So, I'm running into this issue and maybe I'm just not thinking straight, but examples of how sites have handled this would help. I want to use the HTML5 date input - it's nice and smooth. However, I need that date to get eventually put in as a date…
0
votes
1 answer

Compatibility options for Visual Studio project

I'm about to be incorporated to the C# development team in my enterprise. I've been told that currently we're developing for .NET Framework 2.0, so I must stick to VS 2005 features. I have a MSDN subscription and I have VS 2012 installed at my home…
0
votes
1 answer

Backward compatibility issues when migrating to use Jackson with Jersey

I am using Jersey 1.16 for a restful service I provide to my client app. I am trying to move from the default Jersey JSON serializer to use jackson based on this excellent blog…
epeleg
  • 10,347
  • 17
  • 101
  • 151
0
votes
1 answer

Android: App not runnin on Nexus 10 with Jellybean - works fine on older devices

My app targets version 2.2 and seems to run fine on the 3 devices I've tested it on (version 2.2 and 2.3) However, I just ran it on a Google Nexus 10 tablet and the splash screen works OK and takes a touch input to start the next activity (a menu…
Zippy
  • 3,826
  • 5
  • 43
  • 96
0
votes
1 answer

Rotated images in remoteviews

I'm making a battery widget, and to avoid having 20 separate PNG files for the different levels I've got one PNG which I rotate to 20 positions. On Android 3.x+ this is easy, as the ImageView element as a rotate property. For backwards compatibility…
Nick
  • 6,900
  • 5
  • 45
  • 66
0
votes
0 answers

Automator-generated apps - Backwards compatibility

In my experience apps created with automator on Mountain Lion don't work on a Snow Leopard machine. The opposite isn't true though: apps created with automator on Snow Leopard do work on a Mountain Lion machine. I'm creating a very simple wrapper…
guidupuy
  • 505
  • 3
  • 15
0
votes
2 answers

Can I use Android animations added in API 11 and used later but support say API 8/10 devices?

Might be stupid question due to documentation mention that any API use that isn't supported by the device at runtime will throw an exception but I think worth trying ask, might be a solution for this. I want to target minSDK 8 to say latest 16. But…
George Taskos
  • 8,324
  • 18
  • 82
  • 147
0
votes
1 answer

GetConsoleScreenBufferInfoEx equivalent for windows XP?

I know that kernel32.dll does not offer this newer function which seems to have a few extras, namely the modification of the color table, is there any way to get the values that are not in CONSOLEBUFFERINFO but are in CONSOLESCREENBUFFERINFOEX…