Any good IDE for J2ME/MIDI programming ?

Hi
I am new to the J2ME world. I have to develope a GUI based application on iPAQ4350. But I am not given any ramp up time with awt programming. So I am wondering whether there is any good IDE ( like VB Editor ) with all standard widget ( like button, textfield etc) which I choose and create my GUI.
Someone please post.

You can try Sun One Studio Mobile Edition, but even this does not provide you with visual development of GUI like buttons, drag and drop.....This is J2me World honey, learn to be small....

Similar Messages

  • OTAP any good ideas for content ?

    hi,
    I support the cisco wireless network at a city hospital and have been interested to read about OTAP which seemingly is a method of distributing updates and content to wireless devices.
    we run cisco 7921g`s and would like any feedback or ideas as to the types of things that may be of interest or use (im not talking specifics but methods) i.e news updates / bulletins
    does it work like that i.e is that the best way to deliver news updates or messages to an IP phone.
    sorry if this is a strange suggestion but if i have the feature sets i may aswell use them !
    many thanks
    megz

    Hi Megz,
    As far as I know, OTAP is only used as a means of WLC Discovery for AP's.
    Understanding Over-the-Air Provisioning (OTAP)
    http://www.cisco.com/en/US/products/ps6366/products_tech_note09186a008093d74a.shtml
    Hope this helps!
    Rob

  • URGENT !!! ANY GOOD BOOK FOR JMF - RTP programming ????

    Can you propose some books about JMF and RTP/RTCP programming ??
    Thanks in advance !!!

    The only JMF books available are "Essential JMF - Java Media Framework" by Rob Gordon (ISBN 0130801046), "Core Java Media Framework" by Linden deCarmo (ISBN 0130115193) and "Programming with the Java Media Framework" by Sean C. Sullivan, et. al. (ISBN 0471251690). All of them are very out-of-date and only cover JMF 1.x (i.e. no audio / video capture and no RTP). All of them were not very good to begin with but "Essential JMF" is probably the better of the three.

  • Hi:) I want to cancel my "one year membership" for the education-programm without loosing to much money. Are there any good ideas?

    Hi:) I want to cancel my "one year membership" for the education-programm without loosing to much money. Are there any good ideas?

    You paid for one year and that's just it. If you don't use it then that's nothing anyone can change. feel free to contact sales support.
    Mylenium

  • Hi Guys! I have an Imac with Mac OS X version 10.5.8 and bought a wireless keyboard. Unfortunately I can´t use the volume buttons on the keyboard. I have checked almost everything, does anyone have any good idea?

    Hi Guys! I have an Imac with Mac OS X version 10.5.8 and bought a wireless keyboard. Unfortunately I can´t use the volume buttons on the keyboard. I have checked almost everything, does anyone have any good idea?

    Hello, try kguy's solution here...
    https://discussions.apple.com/thread/2332457?start=0&tstart=0
    First, Go to System Preferences, keyboard, and click on the Keyboard tab
    Make sure that the checkbox by "Use all F1, F2, etc, keys as standard function keys" is NOT checked.
    Next, click on the Show All button, and select Bluetooth. You should see your Apple Wireless Keyboard listed on the left side of the screen.
    Click once to select it, and then click the gear icon at the bottom of the box, and choose Disconnect.
    Power off the keyboard by holding down the power button on the keyboard for a few seconds until it show "keyboard Off on your imac screen, then turn it back on again.
    The device should appear once again in your bluetooth list.
    Try out the volume control buttons now, and see if that cleared things up

  • Good IDE for JSP/Servlets Development

    Guys, I was looking for a good IDE for JSP/Sevlets development. I for myself wouldn't need or atleast wouldn't want to have one, but for our production they say they need one. So please can u guys advise one. I have downloaded and tried JDeveloper but it just hangs, dont know but looks like its too memory intensive. Any suggestions??? Thanks in advance

    IBM's Websphere Studio Application Developer (WSAD) is a good one. It can also connect to any CVS servers, which allows you to control the versions. Hope this may help you...

  • Some calendars in iCal appear corrupted but OK on iPhone. If I sync will the calendar data on the phone restore info on the desktop iCal? any other ideas for how to sort this please?

    Some calendars in iCal appear corrupted (ie have red exclamation mark by them) but are still OK on iPhone. If I sync, will the calendar data on the phone restore info on the desktop iCal or will I lose that as well? Or could I back up the calendars on my iPhone somewhere and then import them into iCal? any other ideas for how to sort this please? it's driving me mad. thanks.

    I don't think there will be a solution to this. Exchange 2003 just isn't supported.

  • Ideas For a Simple Program?

    I need some ideas for a simple program for a project in class. Can anyone help me?

    Import Classes
    import java.io.*;
    public class tictactoe
    Define Variables
    public static InputStreamReader ISR = new InputStreamReader(System.in);
    public static BufferedReader BFR = new BufferedReader(ISR);
    public static String BOX[][] = new String[3][3]; //Integer Arry for tictactoe box
    public static String PName; //Moving Player's Name
    public static String P1Name; //Player 1 Name
    public static String P2Name; //Player 2 Name
    public static String InputPLY; //X or O
    public static String InputStr; //Player's Input
    public static boolean BreakLoop; //Set this to true in PlayGame() to exit
    public static void main(String args[]) throws IOException
    InputPLY = "O";
    BreakLoop = false;
    ClearBOXCache();
    PrintCredits();
    System.out.println("");
    System.out.println("PLEASE ENTER PLAYER 1 NAME");
    P1Name = BFR.readLine();
    System.out.println("PLEASE ENTER PLAYER 2 NAME");
    P2Name = BFR.readLine();
    System.out.println("");
    System.out.print("\nWelcome ");
    System.out.print(P1Name);
    System.out.print(" and ");
    System.out.println(P2Name);
    System.out.println("");
    System.out.println(P1Name + " = X");
    System.out.println(P2Name + " = O");
    PlayGame();
    PrintCredits();
    BFR.readLine();
    System.exit(0);
    public static void DrawGrid()
    This function is to draw the tictactoe grid.
    System.out.println("");
    System.out.println("\t/-----------------------------\\");
    System.out.println("\t|-------- TIC TAC TOE --------|");
    System.out.println("\t|-----------------------------|");
    System.out.println("\t| | | |");
    System.out.println("\t| " + BOX[0][0] + " | " + BOX[0][1] + " | " + BOX[0][2] + " |");
    System.out.println("\t| | | |");
    System.out.println("\t|-----------------------------|");
    System.out.println("\t| | | |");
    System.out.println("\t| " + BOX[1][0] + " | " + BOX[1][1] + " | " + BOX[1][2] + " |");
    System.out.println("\t| | | |");
    System.out.println("\t|-----------------------------|");
    System.out.println("\t| | | |");
    System.out.println("\t| " + BOX[2][0] + " | " + BOX[2][1] + " | " + BOX[2][2] + " |");
    System.out.println("\t| | | |");
    System.out.println("\t\\-----------------------------/");
    public static void PrintCredits()
    This function is to print credits. Intended for startup and ending
    System.out.println("");
    System.out.println("");
    System.out.println("\t-------------------------------");
    System.out.println("\t--------- TIC TAC TOE ---------");
    System.out.println("\t-------------------------------");
    System.out.println("");
    System.out.println("\t-------------------------------");
    System.out.println("\t---- MADE BY WILLIAM CHAN! ----");
    System.out.println("\t-------------------------------");
    public static void ClearBOXCache()
    This function is to clear the BOX's cache.
    It is intended for restarting a game     
    BOX[0][0] = " ";
    BOX[0][1] = " ";
    BOX[0][2] = " ";
    BOX[1][0] = " ";
    BOX[1][1] = " ";
    BOX[1][2] = " ";
    BOX[2][0] = " ";
    BOX[2][1] = " ";
    BOX[2][2] = " ";
    public static void CheckWin(String PLYW) throws IOException
    This function is to check if a player wins
    for (int X = 0; X < 3; X++)
    if (BOX[X][0].equals(PLYW) && BOX[X][1].equals(PLYW) && BOX[X][2].equals(PLYW))
    PrintWin(PLYW);
    for (int Y = 0; Y < 3; Y++)
    if (BOX[0][Y].equals(PLYW) && BOX[1][Y].equals(PLYW) && BOX[2][Y].equals(PLYW))
    PrintWin(PLYW);
    if (BOX[0][0].equals(PLYW) && BOX[1][1].equals(PLYW) && BOX[2][2].equals(PLYW))
    PrintWin(PLYW);
    else if (BOX[0][2].equals(PLYW) && BOX[1][1].equals(PLYW) && BOX[2][0].equals(PLYW))
    PrintWin(PLYW);
    else if (!BOX[0][0].equals(" ") && !BOX[0][1].equals(" ") && !BOX[0][2].equals(" ") && !BOX[1][0].equals(" ") && !BOX[1][1].equals(" ") && !BOX[1][2].equals(" ") && !BOX[2][0].equals(" ") && !BOX[2][1].equals(" ") && !BOX[2][2].equals(" "))
    ClearBOXCache();
    System.out.println("Tie Game!");
    BFR.readLine();
    System.out.println("Game has restarted");
    public static void PrintWin(String PrintWinner) throws IOException
    This function is to print which player won
    if (PrintWinner.equals("X"))
    System.out.println(P1Name + " wins!");
    System.out.println(P2Name + " loses!");
    else if (PrintWinner.equals("O"))
    System.out.println(P2Name + " wins!");
    System.out.println(P1Name + " loses!");
    BFR.readLine();
    ClearBOXCache();
    System.out.println("Game has restarted!");
    public static void PrintInstruction(String PLYINSTR)
    This function is to give instruction to the player
    if (PLYINSTR.equals("X"))
    PName = (P1Name);
    else if (PLYINSTR.equals("O"))
    PName = (P2Name);
    System.out.println("");
    System.out.println(PName + ":");
    System.out.println("PLEASE MAKE YOUR MOVE");
    System.out.println("");
    System.out.println("TL = TOP LEFT BOX, TM = TOP MIDDLE BOX, TR = TOP RIGHT BOX");
    System.out.println("ML = MIDDLE LEFT BOX, MM = MIDDLE MIDDLE BOX, MR = MIDDLE RIGHT BOX");
    System.out.println("BL = BOTTOM LEFT BOX, BM = BOTTOM MIDDLE BOX, BR = BOTTOM RIGHT BOX");
    public static void PlayGame() throws IOException
    This function is the main game function.
    It calls other game functions.         
    Define Variables
    while(true)
    if (InputPLY.equals("O"))
    InputPLY = "X";
    else if (InputPLY.equals("X"))
    InputPLY = "O";
    while(true)
    PrintInstruction(InputPLY);
    InputStr = BFR.readLine(); //Player's move
    Check player's move
    if (InputStr.equals("TL"))
    if (BOX[0][0].equals(" "))
    BOX[0][0] = InputPLY;
    break;
    else if (InputStr.equals("TM"))
    if (BOX[0][1].equals(" "))
    BOX[0][1] = InputPLY;
    break;
    else if (InputStr.equals("TR"))
    if (BOX[0][2].equals(" "))
    BOX[0][2] = InputPLY;
    break;
    else if (InputStr.equals("ML"))
    if (BOX[1][0].equals(" "))
    BOX[1][0] = InputPLY;
    break;
    else if (InputStr.equals("MM"))
    if (BOX[1][1].equals(" "))
    BOX[1][1] = InputPLY;
    break;
    else if (InputStr.equals("MR"))
    if (BOX[1][2].equals(" "))
    BOX[1][2] = InputPLY;
    break;
    else if (InputStr.equals("BL"))
    if (BOX[2][0].equals(" "))
    BOX[2][0] = InputPLY;
    break;
    else if (InputStr.equals("BM"))
    if (BOX[2][1].equals(" "))
    BOX[2][1] = InputPLY;
    break;
    else if (InputStr.equals("BR"))
    if (BOX[2][2].equals(" "))
    BOX[2][2] = InputPLY;
    break;
    else if (InputStr.equals("RESTART"))
    ClearBOXCache();
    System.out.println("");
    System.out.println("GAME RESTARTED!");
    System.out.println("");
    break;
    else if (InputStr.equals("QUIT"))
    BreakLoop = true;
    break;
    if (BreakLoop == true)
    break;
    DrawGrid();
    CheckWin(InputPLY);
    }

  • Are there any good tool for checking security risks, Code review, memory leakages for SharePoint projects?

    Are there any good tool for checking security risks, Code review, memory leakages for SharePoint projects?
    I found one such tool "Fortify" in the below link. Are there any such kind of tools available which supports SharePoint?
    Reference: http://www.securityresearch.at/en/development/fortify/
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

    Hi Amalaraja Fernando,
    I'm not sure that there is one more tool that combines all these features. But you may take a look at these solutions:
    SharePoint diagnostic manager
    SharePoint enterprise manager
    What is SPCop SharePoint Code Analysis?
    Dmitry
    Lightning Tools Check
    out our SharePoint tools and web parts |
    Lightning Tools Blog | Мой Блог

  • Is a time capsule a good idea for a college student living in a dorm?

    Is a time capsule a good idea for a college student living in a dorm?

    Before you buy......you need to check with the school to see if they allow wireless routers in the dorms, or on campus at all.
    Most schools prohibt the use of wireless routers due to interference issues.
    Even if the school might allow this, there is no way to know in advance how well this might work....and frankly this type of setup is difficult, even if you have a friend who "knows computers".
    If it were me, I would purchase a hard drive for backups....just like you do now.... and send an email once or twice a week to the student to remind them to "backup".

  • When I would like to upgrade my iPad2 at software update of general at settings, loading logo onscreen for hours with no progress. The goal is to upgrade iOS from 5 to 7.0.1. Any good solution for that?

    When I would like to upgrade my iPad2 at software update of general at settings, loading logo onscreen for hours with no progress. The goal is to upgrade iOS from 5 to 7.0.1. Any good solution for that?

    Connect it to the charger unit as instructed by Apple.
    Update the iOS software on your iPhone, iPad, and iPod touch - Apple Support

  • Since Upgrading to Ios5 i cannot open my contacts! i have tried to disable the Icloud and still they do not open! anyone have any further ideas for me to try?

    Since i updated my Iphone 4S to IoS5 i cannot open my contacts! i have tried to disable the Icloud and still they do not open! anyone have any further ideas for me to try?

    Check the age of the files you wish to open.
    Keynote 6 (the latest you downloaded) will opne Keynote 5 (KN09) files but nothing earlier. For that KN5 will act as an intermediate format (you save KN4 and earlier as KN5), then KN6 can open the resultanr files.
    Make sure you have a backup of your original files, in case KN6 cannot replicate some of your earlier builds and transitions.
    Les

  • Reccomend a good IDE for Win95

    I desparately need a good IDE for my old Win95 laptop. I've been trying to do a lot of Java development on this pentium II IBM thinkpad 600 and getting nowhere. Right now I have JBuilder4 foundation installed on it and it's horrible. The code insight doesn't always work. The garbage collector brings all development (typing included) to a halt. Maybe someone can show me how to either fine tune JBuilder4 foundation for Win95 development or reccomend a good free IDE that I could use to replace it. I use Eclipse at work and that's the best but it's too fat for Win95. I just tried to install eclipse on my poor laptop and it won't even get past the splash screen. Help!
    Cliff

    Check out my freeware IDE Gel at http://www.gexperts.com . It is natively compiled for Windows so it is light and fast. It includes most common features such as code assistants (code completion, parameter hints, javadoc identifier, etc) for Java and Jsp, smart project management, integrated source control, etc. You can see screenshots at http://www.gexperts.com/features.html
    Gerald

  • Any good site for learning struts using weblogic

    Hi all,
    Please tell me any good website for learning struts using weblogic. I mean how to creat page and deploy , run it .....
    Thanks in advance

    Hi,
    here is the link for RMI tutorial.
    http://java.sun.com/docs/books/tutorial/rmi/index.html

  • Any good tutorials for using jQuery and ColdFusion to build mobile apps

    Does anyone know of any good tutorials for using jQuery and ColdFusion to build mobile apps?
    Thanks!
    Lee

    I was just this moment looking at this website http://jquerymobile.com/
    Then for you a Google search on Jquerymobile and coldfusion
    http://www.google.co.uk/search?q=jquerymobile+and+coldfusion&ie=utf-8&oe=utf-8&aq=t&rls=or g.mozilla:en-GB:official&client=firefox-a
    http://jquerymobile.com/resources/
    Brings me onto this tutorial
    http://www.raymondcamden.com/index.cfm/2011/8/26/Making-jQuery-Mobile-templates-even-easie r--with-ColdFusion

Maybe you are looking for

  • How to set up a samsung 2433LW monitor as a second monitor?

    I have a HP Pavilion Elite HPE running on Windows 7 64bit.  I have one monitor attached, a HP 2311x connected using one of the two available DVI ports.  When I connect a second monitor, a Samsung 2433LW using the second DVI port, the second monitor i

  • How do I test if Dataset is empty or not

    I want to use the Spry:states, with the Spry:State="ready" div, holding a couple of Spy:if's, to display content, based on whether my dataset is empty or not. If it is empty I want to show a message. If the dataset has data, I will show my dynamic ta

  • JDK 1.4 installs but doesn't work in XP

    I downloaded the new JDK 1.4 and installed it, but it doesn't work. No application that requires Java works... none of them can find the JVM or the reference to the JRE. I use to have only the JRE running here and everything was fine, but I want to i

  • IMac (2006) won't let me install system

    I have a iMac core duo (2006) and I just replaced the failed hard drive.  I purchased the Mac with the system already installed (thus I had no install disks).  When I replaced the hard drive, knowing I would need the disks I purchased (on eBay) an or

  • Change in Terminal Behavior

    I upgraded computers and OSs - was using Terminal 1.4.6 on my G4. Now have a G5 with Terminal 1.5. On the G4, when I entered "bbedit /file/location/" in Terminal, BBedit would automatically start up and open the file. When I try this on the G5 I get