[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Uptick: Tick-based futures trading engine .NET or Java



PureBytes Links

Trading Reference Links

Mike:

>The problem with Perl and Python, at least in the windows world, is
>that they are fine for command line programs and behind the scenes
>crunching, but tying them to a fully functional user interface
>is lame.

Perl was never intended to do that -- perl programs generally rely on
the presence of a browser to handle user interfaces.

Python, on the other hand does have several GUI toolkits available.
But...

>[the toolkits] don't easily support the same complete control set as
>VB6 or .NET does, just basic widgets.

If you want to be portable across platforms, a graphics toolkit will
necessarily not support all Microsoft Windows features, but rather
those features common to all windows-based GUIs.

The Java toolkits are more mature at this point.  Java came with the
basic widgets from the get-go, and later on these were integrated
into a more programmer-friendly toolkit called Swing, which I
personally liked, and seemed to offer just about everything that
Windows offered.

-Alex