Re: [Freedos-user] Redoing Clipper DB compiled app

2012-09-02 Thread Fabio Muller
Em 30-08-2012 19:04, Eric Auer escreveu:

 Hi John,

 if you have Clipper-compiled sources, you can indeed
 try to compile them again with the free Harbour clone,
 as you already mentioned. There is also a wikipedia
 article for those who are new to the topic. As far as
 I remember, FreeDOS 1.0 came with a version of this,
 but it was quite big and needed OpenWatcom installed.

 On the other hand, porting command line Linux apps
 with DJGPP works reasonably well, as does running
 (sometimes no porting needed) of Matlab code in the
 free Octave system, so maybe Harbour just works? :-)

 https://en.wikipedia.org/wiki/Harbour_%28software%29

 http://www.freedos.org/software/?prog=xharbour

 By the way, nice that you have OS/2 Warp around :-)

 I'm looking for remarks about porting and running a Clipper compiled
 dBase(.dbf files) application on FreeDOS.  I've used some index add-on
 libraries which may be an issue in FreeDOS.

 I have little source code for the libraries.  They and Clipper were
 created using Microsoft C 5.1 of long ago...

 I have some options.  I'll just give FreeDOS a try with QEMU on LINUX

 If you use Linux anyway, you can use Dosemu which emulated only
 parts of the hardware - this is faster than a full virtual PC
 and gives you extra DOS goodies like mapping Linux directories
 to DOS drive letters without needing drivers for it in DOS.

 VMPlayer/VirtualBox on Windows.  I could also do time consuming
 and extensive redevelopment using harbour-project.souceforge or
 xharbour.org Clipper clones.

 Did you already make an estimate how much code would really
 have to be changed? Maybe not that much, after all. But as
 I never worked with Clipper, this is only a guess for me.

 If your Clipper app worked in PC DOS, it should also work in
 FreeDOS... Maybe somebody can look at this Brazilian thread?

 http://www.mandrivabrasil.org/site/forum/index.php?topic=4360.0

 The news.gmane.org/gmane.os.freedos.devel archives say that
 from FreeDOS kernel 2026 to 2027, file locking improved (in
 particular: network drive file region locking) but printing
 in Clipper broke. That was back in 2003, so I hope that the
 bug has been fixed later on. Good to know that Clipper apps
 in general just work in FreeDOS (print bug or not)... :-)
 Note that SHARE also got updated (and forked...) since then.

 Regards, Eric



 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/



Hi Eric and all, the brazilian thread said that the guy solved the 
problem changing the config.sys to :

FILES=150
BUFFERS=80

Autoexec:

SETCLIPPER=F150
DOSKEY

he had other problems but related to internet explorer.
tks...


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Redoing Clipper DB compiled app

2012-09-02 Thread john s wolter
I'm not sure about the AUTOEXEC.BAT lines, a space character is needed

SET  CLIPPER=F150;

...I also remember putting a semi-colon between each CLIPPER parameter  a
semi-colon at the end.  My memory could be off or Harbor may not need that.

On Sun, Sep 2, 2012 at 12:28 PM, Fabio Muller muller.fa...@laposte.netwrote:

 Em 30-08-2012 19:04, Eric Auer escreveu:
 
  Hi John,
 
  if you have Clipper-compiled sources, you can indeed
  try to compile them again with the free Harbour clone,
  as you already mentioned. There is also a wikipedia
  article for those who are new to the topic. As far as
  I remember, FreeDOS 1.0 came with a version of this,
  but it was quite big and needed OpenWatcom installed.
 
  On the other hand, porting command line Linux apps
  with DJGPP works reasonably well, as does running
  (sometimes no porting needed) of Matlab code in the
  free Octave system, so maybe Harbour just works? :-)
 
  https://en.wikipedia.org/wiki/Harbour_%28software%29
 
  http://www.freedos.org/software/?prog=xharbour
 
  By the way, nice that you have OS/2 Warp around :-)
 
  I'm looking for remarks about porting and running a Clipper compiled
  dBase(.dbf files) application on FreeDOS.  I've used some index add-on
  libraries which may be an issue in FreeDOS.
 
  I have little source code for the libraries.  They and Clipper were
  created using Microsoft C 5.1 of long ago...
 
  I have some options.  I'll just give FreeDOS a try with QEMU on LINUX
 
  If you use Linux anyway, you can use Dosemu which emulated only
  parts of the hardware - this is faster than a full virtual PC
  and gives you extra DOS goodies like mapping Linux directories
  to DOS drive letters without needing drivers for it in DOS.
 
  VMPlayer/VirtualBox on Windows.  I could also do time consuming
  and extensive redevelopment using harbour-project.souceforge or
  xharbour.org Clipper clones.
 
  Did you already make an estimate how much code would really
  have to be changed? Maybe not that much, after all. But as
  I never worked with Clipper, this is only a guess for me.
 
  If your Clipper app worked in PC DOS, it should also work in
  FreeDOS... Maybe somebody can look at this Brazilian thread?
 
  http://www.mandrivabrasil.org/site/forum/index.php?topic=4360.0
 
  The news.gmane.org/gmane.os.freedos.devel archives say that
  from FreeDOS kernel 2026 to 2027, file locking improved (in
  particular: network drive file region locking) but printing
  in Clipper broke. That was back in 2003, so I hope that the
  bug has been fixed later on. Good to know that Clipper apps
  in general just work in FreeDOS (print bug or not)... :-)
  Note that SHARE also got updated (and forked...) since then.
 
  Regards, Eric
 
 
 
 
 --
  Live Security Virtual Conference
  Exclusive live event will cover all the ways today's security and
  threat landscape has changed and how IT managers can respond. Discussions
  will include endpoint security, mobile security and the latest in malware
  threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 


 Hi Eric and all, the brazilian thread said that the guy solved the
 problem changing the config.sys to :

 FILES=150
 BUFFERS=80

 Autoexec:

 SETCLIPPER=F150
 DOSKEY

 he had other problems but related to internet explorer.
 tks...



 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Freedos-user mailing list
 Freedos-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freedos-user




