Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Stefan1200

#31
Quote from: Gert on 12. May 2007, 03:52:36
And no one ever told us that there is a wrong link on that page !!

Maybe no one used this link :P ;).
#32
Problems / Re: PROBLEM NOKIA 6680
09. April 2007, 15:00:03
Your Caps-Lock Key must be broken, please check this.
#33
Problems / Re: help.. really..
26. February 2007, 19:14:21
Some Motorola phones have problems with long class names and show an "APPLICATION ERROR" message. The only solution is to shorten the classname. Maybe Gert can help you :).
#34
I don't found an online documentation of the Java ME API. But if the Vector has the indexOf() method, my Java SE solution should work. Don't know if this is the best solution, but works for me:

It does not sort, but this can be done after or before calling this method.
tmpDB Vector is needed to delete double entries case insensitive. If this should be case sensitive, tmpDB Vector is not needed!
private void deleteDoubleEntries(Vector dictHistory)
{
Vector tmpDB = new Vector();

for (int i=0; i<dictHistory.size(); i++)
{
tmpDB.addElement(dictHistory.elementAt(i).toString().toUpperCase());
}

for (int i=0; i<dictHistory.size(); i++)
{
int tmp = tmpDB.indexOf(tmpDB.elementAt(i),i+1);
if (tmp != -1)
{
tmpDB.removeElementAt(tmp);
dictHistory.removeElementAt(tmp);
i--;
}
}
}
#35
See the following rules:

If you want, you can discuss bug reports or feature requests on our forums. But write in the right forum (mobile and pc version has different forums).

For any bug report we need:
- Used DictionaryForMIDs version
- Used Dictionary
- Used Mobile Phone or Operating System
- The way how to reproduce the error
- The error message you get (precise text)

Thanks!
#36
See the following rules:

If you want, you can discuss bug reports or feature requests on our forums. But write in the right forum (mobile and pc version has different forums).

For any bug report we need:
- Used DictionaryForMIDs version
- Used Dictionary
- Used Mobile Phone or Operating System
- The way how to reproduce the error
- The error message you get (precise text)

Thanks!

P.S.:
If there is a problem with an older version of DictionaryForMIDs, please first check if that problem still exists in the latest version !!