Java one community edition

Hi-
I am looking for a cheap windows IDE that has GUI and
database capability. Sun one seems to contain these things as I read
through the features. One IDE I played with a little (years ago) was
Delphi. Does sun one community edition come with a toolbar for
draging and dropping pre-built items like a database grid, check boxes,
radio buttons, combo boxes, push buttons etc.?? Does it come with
predefined events like form open & close or for database before post, on delete,
after post attached to the components etc. I know that is lots to ask for something that is free which
brings me to a final question. If I use this tool and profit from using it am
I violating a license agreement? I have 2 semesters C++ programming at
college and cant find a cheap tool in C++ for windows (widely used).
Borland and Microsoft are both expensive for C++ GUI.
thanks for your help
jim

for java...
you are asking about forte i believe. yes it has all the whirly bits of a full blown IDE and it is free. but it is slooooow and pretty piggish on memory (although a lot of IDE's tend to be). i personally don't like it but i don't like IDE's in general so my opinion on this matter is somewhat irrelevant. anyway the answer to all your questions i believe is yes.
actually i was just looking about and i see it's all changed it used to be forte. i can't find anything at the moment but for answers to your legal questions try reading the licence agreement, they are usually very legalese but if you read a couple of times you should be able to get the gist of it.
for c++, i don't know about the IDE question. here is a link though to the gcc compiler which is an open-source c and c++ compiler for a LOT of platforms http://gcc.gnu.org/
hope this helps you out a bit

Similar Messages

  • Problems uninstalling Forte for java 4 community edition

    I just installed Forte for java 4 community edition at work, and when i tried to uninstalled it with add/remove programs from control panel. And the uninstall wizard start but then a Sun window apper and it is written, uninstalling and the uninstall program seems to be frozen.

    i have the same problem, reading the documentation it seems you got to run the installer again and you ll get prompted with the "file deletion confirmation"
    too bad i have a self-installing package and i don't get the prompt...
    guesses anyone?

  • Java sun one commmunity edition

    Hi-
    I am looking for a cheap windows IDE that has GUI and
    database capability. Sun one seems to contain these things as I read
    through the features. One IDE I played with a little (years ago) was
    Delphi. Does sun one community edition come with a toolbar for
    draging and dropping pre-built items like a database grid, check boxes,
    radio buttons, combo boxes, push buttons etc.?? Does it come with
    predefined events like form open & close or for database before post, on delete,
    after post etc. I know that is lots to ask for something that is free which
    brings me to a final question. If I use this tool and profit from using it am
    I violating a license agreement? I have 2 semesters C++ programming at
    college and cant find a cheap tool in C++ for windows (widely used).
    Borland and Microsoft are both expensive for C++ GUI.
    thanks for your help
    jim

    sorry... in the wrong forum.
    I will move to new to java.
    later
    jim

  • S1 Community Edition - Where did it go?

    Hi I've just formated my hard drive in preparation of school starting again (you know get rid of nasty things like games that suck my attention). In the process of putting everything back together, I've been hunting for the Sun One, Community Edition. It was a great IDE for working on my assignments and projects.
    I've looked through the downloads to no avail, checked the forums and news sections for mention of it and didnt find anything. Does Sun not offer this product anymore?
    As the 'starving student' i cant really afford the $600 bucks for the Standard Edtition.
    I'm kind of hesistated to download Eclipse, it works fine for my purposes, but the S1 was 1000x better!
    Any info would be appreciated, thx.

    At this point, Sun recommends that you buy Sun ONE Studio 5, or you use NetBeans 3.5 in lieu of Sun ONE Studio 4.
    Michael Bishop

  • Problem installing Sun ONE Studio 4 update 1, Community Edition

    I recently downloaded the Sun ONE Studio 4 update 1, Community Edition and tried to install it. At one point it searches for a valid JAVA 2 SDK. This seems to go on forever. I quit after 5 hours of waiting. I already have Java 2 standard edition v1.4.1 installed. Can someone please help?

    Well thanks Chuck!
    With a bit of messing around and a LOT of patience I finally installed Sun ONE Studio update 1 on my laptop pc, running Windows ME.
    The trick was (I think) to apply both of the above fixes, but also a couple of things that was not quite as evident.
    1 - Do NOT install the SDK in "C:\Program Files\" or any directory path that contains spaces in the name! Apparently that causes problems, and is noted in one of the Knowledge Base articles.
    2- When making the file noted in the Knowledge Base:
    ( http://forte.sun.com/cgi-bin/WebX?[email protected]@.ee815f4 )
    - It says: Contents of this new file should be:.
    jh=<jdk Home Path> (for example, jh=c:\j2sdk1.4.0_01)
    Well it does NOT mention that there should be 2 lines in that file!
    Make sure you include a carriage return and a second "blank" line!
    OK, that's it. GO ahead & loose yourself in the IDE.
    I hope this does not cause undue traffic in the forums but what the heck...
    -- HSC --

  • VS2013 Community Edition : How to add multiple projects in one solution?

    I am an experienced .Net developer. I am using Visual Studio since 2005.
    Yesterday, I just installed “Visual Studio 2013 Community Edition”. Suddenly I came to know that I can’t add multiple projects to a solution. Even a project does not have
    solution !!
    I had also tried to create a blank Visual Studio solution and then tried to add projects to that solution. But after creation of project, it will not be added to that solution.
    Infact it even doesn’t have solution !!
    How can I add multiple projects to a solution in VS2013 Community Edition?

    Glad to see the problem was resolved. Thank you for sharing the solution here.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problems on sending mail on Websphere Application Server Community Edition

    Hi, i am using the following class for sending mail:-
    /**This class encapsulates mailing to any person. it defines method that takes parametres
    * such as mail server address,sender and recipient address, userid and password of the
    *  SMTP account
    package src;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class Mailer extends javax.mail.Authenticator{
    /** The javamail session object. */
    protected Session session;
    /** The sender's email address */
    protected String from;
    /**the Username of the account used for authentication*/
    protected String user;
    /**The password of the mail account*/
    protected String password;
    /** The subject of the message. */
    protected String subject;
    /** The recipient ("To:"), as Strings. */
    protected ArrayList toList = new ArrayList( );
    /** The CC list, as Strings. */
    protected ArrayList ccList = new ArrayList( );
    /** The BCC list, as Strings. */
    protected ArrayList bccList = new ArrayList( );
    /** The text of the message. */
    protected String body;
    /** The SMTP relay host */
    protected String mailHost;
    /** Get from */
    public String getFrom( ) {
    return from;
    /** Set from */
    public void setFrom(String fm) {
    from = fm;
    /** Get username */
    public String getUser( ) {
    return user;
    /** Set username */
    public void setUser(String us) {
    user=us;
    /** Set password*/
    public void setPassword(String password){
        this.password=password;
    /**Get Password*/
    public String getPassword(){
        return password;
    /** Get subject */
    public String getSubject( ) {
    return subject;
    /** Set subject */
    public void setSubject(String subj) {
    subject = subj;
    // SETTERS/GETTERS FOR TO: LIST
    /** Get tolist, as an array of Strings */
    public ArrayList getToList( ) {
    return toList;
    /** Set to list to an ArrayList of Strings */
    public void setToList(ArrayList to) {
    toList = to;
    public void setToList(String s) {
    toList = tokenize(s);
    /** Add one "to" recipient */
    public void addTo(String to) {
    toList.add(to);
    // SETTERS/GETTERS FOR CC: LIST
    /** Get cclist, as an array of Strings */
    public ArrayList getCcList( ) {
    return ccList;
    /** Set cc list to an ArrayList of Strings */
    public void setCcList(ArrayList cc) {
    ccList = cc;
    /** Set cc as a string like "tom, mary, robin@host". Loses any
    * previously-set values. */
    public void setCcList(String s) {
    ccList = tokenize(s);
    /** Add one "cc" recipient */
    public void addCc(String cc) {
    ccList.add(cc);
    // SETTERS/GETTERS FOR BCC: LIST
    /** Get bcclist, as an array of Strings */
    public ArrayList getBccList( ) {
    return bccList;
    /** Set bcc list to an ArrayList of Strings */
    public void setBccList(ArrayList bcc) {
    bccList = bcc;
    /** Set bcc as a string like "tom, mary, robin@host". Loses any
    * previously-set values. */
    public void setBccList(String s) {
    bccList = tokenize(s);
    /** Add one "bcc" recipient */
    public void addBcc(String bcc) {
    bccList.add(bcc);
    // SETTER/GETTER FOR MESSAGE BODY
    /** Get message */
    public String getBody( ) {
    return body;
    /** Set message */
    public void setBody(String text) {
    body = text;
    /** Check if all required fields have been set before sending.
    * Normally called e.g., by a JSP before calling doSend.
    * Is also called by doSend for verification.
    public boolean isComplete( ) {
    if (from == null || from.length( )==0) {
    System.err.println("doSend: no FROM");
    return false;
    if (subject == null || subject.length( )==0) {
    System.err.println("doSend: no SUBJECT");
    return false;
    if (toList.size( )==0) {
    System.err.println("doSend: no recipients");
    return false;
    if (body == null || body.length( )==0) {
    System.err.println("doSend: no body");
    return false;
    if (mailHost == null || mailHost.length( )==0) {
    System.err.println("doSend: no server host");
    return false;
    return true;
    public void setServer(String s) {
    mailHost = s;
    /** Send the message.
    public synchronized void doSend( ) throws MessagingException {
    if (!isComplete())
    throw new IllegalArgumentException("doSend called before message was complete");
    /** Properties object used to pass props into the MAIL API */
    Properties props = new Properties( );
    props.put("mail.smtp.host", mailHost);
    props.put("mail.smtp.user",user);
    props.put("mail.smtp.auth", "true");
    if (session == null) {
    session = Session.getDefaultInstance(props,null);
    // create a message
    final Message mesg = new MimeMessage(session);
    InternetAddress[] addresses;
    // TO Address list
    addresses = new InternetAddress[toList.size( )];
    for (int i=0; i<addresses.length; i++)
    addresses[i] = new InternetAddress((String)toList.get(i));
    mesg.setRecipients(Message.RecipientType.TO, addresses);
    // From Address
    mesg.setFrom(new InternetAddress(from));
    // CC Address list
    addresses = new InternetAddress[ccList.size( )];
    for (int i=0; i<addresses.length; i++)
    addresses[i] = new InternetAddress((String)ccList.get(i));
    mesg.setRecipients(Message.RecipientType.CC, addresses);
    // BCC Address list
    addresses = new InternetAddress[bccList.size( )];
    for (int i=0; i<addresses.length; i++)
    addresses[i] = new InternetAddress((String)bccList.get(i));
    mesg.setRecipients(Message.RecipientType.BCC, addresses);
    // The Subject
    mesg.setSubject(subject);
    // Now the message body.
    mesg.setText(body);
    // Finally, send the message!
    new Thread( ) {
    public void run( ) {
    try {
    String protocol = "smtp";
       Transport t = session.getTransport(protocol);
        try {
            t.connect(mailHost,user,password);
            t.sendMessage(mesg,mesg.getAllRecipients());
        } finally {
            t.close();
    } catch (MessagingException e) {
    throw new IllegalArgumentException(
    "Transport.send() threw: " + e.toString( ));
    }.start( );
    /** Convenience method that does it all with one call. */
    public static void send(String mailhost,String recipient, String sender,String user,String password, String subject, String message) throws MessagingException {
    Mailer m = new Mailer( );
    m.setServer(mailhost);
    m.addTo(recipient);
    m.setFrom(sender);
    m.setUser(user);
    m.setPassword(password);
    m.setSubject(subject);
    m.setBody(message);
    m.doSend( );
    /** Convert a list of addresses to an ArrayList. This will work
    * for simple names like "tom, [email protected], 123.45@c$.com"
    * but will fail on certain complex (but RFC-valid) names like
    * "(harish, munish) <[email protected]>".
    * Or even "Ian Darwin <[email protected]>".
    protected ArrayList tokenize(String s) {
    ArrayList al = new ArrayList( );
    StringTokenizer tf = new StringTokenizer(s, ",");
    // For each word found in the line
    while (tf.hasMoreTokens( )) {
    // trim blanks, and add to list.
    al.add(tf.nextToken().trim( ));
    return al;
    }Then i am using the following code snippet in a servlet to send mail by using the static send function of the above class.
    try {
                src.Mailer.send("smtp.mail.yahoo.co.in","[email protected]","[email protected]","gaurav_s_pandey","tinGSPyahootin","Subject of Servlet Mail","This is the mail sent by servlet run on geronimo");
                out.println("Request sent Successfully!!!");
            } catch (MessagingException ex) {
                out.println("Error Sending Request!!! Check Network Settings!!!");
            }My problem is that it is not working on Websphere ApplicationServer Community Edition ,but the same code and servlet is running and sending mails as desired on Apache Tomcat...
    Can some one help me plzzz as i have to make it run on WAS CE only and not tomcat....

    You didn't say anything about what exactly "not working" means.
    Some details would help debug the problem.
    My understanding is that WebSphere Community Edition is essentially just
    Apache Geronimo. I believe Geronimo has its own version of JavaMail that
    might not work as well as the Sun version that is usually included with Tomcat.
    If that's the source of the problem, you'll need to ask for help in the Geronimo
    support forum.

  • Plugin Studio 4 Community Edition

    As the upgrade feature does not show the App Server plugin,
    how is it possible to get it for those of us who use the Community Edition.
    Or is the point that you can't use the App Server unless you buy one of the other editions ?

    Hi,
    The S1AS plugin for Studio only works with the Studio EE edition and not the Community Edition.
    The community edition can still be used (without the S1AS plugin) to create and edit the java files that compose an EJB, but there is no real deployment descripors editing apart the CE xml editor. Assembly could be done using the jarpackager module and deployment could be done using the ASANT tool, but this is definitely not the preferred solution.
    The Studio EE and the S1AS plugin provide a complete set of features allowing to:
    - create/edit EJBs and Web Apps
    - Assemble War, EAR, EJB Jar and RARs with complete DD validation
    - create complex CMP applications with database mapping
    - Deploy them (local or remote)
    - execute them (possibly in debug mode) in one click
    - administer the server instances
    - and more

  • Visual Studio Community Edition - Error on creating ribbon for Excel Workbook project

    Hi. I've been struggling with this for a couple of days now so I hope someone can help me.
    I have installed Visual Studio 2013 Community Edition. On installation there was no option to include VSTO and, looking on various forums, I found it was necessary to install the VSTO - November 2014 update separately, which I have done. I'm working on a
    brand new virtual server (Windows Server 2008 R2 SP1) and no other versions of Visual Studio have been installed (although I'm surprised to see Visual Studio 2012 as an item in All Programs - but it just contains command prompts).
    I have created an Excel Workbook project. When I go to create a new item - Ribbon (Designer) - I get the error:
    Could not load file or assembly 'Microsoft.Office.Tools.Common.Implementation, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
    I've searched the Internet for anyone who might have had this same issue but have been unable to find anything to help me. I've tried uninstalling the VSTO-November Update and VS 2013 CE and reinstalling both but still the same problem.
    Any help would be much appreciated!
    David.

    Hello David,
    What Office version do you have installed on the problematic machine?
    Do you run Visual Studio as an administrator?

  • Problem with installing Solaris Express Community Edition(Virtual Machine)

    When I start my virtual machine to install Solaris Express Community Edition(X86 edition), it just displays an character interface
    grub>
    and there is no other useful information, so I don't know what to do next, does anyone can help?

    Try seting "-jdkhome xxxxxxxxxx" in the ide.cfg file in your Forte \bin\ directory. Point it to the SDK install directory - that is, make "xxxxxxxxxx" the path to the SDK install.
    You seem to be accessing a java.exe that is pointing to a location that is other than where jvm.dll is residing. This may get you to executing the correct java.exe.

  • Use of Database  Studio Community Edition with SAP applications

    I am using SAP ECC6.0 on MaxDB 7.6.04.012 running on Linux x86_64.
    For database admin, and adhoc sql queries, I am currently using Database Studio 7.7.04.26, running on Windows XP.
    I have had one or two issues with Database Studio, and I've been looking for a more recent version to Install.
    There seems to be a more recent version in the Community Editions download area, but this says:
    "This package is not for use with SAP applications. For that purpose, refer to the Download Area in the Service Marketplace"
    I have not been able to find Database Studio as a separate download in the SSM Download area.
    What is the reason for this comment about the Community Edition? Can I use this version of Database Studio? and if not, where can I get the equivalent for SAP applications?
    Thanks
    Chris

    I installed MaxDM (32bit) and MaxDB Studio which I can open. And I habe also a connection to Max DB but I can´t see any application for examle. How can I find these applications. I hope there are one!?
    Have you checked the documentation Demo Data for the SQL Tutorial ?
    There is a demo schema available for MaxDB: the HOTEL schema.
    It can be loaded to any MaxDB by running:
    load_tutorial
    in dbmcli or via the context-menu (right-mouse-button) menu in DB Studio -> "Load Tutorial..."
    After the tutorial is loaded you can logon via user "MONA" and password "RED".
    regards,
    Lars

  • IBM WebSphere Community Edition

    Hi,<BR><BR>Has anyone tried IBM WebSphere Community Edition with any Hyperion product? WebSphere CE is based on Apache's Geronimo J2EE server. Any good / bad experience?<BR><BR>Regards,<BR>Gerd

    step 1: find the manual
    step 2: read the manual
    step 3: understand the manual
    step 4: follow the instructions found in the manual
    problem solved (though with IBM manuals I will have to practice caution there, they're not always good but mostly the bad parts are the obscure ones).

  • Bad installation of Java Platform Micro Edition SDK 3.0 - Can't uninstall

    Hi,
    I tried installing the Java Platform Micro Edition SDK 3.0 tonight and it didn't work (I guess the thing doesn't like it when you're running Win7 x64 with the latest JDK for some reason...). Anyways, it installed fine but on first run it got stuck at the nag screen with IOExceptions, etc. and never finished starting. So I decided to uninstall and guess what? I can't uninstall it because it tells me it can't run the uninstaller program since it can't load a win32 dll on a 64-bit machine...
    So I resorted to deleting the folder and running a registry cleaner :/ However, so I can properly clean things up, I'd like to know where else the SDK put files or dlls and which ones.
    Thanks for your help!
    -LordPhoenix

    I'm having exact the same problem, but I'm using Vista x64.
    I tried to uninstall x64 version of the Java SE SDK and installed the x86 version instead, but it didn't help :/
    So could please anyone post a solution to this.
    EDIT: actually I at least managed to uninstall it using the SE SDK x86.
    But still, is there any way to use Java ME SDK on Vista x64?
    Edited by: sl2wm on Sep 13, 2009 5:18 PM

  • Unable to install Java 2 Standard Edition (J2SE) 5.0 Release 4

    After Downloading Java 2 Standard Edition (J2SE) 5.0 Release 4
    my desktop computer won't recognize the .dmg formatt and this is the messege i get: The following image/disk failed to mount j2Se50Relese4.dmg i have MAC OSX 10.4.6 on a Dual 2 Ghz PowerPC G5. I also have StuffIT expander and it won't recognize it either.

    Actually. No, all the problems i've been having has happened with any java downloads with the .dmg formatt all other applications where succefully unstuff.
    Your answer is unclear. Can you mount other disk images by double-clicking on their .dmg files? Have you repaired permissions with Disk Utility?
    I wonder if it has something to be with the versions of the upgrade. do i need to download them in an expecific order or something?
    It depends. Some updates won't be applicable until you install a previous one. For example, some Security Updates won't work unless you an OS update in place.
    i currently have install java 1.3.1 plug in and 1.4.2 plug in. i've never open the application thought.
    If you mean the Java Plugin Settings.apps for those versions, then that's normal. I have those in addition to the Java Preferences.app from J2SE 5, which I believe is the new name for the settings.app.

  • Cannot start Visual Studio 2013 Community edition

    Windows 7 on a 64-bit PC...
    Downloaded the installer vs_community.exe for Visual Studio 2013 with Update4 yesterday and ran it.
    It took about 1 hour and 20 minutes. At the end the installer reported the web deployment function
    could not be found/installed and that I could locate and install it myself later. It then told me to
    restart the PC, which I did, but the Community edition had not been added to the start menu.
    There are other Visual Studio versions on this PC:
    Visual C# 2010 Express, Visual Express 2012, Visual Express 2013 and Visual Studio 2013 Ultimate
    trial version. They can all be started from the menu and do not interfere with each other and they
    installed without problems. There are 4 weeks evaluation time left for VS 2013 Ultimate and I want to
    make use of that. VS Express can be shown the door if any of these might be blocking the
    Community version.
    I am puzzled by one more VS directory named Microsoft Visual Studio 2012 in Program Files(x86). This
    contains many items added yesterday by the Community install including a directory named Community
    with with two files licencse.htm and ThirdPartyNotices.txt. It also contains files and directories
    added in November last year (ImportProjects, Preemptive Solutions...(don't remember what or if I was installing)) and some added in February this year when I installed VS Ultimate 2013 trial. So the VS 2012 directory contains a mix of items placed there by
    VS 2013 installers.
    Questions:
    1. Could this mixed use be the cause of the Community version not being on the Start menu?
    2. what can I do to fix this without losing the VS Ultimate trial?
    3. Can Community version coexist with other VS versions?
     

    I was installing by running vs_community.exe.
    When I let the mouse hover over this file name information about the file pops up:
    File Description: Microsoft Visual Studio 2013 Community with Update4
    File version: 12.0.31101.0
    Size: 1.18MB
    I don't know, but I would guess this file installs the Community version.
    I did not notice that the Community version will not run on the same computer as other VS 2013 versions. Is this in the documentation? And will the Community version be blocked by VS Express
    versions too?
    Now, as far as I understand to make the Community version work I will need to uninstall the VS Ultimate 2013 trial first. Will that remove the Ultimate files in the MS VS12.0 directory in Program Files (X86)? and will uninstalling Community remove its contribution?
    I mentioned there are other files too in MS VS12.0, like SDK, Silverlight, WDExpress and Web. I don't remember installing any other program that might have put them there. Do I have to empty or remove MS VS12.0 before installing the community version? Then,
    if there are some left-overs can I just delete MS VS12.0 manually?

Maybe you are looking for