On Wed, Jul 15, 2015 at 8:48 AM, Martin Hepperle
<
martin....@gmail.com> wrote:
> Well, I know this is rather oldish stuff..
>
> I have a (then) state of the art Hewlett Packard Portable Plus (aka 110+)
> and I am using VDE becaues it is so small from one of the "Portable paper"
> subscribers disks.
>
> While the program works nicely (in conjunction with some INT-bending helpers
> - TSRs) I regularly run into a problem of running out of file handles. Also
IIRC, the HP 110+ ran a flavor of DOS, but I don't recall which
version. In DOS, you can change the default file handle allocation
with a FILES=<num> in CONFIG.SYS. What's currently in the CONFIG.SYS
file?
And what TSRs are you running?
> I cannot use the special characters on my keyboard.
What special keys does it have? VDE doesn't use special keys on the
device. About all you might be able to do is run a TSR keyboard
mapper that will see the scan codes the keys send and convert them on
the fly to something VDE does see. How much good that would do would
depend upon what the keys are expected to do, and whether there is a
corresponding action in VDE a modified keypress would trigger.
> After 4-5 starting-editing-compiling cycles the compiler "cannot find" his
> header files and this seems to be linked to losing file handles when VDE is
> started anmd ended. I guess that VDE opens some file handles and never closes
> them or relies on DOS to close them on exit.
Which compiler and what language?
It sounds like you're using VDE to edit program code. What features
do you want in your editor? There are a large number of old DOS
editors of varying size still available. While I'm all in favor of
people still using VDE, it was intended to be a WordStar compatible
word processor, not a programmer's editor. There may be a better tool
available for the job.
See
http://texteditors.org/cgi-bin/wiki.pl?MsDosEditors for a list of
the ones I know of. See
http://texteditors.org/cgi-bin/wiki.pl?TinyEditors for a list of tiny
editors for various platforms. (The arbitrary cutoff was 64K
executable size.)
I was a happy user of Dr. David Nye's E editor back in the day: files
up to the size of memory, search and replace, block move/copy/delete,
and settable right *and* left margins, all in a 5K com file. It also
had a form of macro capability. You could assign batch files to E
F-keys. Press the key, E would copy the editing buffer to a temp
file, and then call the batch file in s subshell and pass it the temp
file name. You could write filters in batch files to do things E
couldn't do native. When the batch file finished, the modified temp
file was read back into E. The big gotcha was that E was limited to
80 char lines by the way text was stored in memory, and longer lines
were silently truncated. For program code that might be a show
stopper.
If you like the WordStar command set, the DOS version of Albrecht
Kliene's e3 editor is worth a look. It can emulate emacs, nedit,
pico, vi or WS. It uses a stub file and overlay. The stub file in DOS
is a whopping 4K, and provides WS key bindings.
> Is there a chance to access the sources for the older versions of VDE? For
> example I would like to adapt the screen and keyboard handling to the HP
> machines BIOS.to get rid of TSR programs.
> I guess that today VDE is not of huge commercial interest and for long term
> preservation of software it would be generally very helpful if the sources
> of the various versions would be available.
No. Eric hasn't released source and doesn't plan to. And IIRC, VDE
is written in assembler, and I don't believe the assembler Eric uses
is available these days.
> Martin
______
Dennis