Search found 240 matches

by EmmBee
Wed Feb 27, 2019 9:39 am
Forum: Software & Programming
Topic: QLCOMMANDER - testers and help needed
Replies: 133
Views: 149991

Re: QLCOMMANDER - testers and help needed

I have managed to get this to work with Qemulator. This is how .. Thank you EmmBee - very interesting solution. I will read the Tubo manual to get a better understanding of Turbo_V But one thing seems strange - I can create subdirectories in QEmulator (but I use the drive mapped to a QXL.WIN file) ...
by EmmBee
Tue Feb 26, 2019 1:04 pm
Forum: Software & Programming
Topic: QLCOMMANDER - testers and help needed
Replies: 133
Views: 149991

Re: QLCOMMANDER - testers and help needed

Known issue that drives me crazy (Please help with this !) - Compiled program with QLiberator works on QL, QEmulator and QPC - Compiled program with Turbo works only on QPC !! On QL and QEmulator it raises error "Not implemented yet" Can anyone help with this peculiarity ? I have managed ...
by EmmBee
Wed Feb 20, 2019 3:55 pm
Forum: Software & Programming
Topic: QLCOMMANDER - testers and help needed
Replies: 133
Views: 149991

Re: QLCOMMANDER - testers and help needed

Using QemuLator without p/e, I can call up QLiberator to compile a program. QLiberator initially outlines a text window and there is no flashing cursor visible. I can press Control-Space, and then Control-C. The Basic cursor now flashes in #0, and QLiberator responds by removing the outline and disp...
by EmmBee
Mon Feb 18, 2019 6:34 pm
Forum: Software & Programming
Topic: QLCOMMANDER - testers and help needed
Replies: 133
Views: 149991

Re: QLCOMMANDER - testers and help needed

I've tested this out with QPC2, and your right - it does work. Control-C works as intended even without an enabled cursor - I am surprised.
I have been mistaken - sorry!
by EmmBee
Mon Feb 18, 2019 2:24 pm
Forum: Software & Programming
Topic: QLCOMMANDER - testers and help needed
Replies: 133
Views: 149991

Re: QLCOMMANDER - testers and help needed

Yes, I agree, that should do the trick. I've done a search and what you say is documented under TURBO_ref in both turbotk_txt and also Qhelp from RWAP. Talking about "GET", I notice you have defined a function, "getKey$(c%), where this is the only place in your program where a cursor ...
by EmmBee
Mon Feb 18, 2019 9:30 am
Forum: Software & Programming
Topic: QLCOMMANDER - testers and help needed
Replies: 133
Views: 149991

Re: QLCOMMANDER - testers and help needed

Andrew wrote:- Compiled program with Turbo works only on QPC !! On QL and QEmulator it raises error "Not implemented yet"
What line number does this error occur on?
Also - did this happen in the previous version?

Michael
by EmmBee
Wed Feb 13, 2019 2:04 pm
Forum: Software & Programming
Topic: C++
Replies: 22
Views: 9595

Re: C++

Note you can make C68 more ANSI-like by simply putting a "-extensions=yes" on the command line - this makes it at least accept some more modern ANSI-C constructs like C++ comments ("//") I've tried this on a simple program, but get the report: option '-extensions=yes' not recogn...
by EmmBee
Thu Jan 31, 2019 4:00 pm
Forum: QL Emulation
Topic: QEmulator RENAME issue
Replies: 8
Views: 7079

Re: QEmulator RENAME issue

You could try ... COPY win2_file1_doc TO win2_file2_doc
If that works, then you could delete the file1_doc
by EmmBee
Sun Oct 07, 2018 12:21 pm
Forum: Software & Programming
Topic: Test if a directory exists
Replies: 13
Views: 5574

Re: Test if a directory exists

If you have Turbo toolkit, you could use ... DEFine FuNction valid_dir(dev$) LOCal L L = LEN(dev$) IF L: IF dev$(L)="_": IF DEVICE_STATUS(1,dev$)>=0: IF FTYP(\dev$)=255: RETurn 1 RETurn 0 END DEFine valid_dir This works as the full directory name has to be supplied. It cannot get confused ...
by EmmBee
Wed May 30, 2018 12:06 am
Forum: Software & Programming
Topic: Tumbling QL animation
Replies: 7
Views: 4277

Tumbling QL animation

Hi everyone, Some while ago, Steve Poole sent me his QL text tumbler program. This was previously here .. https://www.qlforum.co.uk/viewtopic.php?f=3&t=1931&p=17065&hilit=animation#p17050 This program involves spending lots of time computing highly complex trigonometric values to calcula...