Slashdot Mirror


EIOffice 2004 vs. MS Office 2003

ryen writes "Designed to compete against MS Office, EIOffice 2004 is coded in Java therefore able to run on both Windows and Linux. EIOffice 2004 offers features which should get a few users' attention, but does it have enough to have people switching from MS Office? Flexbeta has the review." That's Evermore Integrated Office, if you're wondering.

50 of 478 comments (clear)

  1. Slashdotted by Anonymous Coward · · Score: 5, Funny

    That's Evermore Integrated Office, if you're wondering.

    Heh. Not anymore.

    Ack, even I'm getting tired of the "we slashdotted your site" jokes.

    1. Re:Slashdotted by NoData · · Score: 5, Funny

      There was a server on a farm...

      E-I E-I EIOffice.

      And that server got slashdotted.

      E-I E-I EIOffice.

      With a packet dropped here...and a packet dropped there...

      (why? why hurt?)

    2. Re:Slashdotted by stealthyburrito · · Score: 5, Funny

      At first I thought it was a Spanish version of Office:

      El Office Grando.

  2. Both Platforms? WOW! by the+MaD+HuNGaRIaN · · Score: 5, Interesting

    "Written in Java so it can run on both Windows and Linux"

    hehe, what about all the other platforms there's a JVM for? Like, uh, OS X? Solaris?

    How myopic.

    1. Re:Both Platforms? WOW! by Kenja · · Score: 5, Funny
      "hehe, what about all the other platforms there's a JVM for? Like, uh, OS X? Solaris?"

      You're forgeting the Java moto. "Write once, run once, mabey twice, three times if your lucky".

      --

      "Have you ever thought about just turning off the TV, sitting down with your kids, and hitting them?"
    2. Re:Both Platforms? WOW! by daeley · · Score: 4, Funny

      "Written in Java so it can run on both Windows and Linux"

      Reminds me of Blues Brothers:

      "What kind of music do you usually have here?"

      "Oh, we got both kinds. We got Country *and* Western!"

      --
      I watched C-beams glitter in the dark near the Tannhauser gate.
    3. Re:Both Platforms? WOW! by Wavicle · · Score: 5, Informative

      I know I shouldn't feed the trolls, but...

      well, you see, Java really isn't that portable.

      I have worked since 1998 on Java software with a focus on UI and portability. Although OS X has never been on my radar, I have worked extensively on other people's code when it was "working fine in windows" but partially or completely broken in Solaris (later Linux as servers migrating over).

      All the compatibility problems broke down to one of three problems:

      1) Solaris patching. I don't know if Sun has fixed this, but patching of Solaris and patching of Java to work on Solaris was a true nightmare. The Solaris JVM was awful (was, I haven't touched it since 1.3 so I like to think it is all better now).

      2) Hardcoding of directory separator characters instead of using File.separatorChar

      3) Fonts. The UI issues on the Unix variants for early Java were huge. Swing didn't hardly fix anything because the underlying problem was truly hideous fonts. To the best of my knowledge, 1.4 has completely fixed this problem.

      To the best of my knowledge #1 and #3 are fixed now. #2 is something you usually only see from recent grads or people new to Java programming.

      I can't remember the last time anything I wrote in Java and packaged as a jar had trouble working in Windows or Linux. Certainly has not happened since 1.4 came out.

      I've worked recently with C/C++ code and experienced C/C++ portability fun between platforms. The code was used for reading a writing DNA chromatogram format files. Worked perfectly in Solaris. Wrote out 4 gigabyte blank files in Linux in the odd circumstance when it would actually run at all. The problem turned out to be endian handling. This problem doesn't occur in Java, however in C/C++ when you simply tell the machine to write out blocks of memory (that happen to be data structures) the resulting byte order is whatever the machine natively uses. The IO routines don't know if one piece is a double, another a long and yet another a short.

      Java is really portable. It's also quite fast. Nearly all complaints about Java's speed these days come from Swing, which is really caused by an overdesign of Swing (from a design stand point, Swing is very, very nice. Unfortunately what makes it nice also makes it quite slow)

      --
      Education is a better safeguard of liberty than a standing army.
      Edward Everett (1794 - 1865)
    4. Re:Both Platforms? WOW! by mrtrumbe · · Score: 5, Interesting
      I respect your opinion, but wholeheartedly disagree.

      So long as you stay away from any native calls, Java code is VERY portable across JVMs (including across systems). GUIs do tend to have some problems, but I tend to avoid pure Java GUIs anyway, due to latency issues (which tend to rear their ugly heads more often in live trading scenarios). If I plan sufficiently, keeping my core infrastructure/business logic in pure Java, using JNI sparingly, and write all of my GUIs in QT/GTK, I have no problems with porting.

      So why bother with Java at all? (I can picture you asking the question, so I may as well answer it.) Simple: I find it soooooo much easier to write good code in Java than C/C++. While I've heard some denounce Java's framework classes as a messy C++ superset, I disagree. It's easy to use, well documented (java.sun.com/j2se/1.4.2/docs/api/ may be all you ever need) and easy to refactor. Combine that with a kick-ass tool like IDEA (www.intellij.com) and you have my personal dream environment for development.

      From my POV, so long as you keep GUI issues out of the equation, Java is as close to the perfect development environment I'm likely to get. I work in a setting where I can keep my business logic and infrastructure pretty well removed from the GUI level. This makes things easy for me. YMMV.

      Taft

    5. Re:Both Platforms? WOW! by dasmegabyte · · Score: 5, Insightful

      WTF are you talking about?

      The sufficiently complex applications *I* have written in Java -- including a mass mail server and a database migration utility -- have worked just FINE on every arbitrary Java installation I've seen. I wrote them on a PC, moved them to a Sun server , and still run them on my Mac. The trick is to write them in pure Java...no native libraries, and when you need a file separator, get it from Preferences...don't assume / (or \, or : for that matter)!

      Now, the difference between Java and GLIB/GDK/GTK is that you only need ONE binary. That's one less thing to worry about supporting...one less thing to have to TEST everywhere. Furthermore, I've rarely seen a Java UI crash unexpectedly. GTK crashes all the time on "beta" systems...like Windows.

      --
      Hey freaks: now you're ju
    6. Re:Both Platforms? WOW! by JUSTONEMORELATTE · · Score: 5, Funny
      "hehe, what about all the other platforms there's a JVM for? Like, uh, OS X? Solaris?"

      You're forgeting the Java moto. "Write once, run once, mabey twice, three times if your lucky".
      Back in 99, Symantec (of Visual Cafe fame) sent me a flyer for a new Java Debugger. They were trying to play off of Java's motto, but "Write once, Debug everywhere" made me laugh really hard.

      --
    7. Re:Both Platforms? WOW! by Wavicle · · Score: 3, Informative

      Experienced programmers used to working with C or C++ know about this and write code where this isn't a problem.

      I'd like to believe that was true, but my experience has been that even experienced programmers tend to do something like:

      * write code to load in hunk of data from file
      * write more code assuming data has been loaded correctly.
      * test to make sure data and code using it is functioning according to requirements
      * move on to next problem

      Unless "works on big, little and mixed endian" is in the requirements (and it usually isn't) the naive approach is usually taken, even by programmers with 15 years of experience. Making sure the code is endian neutral often means replacing 1 line with 10-50.

      Someone mentioned on Slashdot that the Windows API can accept either a forward or back slash, but I don't personally know.

      I'm not sure that's correct. I just tried opening a file from notepad and a command prompt and mixing slash directions. I'm sure there are some windows api functions that are okay we whichever slash you use, but I would expect widgets that use that underlying API to mirror that insensitivity.

      Writing portable code in C, C++, or Java requires that the programmer know how to do it.

      "know how to do it" in Java boils down to maybe 1 or 2 rules of thumb. In C and C++, the issues from Java exist (e.g. path separator), but so do others (e.g. endianness). It is easier to write cross platform code in Java.

      --
      Education is a better safeguard of liberty than a standing army.
      Edward Everett (1794 - 1865)
  3. It's about Standards by superpulpsicle · · Score: 5, Insightful

    While I can try out a million different versions of office, and get equal satisfaction. Everything really comes down to standards.

    Until there is something 10x more superior than .doc .xls .ppt standards. M$ is still winning the same game, just different players.

    1. Re:It's about Standards by DaHat · · Score: 5, Insightful

      Regardless of how superior a new format may be, the fact that many use MS software means that many will stick with MS formats because they are nearly ubiquitous.

      I know I'm going to get flamed for this, however...

      Ex: Many claim Ogg is a superior format to AAC, MP3, WMA and others, however the fact that it is not supported by as many pieces of software and hardware limit its use. The reason that MP3, a format which many claim is inferior to nearly everything continues to thrive is because an MP3 works nearly everywhere, just as a .doc.

    2. Re:It's about Standards by ThisIsFred · · Score: 3, Insightful

      Exactly! It's about network effects. Microsoft can deliver MSO through OEMs if they wish, or even through WU if they had to. It doesn't matter if Office is huge, slow, a virus vector, and has a file format which is basically a memory dump of OLE streams (which get corrupted quite often).

      If Microsoft gives away 10 million copies of Office 2005 XPNTME, they will still break even, because another 10 million will need to be able to read and revise the data.

      --
      Fred

      "A fool and his freedom are soon parted"
      -RMS
  4. Summary of Slashdot comments by MosesJones · · Score: 5, Insightful


    1) Great another competitor, we should support it

    2) Its in Java it will suck

    3) Java sucks

    4) It should be in Perl

    5) It should be in C

    6) I use vi and troff.

    --
    An Eye for an Eye will make the whole world blind - Gandhi
    1. Re:Summary of Slashdot comments by DrEldarion · · Score: 4, Funny

      7) SLASHDOTTED ALREADY?! We need some sort of automatic mirror set up!

      8) Goatse.

    2. Re:Summary of Slashdot comments by happyfrogcow · · Score: 3, Funny

      9) All your base ...

      10) vi? Sorry, I think you mean Emacs.

    3. Re:Summary of Slashdot comments by edalytical · · Score: 3, Insightful

      Yeah, like .rtf, that would be cool if the all used that.

      --
      Win a signed Stephen Carpenter ESP Guitar from the Deftones: http://def-tag.com/?r=0008781
  5. It looks interesting by Anonymous Coward · · Score: 5, Interesting

    But the web site doesn't have any trial versions.

    Its hard to put down $150 without seeing if it will actually open up my spreadsheet and documents.

    The review had an eval copy, but no such animal on the web site. Too bad; Do you have to wait for a warez copy to figure out if its worth buying? Makes me think they have something to hide.

    Believe it or not, I think real Excel compatibility is the hardest to achieve because there are so many different macros (VB Script), charting features, and other goodies in Excel that its easy to get "locked in".

    1. Re:It looks interesting by cyfer2000 · · Score: 5, Informative
      download

      A chinese page, click the links in the table.

      you won't believe it is a Java software.

      --
      There is a spark in every single flame bait point.
    2. Re:It looks interesting by cyfer2000 · · Score: 3, Informative

      Sorry for a little confusing information, i think these direct links may work better for non-Chinese dudes.

      linux:

      http://soft.66169.com/dl.php?id=1032591&cknum=74 81 &svr=1
      http://www.evermoresw.com/download/eioffic e2003_fo r_linux.tar.gz

      windows:
      http://hlbr.onlinedown.net/down/EIO200 3_for_Win.ex e
      http://crc.onlinedown.net/down/EIO2003_for_Win. exe

      And for other platform, I heard some people simply unpack the tar ball and run the jar files, i had never tried personally, so I don't warrantee it works.

      --
      There is a spark in every single flame bait point.
  6. The real question is... by Entropius · · Score: 3, Insightful

    ... does it have enough features to get people to switch from OpenOffice?

    1. Re:The real question is... by goldspider · · Score: 4, Insightful

      I'd venture a guess that an overabundance of features in MS Office is what probably brought users to OO.o in the first place.

      --
      "Ask not what your country can do for you." --John F. Kennedy
    2. Re:The real question is... by lack+8-P · · Score: 3, Interesting

      Aye, it looks like a lot of the "useful new" features offered by EIO are already available in OpenOffice, such as suggest-as-you-type.

      I think the big clincher for me would be how it interprets MS-Word shapes and drawings, as that's the only problem I've ever had with OpenOffice.

      --
      Me fail English? That's unpossible!
  7. EIOffice? by DrCode · · Score: 3, Funny

    Was this done by Old MacDonald?

  8. Better than OLE? by Beatbyte · · Score: 4, Insightful

    "EIOffice 2004 puts a word processor, presentation package and spreadsheet into a single application, not a collection of programs. The integration is smooth and deep, and there's a natural feel to the way it all works together."

    Is it good enough to never need OLE?

    And yet it still has the fatal flaw of no database program.

    Build an office suite with a file based database with a GUI and then you can start to attack the MS Access component of MS Office. Until then, you're replicating Star-Office and OpenOffice for some reason (and then trying to sell it for $149 USD on top of that).

  9. get this out of the way by Tsiangkun · · Score: 5, Funny

    This is great ! I have been waiting for the helpfulness of clippy combined with the performance of java.

  10. Sticking with OO.o by goldspider · · Score: 4, Interesting
    I'm more inclined to trust a program built/optimized speficically for different platforms than one that claims to be compatible with all of them.

    I'm sticking with OpenOffice.org for now. Just MHO.

    --
    "Ask not what your country can do for you." --John F. Kennedy
  11. Bad Name by greyhoundofdeath · · Score: 5, Funny

    In Canada EI stands for Employment Insurance, something you collect when you lost your job, affectionately known as "The Pogy." So looking at EIOffice, does it mean that your employment in an office is ensured, or is it the Pogy Office where you pick up your cheque?

  12. Re:Java? by rleibman · · Score: 4, Interesting

    Re: Java GUIs being slow
    They can actually be quite fast and responsive, if written correctly. I run eclipse on my PIII500Mhz on Fedora Core 1 and it runs very nicely. Some changes coming down the line in Java 1.5 might actually make it even more responsive, for some things even faster than typical C++ applications (the run-time optimizer cannot easily be duplicated in statically compiled languages.)

  13. Runs in Java on Windows by freeze128 · · Score: 3, Funny

    I have NEVER seen a Java application RUN on Windows. Instead, they just seem to execute slowly...

  14. It's becoming a cliche, but ... by Daniel+Dvorkin · · Score: 5, Insightful

    Please, to all non-MS developers out there: stop chasing Microsoft!

    I understand the motivation behind designing office suites to look like Office clones, window managers to look like Windows clones, etc.: the idea is that people switching from MS products will find it easier to get used to the new software if it looks like what they're used to. But I really think this is a fundamentally flawed line of reasoning, for two reasons.

    1. No one will ever be as good at being Microsoft as Microsoft is. You may expend endless blood, toil, tears, and sweat trying to clone $MS_PRODUCT down to the last widget, but you'll never get it exactly right. And if you try to lull users into feeling like they're using $MS_PRODUCT ... well, the instant something doesn't work, or just doesn't work exactly the way they're expecting, they'll dismiss your product as a cheap knockoff.

    2. Microsoft interfaces may be the "standard," but they're not the best. In almost every market niche I can think of, there's some product that's faster, more powerful, and/or easier to use than whatever Microsoft is pushing. If you're going to copy something, copy something better than Windows, Office, IE, ad nauseam -- or better yet, start with the best as a baseline and innovate from there.

    --
    The correlation between ignorance of statistics and using "correlation is not causation" as an argument is close to 1.
    1. Re:It's becoming a cliche, but ... by js3 · · Score: 5, Interesting

      I disagree. To effectively overtake a product with a commanding lead in the market you practically have to make a clone of it and sell it cheaper. Anything different is too different for many people and they won't switch.

      Many times people just want something better not different. I want a better government not a different one and so on and so forth.

      --
      did you forget to take your meds?
    2. Re:It's becoming a cliche, but ... by DukeyToo · · Score: 4, Interesting
      Actually, it looks like they have innovated in their own way. They have a common file format for all of their office apps, and they have focused on building it from the ground up to support robust linking of data between documents. Their focus is on integration, because that is the weakness of their competitors. It seems to me that they have looked at what MS did, and taken the good stuff and left out the bad. Can you say "embrace and extend"?

      From their whitepaper...

      None of the Office suites currently sold today constitutes a REAL Office. Instead, they are separate components packaged together for marketing purposes.
      Microsoft adopted this approach, in part to gain an advantage over software publishers that did not have a complete line of products. Unfortunately, the result is based on domination rather than innovation - an environment that touts minor enhancements yet gives many users no economic reason to incur the cost of an upgrade.
      Evermore Software believes software users deserve a better solution than a system that requires the launching of four or five separate applications just to complete one task. This premise guided our development of Evermore Integrated Office - the only REAL Office - the first coherently-designed, well-conceived Office suite. It is one integrated program, not many disjointed applications, and delivers one standard user interface in screen layout, display screen style, keystroke usage, dialog boxes, menus and submenus, icon sets, function key usage, help system and file format. It stores all data in one file format - not the several file formats used by others. It saves all data related to any one project in one file or a binder. And, when the user changes the source data of linked data, EIO applies that change automatically, immediately, correctly, to all other uses of that same source data to assure data synchronization.
      Evermore Software believes that true integration distinguishes the Office
      --
      Most writers regard truth as their most valuable possession, and therefore are most economical in its use - Mark Twain
    3. Re:It's becoming a cliche, but ... by Jason+Earl · · Score: 3, Interesting

      The good news is that the "winner" in the computer world is hardly ever the guy with the best product. Instead the folks that win generally end up being the folks with the cheapest product that is "good enough." If usability or innovation mattered then the early Macintoshes would have destroyed their DOS based PC competitors. The problem is that most people aren't really willing to pay extra for innovation or usability. They simply want something that will get the job done at the lowest price.

      Don't get me wrong. I am not saying that Free Software doesn't innovate or anything like that. In the long run the ability to take existing software and innovate on top of it (instead of starting from scratch) is going to be a huge win for hackers everywhere. Once OpenOffice.org (or whatever) becomes wide spread then all sorts of cool things are going to be possible just because anyone with a crazy idea as to how office suites should work will actually be able to try those ideas out. Most of these ideas will be crap, but the wider range of ideas will still almost certainly be a net win. The fact of the matter is that Microsoft has been lifting ideas from other software developers and implementing then in Windows and Office for years. You would be hard pressed to point to a single major feature that Microsoft actually pioneered.

      Microsoft has made a living by being "good enough" and less expensive, and for years the dominated the desktop despite the fact that Windows (and DOS before that) were pathetic knockoffs of other people's innovation. Now Windows is finally getting to be pretty good, but Linux is cheaper, and for an increasingly large group of people it is becoming "good enough."

  15. Text Mirror by lafiel · · Score: 3, Informative

    Five pages compressed into 1 post, lots of pics that I never saw so I think the italics stand for captions.

    EIOffice 2004 Vs MS Office 2003 - Page 1
    Posted by Team Flexbeta on 26 May 2004 (28566 views) Rating: 4.94 EIOffice 2004 looks so much like MS Office 2003 that you wouldn't have a hard time getting used to the graphic interface once you get started with it. Coded in Java, EIOffice features a word processor, a spreadsheet application and a presentation graphics application. All three applications look and behave similar to MS Office's applications; Word, Excel and PowerPoint. EIOffice is able to edit and save MS Office file formats as well as a few other formats we will discover soon.

    Word Processor

    From the screenshot it is clear how EIOffice's word processing suit looks extremely similar to MS Word. The order and shape of the icons are not the only similarities, so is the labeling. For example, the tabs, File, Edit, View, Insert, and Format are all labeled just like in MS Word and in the same exact order. The word processor offers many features such as spell checking, password protecting document, tracking changes and a thesaurus. There is a nice feature which lets you transform the document you are currently working on into a presentation. Though the transformation isn't 100% the way I wanted it to be, a few editing here and there molded the document into a nifty presentation.

    EIOffice 2004 Word Processor and MS Word

    Another feature which EIOffice 2004 carries is its ability to suggest the entire word you are typing before you finish typing it. For example, when typing the word "feature", by the time the letters "fea" are typed, EIOffice suggest that the word you are trying to type is indeed "feature" and highlights the word for you. A simple enter on the keyboard accepts the word.

    The spell checker in EIOffice 2004 works very well though the suggestions are not as relevant as that of MS Office 2003. Using the misspelled word - woship, EIOffice 2004's suggestions were Yoshi, wish, wash, midship and welsh. The same misspelled word in MS Word brought up the correct suggestion: worship or worships. I don't have any idea why EIOffice 2004 suggested Yoshi as a possible correction to the misspelled word. Unfortunately, EIOffice does not offer grammar checking like MS Office does.


    Mispelled word in EIOffice 2004

    There is a nice application bar floating on the upper part of the current document which enables fast switching from one office application to another. With a simple click of the mouse I was able to toggle between the word processor, the spreadsheet application, and the presentation graphics creator. This is made possible because EIOffice is one application which bundles the three previously mentioned applications.


    Switching Application Bar

    EIOffice 2004 is able to open and save MS Word file format, .doc. This and the fact that EIOffice looks extremely similar to MS Office shows that huge efforts were placed to attract MS Office users into switching. Other file formats that EIOffice can save and open are PDF, PowerPoint, and Excel, rich text format, html and txt format.

    EIOffice also features a nice scientific editor which includes many scientific figures, shapes and symbols. The figures include diodes, transistors, and capacitors. There are also chemistry symbols such as chemical reaction formulas and atomic structures. Apart from the typical math functions and figures, EIOffice also includes curve functions such as the exponent function and the sinusoid curve.

    Science Editor in EIOffice 2004

    Presentation Graphics

  16. My one wish for them: file formats by Anonymous Coward · · Score: 4, Insightful
    I think having an office suite written in Java is a fantastic idea. It means that we can have the same software running on MS Windows, Linux, OSX, and others. Hopefully Kaffe will soon be at a point where it can run stuff like this, which will means the *BSDs, AmigaOS and whatever else runs GCC will be able to run Java.

    My one complaint about EIoffice is the file formats. The last thing we need is yet another file format. OpenOffice/StarOffice, KOffice*, TextMaker*, and Abiword can all save documents in StarOffice format (* these two will have that feature in their next release). We have a rule here at SteamyMobile that you can use whatever office suite you want, so long as it uses the StarOffice format, meaning that in the future, when document search and indexing programs are released, they will all be able to use the same format. If EIOffice could that, we would use it too.

    -----------
    mobile porn

  17. El Office by CitznFish · · Score: 5, Funny

    El Office - A product of Mexico

    --
    'mmmmmmmmm.... forbidden donut'
  18. Interface is copyrightable? by at2000 · · Score: 5, Interesting

    IIRC, Lotus Development Corp v Paperback Software Intl demonstrated us in 1990 that copying the look and feel in exact form is copyright infringement.

  19. Easy to make C/C++ application fast? WOW! by expro · · Score: 5, Insightful

    And if you use C/C++ your application will be easy to make fast, no matter what you're doing.

    This is a very silly claim, at least as bad as the one you were responding to, that if an application is written in C/C++ it will be easy to make fast.

    Then why do we have so many very-poorly-performing native applications out there.

    I have seen enough cases where a well-designed Java app outperforms by an order of magnitude a poorly-designed C++ app.

    I am all for using C/C++ where it is appropriate, but C/C++ is no magic silver bullet when it comes to performance any more than Java is. In either language, if you have carefully-constructed libraries, porting can be quite straitforward and if you have a design that plays to the strengths of the platform, performance can be reasonable. Performance and portability are always a matter of design. It does not just happen as a result of choice of platform.

  20. Language Indifference by MidKnight · · Score: 5, Interesting
    Designed to compete against MS Office, EIOffice 2004 is coded in Java...

    When are people going to learn that consumers don't care what language a program is written in? For some reason, the Evermore Software folks are attempting to use this as a marketing bullet point (it's the first point on their web page, even), when Joe User really just wants to know why it's better than MS Office.

    I write Java to pay the bills, and as such I'm a big supporter of the platform. But users just don't care. In fact because of the Microsoft FUD machine, saying it's Java might even be a turn-off to quasi-technical people. I once had a government purchasing manager say "Java? We're moving away from that because Microsoft no longer supports it." Idiotic yes, but to paraphrase Forrest Gump: Customer is as Customer does.

    Writing Java apps is key for the software developer, because your market suddenly is no longer linked to the hardware platform your customers have. You can sell it to anybody. But from the customer standpoint it simply doesn't matter.

  21. Re:Corel? by expro · · Score: 3, Informative

    They were having to create the UI from scratch, and there were some very basic things not portable i.e. font sizes in AWT (given in pixels on PC and in points in Mac).

    But by far the worst performance problem reported by a majority of people testing it was that people were demoing it as a browser applet and thought the download time (mostly over modems at the time) was part of the startup time of the program.

    The Java word processing engine was much faster and more reliable (due to redesign) than the C/C++ version of WordPerfect at the time on the same machine.

    I suspect it was also suffering from poor garbage collection and other JVM problems.

    And no one understood the great modularity and pluggability that had been designed into it, due to political problems at Corel, who could never figure out a business model for it.

  22. Re:Do Java Apps still feel "creepy" and slow. by Anonymous Coward · · Score: 4, Funny

    Do you mean "creepy" like in the middle aged guy who hangs out near high school and oogles 15 year old girls while wearing a trenchcoat?

    Yes.

  23. No real place for this by devilsadvoc8 · · Score: 4, Interesting

    What is the market for this thing? Its not going to compete against MS Office- no db just to start- and it can't compete with OpenOffice - price alone- so who's going to use it?

    While I am not the biggest fan of OpenOffice (disclaimer I have tried OO and deinstalled it in favor of MS Office- flame away)I would use it in a second over this thing because OO is free and OO really does have some nice features.

    --
    B O R I N G
  24. Re:Swing? SWT? by memmel2 · · Score: 4, Informative

    Swing

  25. Like Poe's "The Raven" by breon.halling · · Score: 3, Funny

    Quoth the server, "Nevermore." =)

    --
    "Yeah, well, Dracula called and he's coming over tonight for you and I said okay."
  26. When will office-clones makers learn! by Vengie · · Score: 3, Insightful

    *WORD* is the easy part.

    Even powerpoint is almost a non-issue

    How about Access/Excel...

    So for any clone, ask these questions

    Yes, but does it run crystal reports?

    Yes, but does it run access (.db7) and have access-like switchboards off of which MANY soho businesses live? [Dentists, doctors, small mom & pops..] The JET engine may suck, but its the de-facto standard for mom and pops.

    Yes, but do the macros they use at every major investment bank and packages like XLMiner work?

    When there is a suitable ACCESS replacement for small business and something that runs crystal reports and data mining packages like XLMiner run, Microsoft is in trouble.

    That last 10% of features will keep many major institutions around until near the bitter end.

    --
    When in doubt, parenthesize. At the very least it will let some poor schmuck bounce on the % key in vi. (Larry Wall)
  27. Re:It's about Standards PERCEPTION by DonGar · · Score: 3, Insightful

    I'll go a step further. .doc often breaks when you move it around, but it doesn't matter because everyone BELIEVES that it'll work anywhere. The reality doesn't matter much (in this case) only the perception of it.

    --
    plus-good, double-plus-good
  28. Re:Java? by phatsharpie · · Score: 3, Informative

    They can actually be quite fast and responsive, if written correctly. I run eclipse...

    Actually, Eclipse doesn't use the standard Java GUI library (Swing), and uses the IBM developed SWT, so it takes more than just coding the app "correctly".

    The standard Java GUI can be written to be fast and responsive without using SWT however. Just check out the IntelliJ IDE.

    http://www.intellij.com

    I used it exclusively for my Java development, until I switched to Eclipse because of cost. Swing development can be tricky and responsive apps become harder to develop with it. Good thing thread programming is so easy with Java, because with Swing, you'll need to use it plenty.

    -B

  29. competes with? by cascadingstylesheet · · Score: 4, Insightful

    The advantages of MS Office are:

    • It's what so many other have - so file format compatability, macros and add on product compatability, share workarounds and techniques, etc.
    • Feature set.

    The advantages of OpenOffice are:

    • Free.
    • Open source.
    • Accessible file format (compressed XML, but ultimately, TEXT).
    • Ever-improving feature set.

    What the heck are the advantages of EIOffice?

    • Free/cheap? No.
    • Open source? No.
    • Everybody else uses it? No.

    So, WTF?