business online app/business graphic app

Reply

Join Date: Oct 2005
Posts: 17
Reputation: eliauction is an unknown quantity at this point 
Solved Threads: 0
eliauction eliauction is offline Offline
Newbie Poster

business online app/business graphic app

 
0
  #1
Oct 26th, 2005
Ok...how bout in java
Hi evry1,
i need opinion here...im thinking of developing app whether online or for desktop...something like the following
1) http://www.netsuite.com/portal/products/main.shtml
2) http://www.smartdraw.com/exp/flo/home/

For 2), can you pin-point what should i use to create flow-chart, the nice-looking gui, graphic, drag n drop func(desktop app)...what bout for online app???


For 1) ...where do I start to achieve these:
**http://www.netsuite.com/portal/produ...i_meters.shtml
**


Ok...thanks in advance for ur reply
Reply With Quote Quick reply to this message  
Join Date: Nov 2004
Posts: 6,143
Reputation: jwenting is just really nice jwenting is just really nice jwenting is just really nice jwenting is just really nice 
Solved Threads: 213
Team Colleague
jwenting's Avatar
jwenting jwenting is offline Offline
duckman

Re: business online app/business graphic app

 
0
  #2
Oct 26th, 2005
I don't think office type applications (wordprocessors, spreadsheets) work well in a browser environment.
The client is too restrictive.

For your other question: D&D is built in these days, just read some books on Swing.
Charting components are to be found all over the web, search engines are your friend.
As people are clearly allowed to attack me but I'm not allowed to defend myself, I no longer post to this site.
Reply With Quote Quick reply to this message  
Join Date: Oct 2005
Posts: 17
Reputation: eliauction is an unknown quantity at this point 
Solved Threads: 0
eliauction eliauction is offline Offline
Newbie Poster

Re: business online app/business graphic app

 
0
  #3
Oct 26th, 2005
the business graphic software for desktop app...example like the image shown
http://www.smartdraw.com/product/flo/index.htm
so is it a wise idea to do it in java...with gr8 interface


thanks in advance
Reply With Quote Quick reply to this message  
Join Date: Oct 2005
Posts: 17
Reputation: eliauction is an unknown quantity at this point 
Solved Threads: 0
eliauction eliauction is offline Offline
Newbie Poster

Re: business online app/business graphic app

 
0
  #4
Oct 26th, 2005
Originally Posted by eliauction
the business graphic software for desktop app...example like the image shown
http://www.smartdraw.com/product/flo/index.htm
so is it a wise idea to do it in java...with gr8 interface


thanks in advance
creating windows desktop app=what languages should be the gr8 choice to do that+create a nice looking interface like office app...should u know a gr8 lot of misc prog lang (java,c/c++)..plz dont hesitate to mention thanks..
Reply With Quote Quick reply to this message  
Join Date: Nov 2004
Posts: 6,143
Reputation: jwenting is just really nice jwenting is just really nice jwenting is just really nice jwenting is just really nice 
Solved Threads: 213
Team Colleague
jwenting's Avatar
jwenting jwenting is offline Offline
duckman

Re: business online app/business graphic app

 
0
  #5
Oct 26th, 2005
Please translate that... Use English in the hope that people understand you, not some form of secret language.
As people are clearly allowed to attack me but I'm not allowed to defend myself, I no longer post to this site.
Reply With Quote Quick reply to this message  
Join Date: Oct 2005
Posts: 17
Reputation: eliauction is an unknown quantity at this point 
Solved Threads: 0
eliauction eliauction is offline Offline
Newbie Poster

Re: business online app/business graphic app

 
0
  #6
Oct 27th, 2005
what i meant is..
does using java in creating gui desktop application like the SmartDraw Flowchart application or similar application like real player would be troblesome and very difficult .I've read somewhere in the internet that to create a gui desktop application with java would be very troublesome...
hope thats clear enough
Reply With Quote Quick reply to this message  
Join Date: Nov 2004
Posts: 6,143
Reputation: jwenting is just really nice jwenting is just really nice jwenting is just really nice jwenting is just really nice 
Solved Threads: 213
Team Colleague
jwenting's Avatar
jwenting jwenting is offline Offline
duckman

Re: business online app/business graphic app

 
0
  #7
Oct 28th, 2005
It's no more difficult than in any other high power language once you know what you're doing.
It does take some learning though, as the programming paradigms that underlie the Swing toolkit are quite different from what you'd expect from for example Delphi or Visual C++.
Especially the layout manager concept (instead of absolute positioning and sizing of controls) seems to have many people baffled for a while, but it's vital for the proper functioning of a GUI application in a multi-OS environment.
After writing applications using Turbo Vision for DOS it's a breeze though
As people are clearly allowed to attack me but I'm not allowed to defend myself, I no longer post to this site.
Reply With Quote Quick reply to this message  
Join Date: Jun 2004
Posts: 2,108
Reputation: server_crash is on a distinguished road 
Solved Threads: 18
server_crash server_crash is offline Offline
Postaholic

Re: business online app/business graphic app

 
0
  #8
Oct 28th, 2005
Shouldn't be any different than writting something in a different language. If you are writting an online app, then java's probably the way to go. If you're worried about speed, then you shouldn't be. Since Java 1.4, it uses the Hotspot VM by default, which does pretty much the same as the .Net engine. The .Net engine simply compiles modules as it loads them. Hotspot compiles code that is frequently used only, thereby saving loads of memory and reducing startup time.
Reply With Quote Quick reply to this message  
Join Date: Oct 2005
Posts: 17
Reputation: eliauction is an unknown quantity at this point 
Solved Threads: 0
eliauction eliauction is offline Offline
Newbie Poster

Re: business online app/business graphic app

 
0
  #9
Oct 30th, 2005
how bout icons that i created myself and non-standard windows layout: example nero/real player layout;
how can i do that: include them?add dll??
please advice ...

thanks in advance
Reply With Quote Quick reply to this message  
Join Date: Oct 2005
Posts: 17
Reputation: eliauction is an unknown quantity at this point 
Solved Threads: 0
eliauction eliauction is offline Offline
Newbie Poster

Re: business online app/business graphic app

 
0
  #10
Oct 30th, 2005
rewritten post:
how bout icons that i created myself?

An Icon is used to describe fixed-size pictures, or glyphs. Typically, you embed icons in a JButton or other JComponent. Objects that can act as icons implement the Icon interface, shown below. It contains a paintIcon() method that specifies a drawing origin. You render the picture specified in the paintIcon() method in a rectangle whose size cannot exceed a rectangle with an origin at (x, y), a width of getIconWidth(), and a height of getIconHeight(). The Component parameter to paintIcon() is not usually used, unless you need to specify additional information, such as a font or color.
Am i on the right track?

and non-standard windows layout: example nero/real player layout;
how can i do that?
please advice ...

thanks in advance
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Java Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC