Hi. With version 1.1 of dbengine, my tables
which have multiple underscores were displayed
with funny titles like
Summary Fund_cv
instead of
Summary Fund Cv
I made fixes in base.pl for dbengine 1.1, and then
realized that the CVS code has been completely
rewritten (looks much better structured, compared to 1.1).
I think you should be able to apply these changes
without any problem to your new code, although I
haven't tried it:
sub CreateMenu() of base.pl version 1.10 (CVS):
Change
$disp_tablename =~ s/\W|_/ /o;
$disp_tablename =~ s/\W|_/ /o;
to
$disp_tablename =~ s/\W|_/ /go;
$disp_tablename =~ s/\W|_/ /go;
Thanks,
Dave.