-- 
Cheers
John S Wolter

LinkedIn: johnswolter http://www.linkedin.com/in/johnswolter

- Mailto:johnswol...@wolterworks.com
- Desk: 734-408-1263
- USA, Eastern Standard Time, -5 GMT, -4 GMT DST
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


[Freedos-user] Redoing Clipper DB compiled app

2012-08-30 Thread john s wolter
I'm looking for remarks about porting and running a Clipper compiled
dBase(.dbf files) application on FreeDOS.  I've used some index add-on
libraries which may be an issue in FreeDOS.

I have little source code for the libraries.  They and Clipper were created
using Microsoft C 5.1 of long ago.  I do still have a complete
compiler distribution,
updates may pose a challenge.

I do have, believe it or not a working OS/2 Warp development system.  I ran
five virtual DOS sessions which were/are original IBM PC DOS 7 images.
 While way ahead of its time I'm concerned it has to fail at some point.
 This OS/2 might run on the first Pentium but that attempt may not be worth
the effort.  I could move to LINUX and oh-n mr. bill, Windows.

I have some options.  I'll just give FreeDOS a try with QEMU on LINUX and
VMPlayer/VirtualBox on Windows.  I could also do time consuming and
extensive redevelopment using harbour-project.souceforge or
xharbour.orgClipper clones.

Time is money and redevelopment may have a long term return but if I can
target FreeDOS cash flows immediately.

Does anyone have any experience or suggestions about using existing Clipper
applications on FreeDOS.

Cheers
John S Wolter

LinkedIn: johnswolter http://www.linkedin.com/in/johnswolter

- Mailto:johnswol...@wolterworks.com
- Desk: 734-408-1263
- USA, Eastern Standard Time, -5 GMT, -4 GMT DST
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Redoing Clipper DB compiled app

2012-08-30 Thread Jean MAURICE
Hi John,

I am a Fox developper for ... a long time. And may be that Fox Dos can help 
you. 
If you are interested, you can ask your question on the Profox mailing list 
that 
you will find at www.leafe.com


I am very happy to discover that I am not alone with old dbf files on DOS !!!

Best regards

--
Jean MAURICE
Grenoble - France - Europe
www.j-maurice.fr
www.atoutfox.org
www.aedtf.org


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Redoing Clipper DB compiled app

2012-08-30 Thread john s wolter
Jean, Thank you for your quick response.  I to have worked with FoxPro for
DOS and still have more that one license.  I'll pull that package out to
see what I might do with it.

On Thu, Aug 30, 2012 at 4:15 PM, Jean MAURICE jsm.maur...@wanadoo.frwrote:

 Hi John,

 I am a Fox developper for ... a long time. And may be that Fox Dos can
 help you.
 If you are interested, you can ask your question on the Profox mailing
 list that
 you will find at www.leafe.com


 I am very happy to discover that I am not alone with old dbf files on DOS
 !!!

 Best regards

 --
 Jean MAURICE
 Grenoble - France - Europe
 www.j-maurice.fr
 www.atoutfox.org
 www.aedtf.org



 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Freedos-user mailing list
 Freedos-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freedos-user




-- 
Cheers
John S Wolter

LinkedIn: johnswolter http://www.linkedin.com/in/johnswolter

- Mailto:johnswol...@wolterworks.com
- Desk: 734-408-1263
- USA, Eastern Standard Time, -5 GMT, -4 GMT DST
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Redoing Clipper DB compiled app

2012-08-30 Thread Eric Auer

Hi John,

if you have Clipper-compiled sources, you can indeed
try to compile them again with the free Harbour clone,
as you already mentioned. There is also a wikipedia
article for those who are new to the topic. As far as
I remember, FreeDOS 1.0 came with a version of this,
but it was quite big and needed OpenWatcom installed.

