- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Programming language to write GUI. Multiple platfo...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2003 04:05 AM
10-04-2003 04:05 AM
Programming language to write GUI. Multiple platform support.
First off, I hope this ends up in the languages section since that is my intention. No clear indications on the posting window that is what will happen.
I need to write a GUI that will be hosted on both UX 10.2 and Win2K. Background operations include calculations, sorting, generation/display of bar graphs based on calculations, pulldown menus, and the ability to print from GUI.
Could you give recommendations on what programming language you would use? I suspect answers such as C/C++, Perl, Tcl/Tck, Java may top the list - but am open to all suggestions. Top considerations are:
A) Ease of writing /programming
B) Multi platform support (UX/Win)
C) Ability to use one single language
Lesser considerations/concerns are throughput/speed.
Thanks for any input you can provide.
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2003 12:52 AM
10-05-2003 12:52 AM
Re: Programming language to write GUI. Multiple platform support.
Perl/Tk is available and easy to build/port. Personally I see it as an ultimate tool in showing how things can be done. For M$Win, there are several choices, either Cygwin (including XFree and perl/Tk by default) or ActivePerl (including Tk by default).
Cygwin's XFree has the Unix look to offer, whilst ActivePerl adopts to native Win32 look and feel. Most of my apps run on both platforms (I don't use Activeperl a lot, because the font conventions are quite different from unix/linux world's point of view)
Disadvantage of Perl/Tk is that there are no app-building tools available (that build easily on HP-UX), so it's all coding by hand, no drag-n-drop window placement. If you want that, you could try to look at wxperl, which is offering more building tools.
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2003 05:26 PM
10-05-2003 05:26 PM
Re: Programming language to write GUI. Multiple platform support.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2003 08:38 AM
10-06-2003 08:38 AM
Re: Programming language to write GUI. Multiple platform support.
(a)Easy - Not a steep learning curve
You would use "Swing" libraried that would give you the native look and feel.
(b)Java is designed for portability
(c)Java can be used for the entire lifecycle
One big Con is that you take a hit in performance when compared to other languages but this has been more than compensated in terms of readability and maintenance of the code.
Code-Reuse is a big thing in Java which mean you can change you GUI modules without affecting your calculations and you can have real time display of the same data in various formats like bar,pie etc.
Hope this helps
Paddy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2003 08:42 AM
10-06-2003 08:42 AM
Re: Programming language to write GUI. Multiple platform support.
Intermediate: Perl with TCL/tk
Best but needs Expertise: JAVA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 11:29 AM
10-09-2003 11:29 AM
Re: Programming language to write GUI. Multiple platform support.
I'm still open more input if anybody has additional thoughts on this. Thanks.
Andy