I tried it; it works. Thanks again, tiviinik. Thanks also for the link with the extra information. :)
Type: Posts; User: John_123; Keyword(s):
I tried it; it works. Thanks again, tiviinik. Thanks also for the link with the extra information. :)
Thank you, tiviinik. I plan to give that a try.
Is there a way to read the date format setting that the user has specified in the main settings of the phone? For example, whether the user has specified that the date on the phone be displayed as:...
Thank you for the additional information, Andrew, and sorry for my delayed reply! :)
Thank you again, Andrew. :)
Thank you, CarlosDL and Andrew, for the replies. Also, I apologize for my delayed response.
Andrew, regarding the ticket reference number, I have not received an email message with one in the...
Approximately three weeks ago, I sent an email message to Nokia to start the process of Java Verified signing for a MIDlet J2ME app. I sent the message to the below two email addresses:
...
Thank you, im2amit. Also, I found the below link, which appears useful in elation to this subject matter:
http://www.developer.nokia.com/Community/Wiki/How_to_write_data_to_a_file_in_Java_ME
Is it possible to export a record store to a comma-separated values (CSV) file? If so, where on the phone would it be stored such that it could be accessed from a computer using the Nokia PC Suite?
Does anyone know how to get the application icon to be recognized when developing a MIDlet with NetBeans?
After creating a project with NetBeans, I put a copy of an icon, named "icon.png" in the...
The application icon appeared after my most recent transfer of the .jar file to the phone by means of the application installation feature of the PC Suite.
Thank you for the additional information, petrib. When separately uploading the content to the store, will the uploaded icon then automatically get installed as an application icon on the phones of...
Thank you again, petrib. My phone does not have a SIM card; therefore, it does not have any networking capability other than Bluetooth, if I understand correctly. Is connecting to a server the only...
Thank you for the information, petrib. Because I don't have the means by which to utilize a server, does that mean that I will not be able to make the application icon appear on the phone, or is...
I'm trying to make the MIDlet icon appear on a phone, and in that regard, I have a question about transferring the JAD file and the icon file to the phone.
The below shows the contents of the JAD...
Thank you for the reply, Tiger79. Eclipse also has the means to obfuscate code from within the IDE itself. When I try to use it, the "Could not find jar tool executable" error message is displayed....
Below is the bottom half of the code:
// Get the year, month, and day of the month as strings from the text fields.
strYearChoice = yearField.getString();
strMonthChoice =...
The code further below is for a MIDlet that obtains date information from a date field and some text fields, and then displays the sample information on another screen for testing purposes. Both the...
Does anyone know where to put the "proguard.jar" file and any other associated Proguard files so that an obfuscted package can be created from within the Eclipse integrated development environment? ...
Below is the properly functioning code that reflects the recommended changes:
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import java.util.*;
import java.io.*;...
Thank you, skalogir. I'll make the changes and check back here.
I have a form where the date can be specified using a DateField. I am trying to obtain a string value of that DateField. Instead of getting the string value of the date that is chosen, I get the...
I found the cause. Somewhere else in the code was the below line, which caused the main screen to load.
display.setCurrent(screen);
When the main screen loaded, the alert screen was no...
Below is an excerpt that involves searching for a match. When there is a match, the console successfully displays "There is a match." twice, but the alert does not display. Might anyone have any...
I ran the code; it was very helpful. Here is some code from version 7. It seems to work OK. I removed some of the commented-out parts. This is from the top half:
import...