![]() | |
#1
| |||
| |||
|
|
I'm using Java for a similar project. The learning curve has been steep but part of that may be OOP rather than Java. But you don't really need to use OOP concepts. |
|
The MV file structure was surprisingly easy to mimic. The ad hoc reporting language would be the most difficult but you are not using that so you have a good place to start from. I created a very simple dictionary structure for the MV files but I find that it is more for my memory than for any real programming purpose. I have made no attempt to create a data base per se. Just for the record, a VERY large part of my early problems was caused by case sensitivity. This was followed closely by misspelled words. JOptionsPane for example. The real word is JOptionPane (note that option is not plural). |
#2
| |||
| |||
|
#3
| |||
| |||
|
|
I have an old AP-DOS system that I would like to re-write and distribute as free windows executables. There is a lot of databasic but not much use of the enquiry language ACCESS or whatever it's called. I came across PowerBasic on the net and this seems a possibility although I would like to keep the 3D file structure so may have some work to do to emulate this structure in the file IO. I'm after 1] No runtime licence costs required to run the application 2] Proper GUI interface rather than console or pseudo GUI 3] Easy download /install / run off you go. I realise that users will not be able to develope / compile their own programs etc., What I would like is some possible alternatives to PowerBasic , which I haven't even tried yet. Thanks Claude |
#4
| |||
| |||
|
|
I have an old AP-DOS system that I would like to re-write and distribute as free windows executables. There is a lot of databasic but not much use of the enquiry language ACCESS or whatever it's called. I came across PowerBasic on the net and this seems a possibility although I would like to keep the 3D file structure so may have some work to do to emulate this structure in the file IO. I'm after 1] No runtime licence costs required to run the application 2] Proper GUI interface rather than console or pseudo GUI 3] Easy download /install / run off you go. I realise that users will not be able to develope / compile their own programs etc., What I would like is some possible alternatives to PowerBasic , which I haven't even tried yet. Thanks Claude |
#5
| |||
| |||
|
|
I'm using Java for a similar project. The learning curve has been steep but part of that may be OOP rather than Java. But you don't really need to use OOP concepts. The MV file structure was surprisingly easy to mimic. The ad hoc reporting language would be the most difficult but you are not using that so you have a good place to start from. I created a very simple dictionary structure for the MV files but I find that it is more for my memory than for any real programming purpose. I have made no attempt to create a data base per se. Just for the record, a VERY large part of my early problems was caused by case sensitivity. This was followed closely by misspelled words. JOptionsPane for example. The real word is JOptionPane (note that option is not plural). BobJ "Claude" <leavego (AT) once (DOT) com> wrote in message news:bm0uin$iok$1 (AT) newsg1 (DOT) svr.pol.co.uk... I have an old AP-DOS system that I would like to re-write and distribute as free windows executables. There is a lot of databasic but not much use of the enquiry language ACCESS or whatever it's called. I came across PowerBasic on the net and this seems a possibility although I would like to keep the 3D file structure so may have some work to do to emulate this structure in the file IO. I'm after 1] No runtime licence costs required to run the application 2] Proper GUI interface rather than console or pseudo GUI 3] Easy download /install / run off you go. I realise that users will not be able to develope / compile their own programs etc., What I would like is some possible alternatives to PowerBasic , which I haven't even tried yet. Thanks Claude |
#6
| |||
| |||
|
|
If I can be of any help, please let me know. Mark Brown Ex Pickie moving on |
#7
| |||
| |||
|
|
If I can be of any help, please let me know. Mark Brown Ex Pickie moving on Thanks for the offer Mark . I didn't know it was easy in VB to distribute exe's Have you any VB tools for MV that you would be willing to share? |
#8
| |||
| |||
|
|
I have an old AP-DOS system that I would like to re-write and distribute as free windows executables. There is a lot of databasic but not much use of the enquiry language ACCESS or whatever it's called. I came across PowerBasic on the net and this seems a possibility although I would like to keep the 3D file structure so may have some work to do to emulate this structure in the file IO. I'm after 1] No runtime licence costs required to run the application 2] Proper GUI interface rather than console or pseudo GUI 3] Easy download /install / run off you go. I realise that users will not be able to develope / compile their own programs etc., What I would like is some possible alternatives to PowerBasic , which I haven't even tried yet. Thanks Claude |
#9
| |||
| |||
|
|
Claude, You can indeed accomplish your goals using PowerBasic for Windows. I have been doing so for years now. Most of the tools you need can be downloaded for free from my 2 web sites ( http://home.san.rr.com and http://www.m4ware.com ). These include a visual designer (written with PB), and some 'Include' files which will allow you to use some of the old 'Pick' standard basic statements (DCOUNT, INSERT, etc.). One of the nice things about PowerBasic for Windows is that it lets you generate very small, stand-alone executables and there are no monster run-time programs such as is required by tools like Visual Basic. (I would never consider using something like Visual Basic for creating commercial apps.) Anyway, you can contact me through the e-mail addresses on the m4ware site if you decide to go the PB direction and I can supply you with some free dll's and other code (and/or advice) that will help you to speed up the process. Regards... Ed "Claude" <leavego (AT) once (DOT) com> wrote in message news:bm0uin$iok$1 (AT) newsg1 (DOT) svr.pol.co.uk... I have an old AP-DOS system that I would like to re-write and distribute as free windows executables. There is a lot of databasic but not much use of the enquiry language ACCESS or whatever it's called. I came across PowerBasic on the net and this seems a possibility although I would like to keep the 3D file structure so may have some work to do to emulate this structure in the file IO. I'm after 1] No runtime licence costs required to run the application 2] Proper GUI interface rather than console or pseudo GUI 3] Easy download /install / run off you go. I realise that users will not be able to develope / compile their own programs etc., What I would like is some possible alternatives to PowerBasic , which I haven't even tried yet. Thanks Claude |
#10
| |||
| |||
|
|
As anyone who's seen my posts will attest, I'm a Visual Basic guy myself. You can attach an Access database and distribute your executables for free. There's almost nothing you can do in PickBasic that you can't do in VB if you're willing to do a little work. FIELD, CONVERT, EXTRACT and REPLACE and multivalues can all be handled natively with a little extra code and the proper attitue. If I can be of any help, please let me know. Mark Brown Ex Pickie moving on "Claude" <leavego (AT) once (DOT) com> wrote in message news:bm0uin$iok$1 (AT) newsg1 (DOT) svr.pol.co.uk... I have an old AP-DOS system that I would like to re-write and distribute as free windows executables. There is a lot of databasic but not much use of the enquiry language ACCESS or whatever it's called. I came across PowerBasic on the net and this seems a possibility although I would like to keep the 3D file structure so may have some work to do to emulate this structure in the file IO. I'm after 1] No runtime licence costs required to run the application 2] Proper GUI interface rather than console or pseudo GUI 3] Easy download /install / run off you go. I realise that users will not be able to develope / compile their own programs etc., What I would like is some possible alternatives to PowerBasic , which I haven't even tried yet. Thanks Claude |
![]() |
| Thread Tools | |
| Display Modes | |
| |