Questions tagged [incompatibility]
302 questions
0
votes
2 answers
Incompatible Types error in reuturn giving me error?
So I have been trying to work on this code for a while, but two of my return functions refuse to work properly. I know I am not returning the right type, but I have absolutely no idea what to return in place of it, here is the code: The errors are…

machinamonster
- 17
- 2
0
votes
2 answers
Ladder-like word game in Java
I've found this question Choosing design method for ladder-like word game and I would also like to do this kind of program. I've written some code but already have two issues. Here's what I already have :
GRID :
public class Grid {
public…

sasquatch90
- 133
- 3
- 9
0
votes
1 answer
django-multilingual-ng / Django 1.1.1 incompatibility?
I am getting "cannot import name connections" exception while trying to use django-multilingual-ng 0.1.20 with Django 1.1.1.
The exception comes from the line 15 of query.py where it tries to:
from django.db import connections, DEFAULT_DB_ALIAS
Is…

onurmatik
- 5,105
- 7
- 42
- 67
0
votes
1 answer
Bugzilla 3.6 with Netbeans 6.8
When I tried to configure bugzilla with netbeans 6.8 a msg told that the bugzilla's version was newer than the netbeans' plugin compatibility.
I've been searching and can't find any updated plugin (and it is not in the plugin manager, at least for…

Miguel Ribeiro
- 8,057
- 20
- 51
- 74
0
votes
1 answer
Just started with Java, I think I need to include new classes.
I added my new classes to the end of an xcode java project creator and Firefox says it doesn't support Java so it won't load any of my options, which may or may not be correctly formatted. I'm sure I should be including new classes but does anyone…
user4294909
0
votes
1 answer
Trouble with methods from libraries in Java?
So my class extends Actor, and I want to use the method getLocation() which requires Location from Actor, but it sends me to getLocation() of java.awt.Point which requires Point
public class Myplayer extends Actor
Location myLocation =…

Highlights Factory
- 59
- 1
- 12
0
votes
3 answers
Why I got incompatible types?
private Pacman pacman;
public Location whereIsGhost(){
return pacman.getLocation();
}
incompatible types: java.awt.Point cannot be converted to ch.aplu.jgamegrid.Location
How to fix it? Which type a compatible with java.awt.Point?

Highlights Factory
- 59
- 1
- 12
0
votes
3 answers
How to return only digits from a scanned string? "incompatible types" error. java
I tried to compile my code, but I got an "incompatible error" with my last code (else if). I was trying to say in that code, "if the input was a mixture of digits and letters return only digits", but it's telling me that there is something wrong…

BAS
- 145
- 1
- 11
0
votes
1 answer
Program works fine in VS 2008, throws exception in VS 2010 at the very end of program
I'm writing to a file using binary/direct access. Works like a charm in 2008, but creates an exception in 2010 at runtime on line 128: Unhandled exception at 0x535dad54 (msvcp100d.dll) in HovedProsjekt.exe: 0xC0000005: Access violation writing…

Joakim
- 2,092
- 1
- 20
- 23
0
votes
0 answers
DLL Incompatibility in various versions of visual studio
I've a DLL file that is compiled with visual studio 2008 (suppose stub.dll), I know the exported function signatures of this DLL, but I don't know about it's internal implementation.
This DLL itself uses some other exported functions from another…

Ehsan Khodarahmi
- 4,772
- 10
- 60
- 87
0
votes
0 answers
Update a program directX
I'm new to stackoverflow, even though I've been here for a while (not registered) reading a lot of important and usefull things, and I'm grateful for a comunity like this!
I have a program, which uses directx 7.0c . The thing is, and you all might…

user3583610
- 1
- 1
0
votes
1 answer
My app is incompatible with lg g2 and some other devices
I had uploaded my app in google playstore. Me and so many of my friends were able to download it and it is working fine in our devices. But one of my friends who has got lg G2 can't open up my app. It is showing "The app is incompatible with your…

Ruju
- 93
- 8
0
votes
3 answers
Search & only display matching options in a Select multi list
I have the following code that works in Firefox, but doesn't work in IE. IE throws the error:
The option tag doesn't support the CSS display attribute
How would I solve this so that it is cross browser compatible. I would prefer vanilla…

Donavon Lerman
- 343
- 1
- 6
- 19
0
votes
0 answers
Template joomla 2.5 vs. IE
i'm Matteo and i have created a web site (www.caelgroup.it) with joomla 2.5. I have customized a default template from joomla but when i open the web site with IE, the site doesn't process in time and the session ends up. Can someone help me?.…
0
votes
3 answers
Code not working on Gingerbread
This code works on API 11+ but I want it to work on API 8. What should I do to make it compatible on gingerbread devices?
This is my Main_Activiy
package com.calculator.cgpa;
import android.app.ActionBar;
import android.app.ActionBar.Tab;
import…

Naveen S
- 53
- 9