compatibility

How can I find why Android market is filtering my app on certain phone

Hi guys, we have an app for Android called OnTheRoad (market://search/?q=pname:eu.inmite.prj.otr.aclient ), but for certain reason, it is not visible if I access Android Market from Vodafone 845 phone (Huawei Joy). The phone has QVGA screen resolution and runs Android 2.1 system. The app is 1.5+ compatible and has enabled support for s...

Is Apache Shindig 100% compatible with iGoogle implementation

Is Apache Shindig 100% compatible with iGoogle implementation of gadgets.* API and gadget XML specs. best regards ...

How do you make an iOS 4.0 app compatible with iPhone OS 3.1.3?

So, I may have made a mistake in updating my application to iOS 4.0 by wiping my Xcode installation and only installing the 4.0 SDK (I can't even find SDK 3.1.3 in my backups, doh!). I have an app now that has been built with a base SDK of 4.0 and it says in iTunes it requires 4.0 but the only thing I added was the methods -applicationDi...

Horizontal scroll bar moves to its initial position when user clicks on vertical scroll bar

Hi, I am using dojo frame work grid and it so happens that horizontal scroll bar moves back to initial location when the user tries to pull down the vertical scroll bar. this is happening only in firefox and it works fine in ie7 please help. Thanks in advance. ...

JS: document.getElementById(var).style.display - Object needed error in IE8 only

I'm iterating through an array of strings (ids) and passing each element of the array to a function which either hides that element by id or shows it. for(var tag = 0; tag < idtagArray.length; tag++){UpdateImage( idtagArray[tag], xmlhttp.responseText);} And the UpdateImage function: function UpdateImage( usediv, data ) { if( data...

Convert windows phone 7 proj to win mobile 6.5?

Did someone try to convert a windows phone 7 project written in c# to an application that's working on a windows mobile 6.5 . The question is: Are there some special libraries (for "painting the screen") that won't work with the win mobile CF ? The only thing I know, that the application written in c# for win phone 7 is compiled in som...

PowerPoint 2003 with PowerPoint 2007 compatibility pack save as pptx

Hi, I want to create and save a PowerPoint presentation as PPTX using PowerPoint 2003 PIA, with office 2007 compatibility pack installed? is it possible how do i achieve this? PropertyValues.PptPresObj.SaveAs(_pptTemporaryFilePath, PpSaveAsFileType.ppSaveAsPresentation, _ MsoTriState.msoFalse) T...

Imagemagick on Windows 7 compatibility issues

Well, it's pretty simple.. I'm trying to get Imagick (for PHP) working on Windows 7 (localhost), but I can't seem to get it right. I used this 'tutorial': http://support.joomlatools.eu/faq/8-installation/144-installing-imagick-on-windows.html But, when finished, it doesn't display Imagick in phpinfo(). Before that, when I try to 'open' ...

CSS Menu code not working in IE6

i have this code for a CSS Menu... i got it generated by using a CSS Menu Generator tool ... its not working with IE6... what to do... HTML is here <table border="0" cellpadding="0" cellspacing="0" height="30"> <tr> <td> <div class="mainmenu"> <ul> <li class="li_nc"><a href="/" target="_self" >HOME</a></li> ...

Can we create a VC++ executable which will work natively on both 32 bit and 64 bit Windows?

Is there any way to build a VC++ project so that the dll/exe created by it will work as a 32 bit application on a 32 bit Windows OS and as a 64 bit application on a 64 bit Windows OS (not in WOW64). I know that is possible for C# applications using the /ANYCPU option. ...

Silverlight and Windows Phone 7 dll compatibility

Is a library built for Silverlight compatible with a Windows Phone 7 application? ...

Replacement for <conio.h> in Linux

I need to transfer a windows C++ project to linux, however I am currently using MS <conio.h> which is not linux or standards compatible. What header do you recommend to replace it for use in Linux? I would prefer the answer is cross platform too. ...

Doctype tag preventing menu to work properly only in IE7

I got a sidebar menu from DynamicDrive. I changed it a bit so that can be used from right to left. It works perfectly in all browsers except IE7. After loads of debugging I found out that when I remove the <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd"&gt; tag it...

Definitive matrix of $_SERVER values for different web server software out there?

I'm write PHP applications to distribute publicly, and am trying to ensure they run correctly on all popular web server software (IIS, Apache, NGINX, Lighttpd). Does anybody know if someone has created definitive matrix of $_SERVER array items for each different popular server software package? Sounds like a good idea, and I just want ...

Which iPhone SDK to use for compatibility

Hello, i'm writing my first iPhone app with aim to upload it to the AppStore and don't understand one thing: Most popular games on the AppStore have compatibility with iPhone OS 3.0 or later. I have currently installed iPhone SDK 4.0 i believe. I want my app to have the same compatibility starting from 3.0, do i have to install and use...

SQL Server: Why would i add ";1" to the end of a stored procedure name?

i came across a compatibility issue today, as a customer upgraded from Windows XP to Windows 7. The (12 year old code) is calling a stored procedure on the SQL Server called ai_nextid Except that when it calls the stored procedure it is using the name: ai_nextid;1 Yes, with a ";1" appended. Apparently the SQL Server driver in Win...

replace NSRegularExpression & NSTextCheckingResult(ios4) to ios3.1 in iphone ?

application is based on facebook authentication & message post on wall after googling ifind some code in this uses NSRegularExpression & NSTextCheckingResult it generate some error becoz this class compatible with ios4 or lator but i using ios3.1 for removing this what i do (i know to resolve this NSString's rangeofstring or substring ...

newer gcc binary running on older systems

I have a binary compiled with gcc 4.4.0 and am trying to run it on an older system, which does not have gcc 4.4.0. It doesn't work. The error is not that it can't find a symbol, but it just doesn't run correctly and hangs. The differences between the systems are CentOS 5.5 vs 5.2, and gcc 4.4.0 vs 3.4.6. What can I do to get it runni...

When distributing an executable for MacOSX how do I know which versions it will work on? Are there any special build steps for release?

I just built my program for MacOSX using GCC i.e. (gcc main.c). Are there any special build steps I should go through before I distribute the executable, or will it automatically work on all Intel MacOSX systems? ...

PHP: on 32 bit system INT_MAX displays wrong?

I was simply wishing to test for overflow on an integer, such as in C (well, if it were just over integer max anyway). When I looked to see if PHP was actually doing what I told it to, it seems it fails for some reason. Here are my tests of the problem: define('INT_MAX', 0x7FFFFFFF); print "In decimal: " . hexdec(INT_MAX) . "<br/>"; pri...