
Hi Jacob
Like you I have a (non commercial in my case) text based command
line application that started out in the days of dBase and then
Clipper. I now use Harbour 3.2 which I find convenient, stable and
easy to use under Windows 10. However you may need to change your
Windows screen resolution to get the application to use most of
the screen. My Windows installation is set for 1920 x 1080 but for
my Harbour application I switch to 800 x 600.
https://harbour1.software.informer.com/3.2/
My application is used for amateur radio contest logging and I
had considered converting it to a GUI based application when time
allows but I do find the keyboard based user interface to be much
faster than a mouse based interface.
Best wishes
Bob
--
--
You received this message because you are subscribed to the Google
Groups "Harbour Users" group.
Unsubscribe: harbour-user...@googlegroups.com
Web: http://groups.google.com/group/harbour-users
---
You received this message because you are subscribed to the Google Groups "Harbour Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to harbour-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/harbour-users/939ac4aa-0f2c-4198-baac-7deb95de97ffn%40googlegroups.com.
Use Harbour 3.2, download the nightly version.
First step, a console application.
Next step, you can add -gtwvg on compilation, and have an automatic setup of window size.
Do not began with a GUI library, except if you are sure that you
have "your GUI". On GUI, source code is not compatible between
GUIs, and if you decide change the GUI library, you will need to
rewrite all.
Note that:
on Clipper: Clipper is the compiler.
on Harbour: Harbour generates C source code, and compiler is a C
compiler. mingw includes gcc and is the default compiler. HBMK2
simplify this work, users forgot that exists a C compiler.
I like and use Harbour 3.4, a fork/variant, but it do not have last added Europe codepages, not a problem for my use.
On Harbour you do not need to use 25 lines X 80 columns, but
first step is SetMode(row,col), or it will use console
configuration, 1000 lines if this is console configuration. I use
SetMode(40,120).
You can use same source code as Clipper, and add Harbour features later.