On the other hand, porting command line Linux apps
with DJGPP works reasonably well, as does running
(sometimes no porting needed) of Matlab code in the
free Octave system, so maybe Harbour just works? :-)

https://en.wikipedia.org/wiki/Harbour_%28software%29

http://www.freedos.org/software/?prog=xharbour

By the way, nice that you have OS/2 Warp around :-)

 I'm looking for remarks about porting and running a Clipper compiled
 dBase(.dbf files) application on FreeDOS.  I've used some index add-on
 libraries which may be an issue in FreeDOS.
 
 I have little source code for the libraries.  They and Clipper were
 created using Microsoft C 5.1 of long ago...

 I have some options.  I'll just give FreeDOS a try with QEMU on LINUX

If you use Linux anyway, you can use Dosemu which emulated only
parts of the hardware - this is faster than a full virtual PC
and gives you extra DOS goodies like mapping Linux directories
to DOS drive letters without needing drivers for it in DOS.

 VMPlayer/VirtualBox on Windows.  I could also do time consuming
 and extensive redevelopment using harbour-project.souceforge or
 xharbour.org Clipper clones.

Did you already make an estimate how much code would really
have to be changed? Maybe not that much, after all. But as
I never worked with Clipper, this is only a guess for me.

If your Clipper app worked in PC DOS, it should also work in
FreeDOS... Maybe somebody can look at this Brazilian thread?

http://www.mandrivabrasil.org/site/forum/index.php?topic=4360.0

The news.gmane.org/gmane.os.freedos.devel archives say that
from FreeDOS kernel 2026 to 2027, file locking improved (in
particular: network drive file region locking) but printing
in Clipper broke. That was back in 2003, so I hope that the
bug has been fixed later on. Good to know that Clipper apps
in general just work in FreeDOS (print bug or not)... :-)
Note that SHARE also got updated (and forked...) since then.

Regards, Eric



--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Redoing Clipper DB compiled app

2012-08-30 Thread john s wolter
Eric,

I'll review the threads to see what might work.  I guess based on you
comments I should try FreeDOS and see what happens.


On Thu, Aug 30, 2012 at 6:04 PM, Eric Auer e.a...@jpberlin.de wrote:


 Hi John,

 if you have Clipper-compiled sources, you can indeed
 try to compile them again with the free Harbour clone,
 as you already mentioned. There is also a wikipedia
 article for those who are new to the topic. As far as
 I remember, FreeDOS 1.0 came with a version of this,
 but it was quite big and needed OpenWatcom installed.

 On the other hand, porting command line Linux apps
 with DJGPP works reasonably well, as does running
 (sometimes no porting needed) of Matlab code in the
 free Octave system, so maybe Harbour just works? :-)

 https://en.wikipedia.org/wiki/Harbour_%28software%29

 http://www.freedos.org/software/?prog=xharbour

 By the way, nice that you have OS/2 Warp around :-)

  I'm looking for remarks about porting and running a Clipper compiled
  dBase(.dbf files) application on FreeDOS.  I've used some index add-on
  libraries which may be an issue in FreeDOS.
 
  I have little source code for the libraries.  They and Clipper were
  created using Microsoft C 5.1 of long ago...

  I have some options.  I'll just give FreeDOS a try with QEMU on LINUX

 If you use Linux anyway, you can use Dosemu which emulated only
 parts of the hardware - this is faster than a full virtual PC
 and gives you extra DOS goodies like mapping Linux directories
 to DOS drive letters without needing drivers for it in DOS.

  VMPlayer/VirtualBox on Windows.  I could also do time consuming
  and extensive redevelopment using harbour-project.souceforge or
  xharbour.org Clipper clones.

 Did you already make an estimate how much code would really
 have to be changed? Maybe not that much, after all. But as
 I never worked with Clipper, this is only a guess for me.

 If your Clipper app worked in PC DOS, it should also work in
 FreeDOS... Maybe somebody can look at this Brazilian thread?

 http://www.mandrivabrasil.org/site/forum/index.php?topic=4360.0

 The news.gmane.org/gmane.os.freedos.devel archives say that
 from FreeDOS kernel 2026 to 2027, file locking improved (in
 particular: network drive file region locking) but printing
 in Clipper broke. That was back in 2003, so I hope that the
 bug has been fixed later on. Good to know that Clipper apps
 in general just work in FreeDOS (print bug or not)... :-)
 Note that SHARE also got updated (and forked...) since then.

 Regards, Eric




 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Freedos-user mailing list
 Freedos-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freedos-user




-- 
Cheers
John S Wolter

LinkedIn: johnswolter http://www.linkedin.com/in/johnswolter

- Mailto:johnswol...@wolterworks.com
- Desk: 734-408-1263
- USA, Eastern Standard Time, -5 GMT, -4 GMT DST
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user