Re: [Ql-Users] TURBO and testing it exists

2017-08-17 Thread matrassyl--- via Ql-Users
Hi Lee, If booting from a Win drive  on the first instance of needing to load 
the Turbo toolkit check for the existence of a file on the boot device called 
"TTKLoaded", or similar. If the file does not exist create it and load TurboTK. 
If the file is found to exist do not load the toolkit. At the end of the 
session tidy up the boot device by deleting this file. Not elegant but 
practical.

Duncan

 

 

 

-Original Message-
From: Lee Privett via Ql-Users 
To: ql-users 
CC: Lee Privett 
Sent: Thu, 17 Aug 2017 18:14
Subject: Re: [Ql-Users] TURBO and testing it exists

Perhaps I should clarify this a little further.Using Q-emuLator, my boot first 
loads SMSQ_QEM and restarts with the sameboot, I will always do this or use 
QPC2, I am not really looking for a BBQLsolution as it is development for other 
things.Where this[code]IF VER$<>"HBA" THEN   LRESPR "WIN8_SMSQ_QEM"END 
IF[/code]loads SMSQ and fails the second time around (as designed, so all good) 
asthe same boot loads again, I then load (still in the same boot) 
theTURBO_SMS_CODE appropriate for SMSQ based system.This is all fine, however, 
I am developing the boot for different setupsand change them a lot depending on 
what project I decide to work on.This means re-running the boot several times 
in the one session to testwhat I am trying to do and I don't want to keep using 
up space re-LRESPRthe TURBO toolkit.Using another toolkit to test for the 
existence of a keyword in the TURBOtoolkit would then mean using another method 
to test for that additionalToolkit, a catch 22.So I may try the WHEN_ERR method 
as soon as I find the documentation on it.LeeLeeOn Thu, Aug 17, 2017 at 10:49 
AM, Derek Stewart via Ql-Users  wrote:> Hi Tobias,>> 
The WHEN solution is great, but on some version of QODS, the WHEN ERRor> did 
not work.>> There are some people still using AH,JM, roms which may have 
problems with> WHEN ERRor>> --> Regards,>> Derek>>> On 17/08/17 10:39, Tobias 
Fröschle via Ql-Users wrote:>>> After I sent this, I realised a bit of 
explanation might be in order, as>> WHEN ERRor is not so well-known: When 
the interpreter passes a WHEN ERRor/END WHEN pair during normal>> program 
execution, it doesn't do anything with the commands inside the>> clause but 
remembering "I should do this in case an error occurs". So, line>> 1020 is not 
executed if no error occurs in line 1050. But in case there is>> an error (the 
interpreter choking on the MANIFEST statement it doesn't know>> when TT is not 
loaded), line 1020 is executed, telling us TT is not loaded. After 1020 was 
executed, the program is continued at the point /after/>> the error 
occurred. The empty WHEN ERRor clause (1060-1070) simply de-activates 
error>> processing back to "normal". Line 1080 will thus have the variable 
TurboTkLoaded to 1, if 1050 was>> executed without a problem, and set to 0 in 
case there was an error.>> Because we have made sure line 1050 is the only line 
that can be executed>> while error processing is active, we clearly know the 
only problem in 1050>> can only be "bad name". So it is important to pick a 
"test command" from>> the toolkit you are testing for that cannot choke on a 
different error than>> "bad name". MANIFEST is pretty ideal for this. 
Tobias Am 17.08.2017 um 11:25 schrieb Tobias Fröschle via Ql-Users <>>> 
ql-users@lists.q-v-d.com>:>> Lee,>> there are a number of toolkits that 
allow you to check for specific>>> other toolkit commands loaded or not - But 
this is a bit useless as it>>> leaves you with a chicken-and-egg problem: How 
to check whether the>>> checking toolkit is loaded?>> Your best bet on 
SMSQ/E would be a WHEN ERRor clause you place just in>>> front of a Toolkit 
command you are about to execute:>> 1000 TurboTkLoaded = 1>>> 1010 WHEN 
ERRor>>> 1020TurboTkLoaded = 0>>> 1030 END WHEN>>> 1040 REMark Execute a 
Toolkit command>>> 1050 MANIFEST : x = 100>>> 1055 REMark de-activate error 
checker>>> 1060 WHEN ERRor>>> 1070 END WHEN>>> 1080 PRINT "Turbo Toolkit 
loaded:"!TurboTkLoaded>> On a QL with non-working WHEN ERRor commands 
(pre-MG) you are a bit>>> doomed, the only thing I could probably come up with 
is writing a BASIC>>> program that PEEKs the name list, which is not quite so 
simple.>> Tobias> Am 17.08.2017 um 10:49 schrieb Lee Privett via 
Ql-Users < ql-users@lists.q-v-d.com>: I originally posted this on 
the forum: Hi community, I have searched for this on the forum but 
cannot find an entry but I am sure this has been asked before. I 
currently test for the presence of the HBA ROM in a boot program using VER$ 
and would like to test for other toolkits, specifically the TURBO toolkit. 
Is there a way to do this automatically in a boot so that when subsequent 
runs of the boot it is not loaded again in one session? e.g. for the 
HBA version I use: Code: Select all 


Re: [Ql-Users] EXEP_W

2017-08-17 Thread matrassyl--- via Ql-Users
Hi Michael, I haven't used FEP myself but It looks as if what you propose could 
work, although I don`t understand why you would need to check job priority, job 
owner, and job name to check if it is still running. Wouldn't NXJOB(id) which 
returns -1 if the job dosn't exist be sufficient and simpler?

Best Wishes
 

 Duncan

 

 

-Original Message-
From: Michael Bulford via Ql-Users 
To: ql-users ; ql-users-request 

Sent: Wed, 16 Aug 2017 22:59
Subject: Re: [Ql-Users] EXEP_W

On Wed, 16 Aug 2017, Duncan wrote:

Question : are you using QDOS or smsqe? with smsqe it should be possible to 
create a wrapper basic executable program that will EXEP "task; parameters" 
then continue to run and check the jobs list (you will know the task name) 
until the task it EXEP has finished before continuing with what you want to do 
next.
Hi Duncan,
Thanks for your suggestion, I did think of that idea.
Also, I have found FEP(...) which returns the id of the job created.
So, I'm guessing I could do something along these lines ...
id = FEP(etc)
REPeat wait
SUSPEND_TASK 25
IF PJOB(id)=0  : IF OJOB(id)=0  : IF JOB$(id)="" : EXIT wait
END REPeat wait
I haven't tried this yet. Doing it this way, the task name would not need to be 
known.
Michael
___
QL-Users Mailing List

___
QL-Users Mailing List


Re: [Ql-Users] Tynemouth Software and RPi2 SMSQmulator Bogomips

2016-02-09 Thread matrassyl

 Hello,

Following the assurances I got here, thanks for the responses, I have bought 
and installed the QL USB Keyboard kit from Tynemouth software. Prompt delivery 
and simple to install - connect the QL keyboard membrane and the leads for the 
power LED, and stick the USB board inside the QL shell. It works perfectly.

Thanks to Marcos Cruz for the bogomips comparisons from the Spanish QL forum 
suggesting that the RPi2 with SMSQmulator and some mild overclocking is 
comparable with a SuperGoldCard QL at least in terms of bogomips.
 
Cheers 

Duncan

 

 

-Original Message-
From: Adrian Graham 
To: ql-users 
Sent: Sun, 31 Jan 2016 10:43
Subject: Re: [Ql-Users] Tynemouth Software QL keyboard USB interface

On 31/01/2016 09:14, "matras...@aol.com"  wrote:

> Hello,
> 
> Has anyone on this list come across this interface which links the QL keyboard
> membrane to a USB connector to allow the keyboard to be used as a USB keyboard
> for say a RPi or other system running a QL emulation. Does anyone know if if
> works?
> 
> Duncan
> 
> 
http://blog.tynemouthsoftware.co.uk/2015/12/day-3-sinclair-ql-usb-keyboard.htm>

Hi Duncan,

I know Dave @ Tynemouth and have a couple of his PET addons, if the keyboard
interface is of the same quality then it'll be sweet. He has the boards
professionally made and hand-solders the components, the original
keymappings were also hand-coded so there shouldn't be any problems.

Cheers,

-- 
Adrian/Witchy
Binary Dinosaurs creator/curator
Www.binarydinosaurs.co.uk - the UK's biggest private home computer
collection?


___
QL-Users Mailing List

___
QL-Users Mailing List


Re: [Ql-Users] Q-Bar software

2016-02-07 Thread matrassyl
Hi, to add to that works fine on SMSQmulator on RPi2 as well.

Cheers 

Duncan

 

 

 

-Original Message-
From: Wolf 
To: ql-users 
Sent: Sun, 7 Feb 2016 16:19
Subject: Re: [Ql-Users] Q-Bar software

Hi,

thanks, works fine under SMSQmulator.

Wolfgang



On 02/07/2016 01:33 AM, Dilwyn Jones wrote:
> I've released a new freeware program called Q-Bar, which implements a taskbar 
> and start menu system for SMSQ/E v3 and QDOS with pointer environment version 
> 2.00 or later.
>
> Further details on my blog at https://dilwyn2.wordpress.com/
>
> Dilwyn Jones
>
>
> -
> No virus found in this message.
> Checked by AVG - www.avg.com
> Version: 2016.0.7357 / Virus Database: 4522/11568 - Release Date: 02/06/16
> ___
> QL-Users Mailing List
>
>
___
QL-Users Mailing List

___
QL-Users Mailing List


Re: [Ql-Users] SMSQmulator on RPi2 (Re: Tynemouth Software QL keyboard USB interface)

2016-02-07 Thread matrassyl
Hi

I can confirm Marcus observations as I got 5.59 and then 5.91 bogomips with the 
RP2 overclocked & cpu memory increased. There is a major difference between 
Oracle Java 8 and open jdk7.

Cheers 

Duncan 

 

 

 

-Original Message-
From: Marcos Cruz 
To: ql-users 
Sent: Sun, 7 Feb 2016 18:34
Subject: Re: [Ql-Users] SMSQmulator on RPi2 (Re: Tynemouth Software QL keyboard 
USB interface)

En/Je/On 2016-02-07 16:40, Wolf escribió / skribis / wrote :

> >SMSQmulator 8216:
> >
> >   5.62, 5.62, 5.56, 5.06, 5.64...

> I wouldn't have thought this it would make such a big difference.

Me neither.  It seems Oracle Java 8 is 200% faster than openjdk 7 on
Raspberry Pi.

> I regularly test and also run SMSQmulator under openjdk as well, and
> their speeds are as near as makes no difference, but this is on PCs,
> not on a raspi.

It seems Oracle developed a specific implementation for ARM on Raspi,
and they did a good job.

Personally, I don't like to install propietary software on my system
without a good reason, though, but SMSQmulator seems a good one :) I
hope openjdk will catch up, or maybe other alternatives are available.

-- 
Marcos Cruz
http://programandala.net
___
QL-Users Mailing List

___
QL-Users Mailing List

Re: [Ql-Users] SMSQmulator on RPi2 (Re: Tynemouth Software QL keyboard USB interface)

2016-02-06 Thread matrassyl
Thanks very helpful. Cheers
 

 

 

-Original Message-
From: Norman Dunbar 
To: ql-users ; matrassyl 
Sent: Fri, 5 Feb 2016 21:59
Subject: Re: [Ql-Users] SMSQmulator on RPi2 (Re: Tynemouth Software QL keyboard 
USB interface)


Front this thread: 
https://www.raspberrypi.org/forums/viewtopic.php?f=81&t=101543 it looks like 
oracle java 8 has been installed in Raspbian since the 15th Feb 2015 release.

HTH

Cheers, 
Norm. 
-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

___
QL-Users Mailing List


Re: [Ql-Users] SMSQmulator on RPi2 (Re: Tynemouth Software QL keyboard USB interface)

2016-02-05 Thread matrassyl
Hi,

As Wolfgang suggested I used Thierry Godefroys QL program to measure bogomips 
under SMSQE. RPi2 "native noobs boot" gets ~38.40 bogomips under linux (xterm - 
and cat /proc/cpuinfo) which is roughly what you got.

When I asked about java I am aware of 2 versions or java on RPi, there is the 
freeware java v7 which it seems you have installed as I have and there is 
oracle java v7 which I read somewhere handled floating point numbers better. I 
will try it later. I dont think java v8 is on RPi yet. Over clocking RPi 2 this 
afternoon using the Xwindows menu options to a processor speed of 1Ghz 
increased the bogomips under SMSQE to 2.76 with a 1024x768 window and 2.81 with 
a window of 512x256. All of this is in 16 bit colours. Also there are the 
Xwindows apps over heads that may make a difference to the speed of 
SMSQmulator. I plan to look in to the possibility of configuring a minimal boot 
of Xwindows with only SMSQmulator running to get a bit more speed, If you have 
done this already let me know how as I am at the stage of reading up about how 
to do this in linux.

Wolfgang even at ~2.53 bogomips it is still useful, bit like a Goldcard running 
SMSQE. The RPi B without over clocking gets only 2 bogomips under linux and 
thats without Xwindows running in the background, no wonder SMSQmulator is not 
worth the effort with RPi B. Even anything complicated like internet browsing 
with a basic RPi B is like watching a game load from tape to a 48k Spectrum.

 
Duncan

 

 

-Original Message-
From: Marcos Cruz 
To: ql-users 
Sent: Fri, 5 Feb 2016 17:16
Subject: Re: [Ql-Users] SMSQmulator on RPi2 (Re: Tynemouth Software QL keyboard 
USB interface)

En/Je/On 2016-02-05 15:23, Wolfgang Lenerz escribió / skribis / wrote :

> in general it's best to use the latest version of java. The JIT has been
> improving from version to version, generally making the latest versions
> the fastest.

I still have to investigate how to install Oracle Java 8 on Rasbian.

> >> I got 2.53 bogomips for SMSQmulator with the basic RPi2 setup.
> 
> Ugh.

> I think Duncan meant a Bogomips under Smsqe.

Thanks. Done. I run it several times, and got 2.61, 2.60, 2.61, 2.61...

-- 
Marcos Cruz
http://programandala.net
___
QL-Users Mailing List

___
QL-Users Mailing List

Re: [Ql-Users] SMSQmulator on RPi2 (Re: Tynemouth Software QL keyboard USB interface)

2016-02-05 Thread matrassyl
Which version of Java have you installed? Have you overclocked the RPi2 and 
does it speed up SMSQmulator significantly. I got 2.53 bogomips for SMSQmulator 
with the basic RPi2 setup.

Cheers

Duncan

 

 

 

-Original Message-
From: Marcos Cruz 
To: ql-users 
Sent: Thu, 4 Feb 2016 15:21
Subject: [Ql-Users] SMSQmulator on RPi2 (Re: Tynemouth Software QL keyboard USB 
interface)

En/Je/On 2016-02-04 09:29, matras...@aol.com escribió / skribis / wrote :

> Spent a bit of this morning setting up SMSQmulator on the RPi 2. It
> seems to be usable so far.

Yes, it's fast enough to be usable. It's the only QL emulator I use, I
never succeded in compiling or executing uQLx-arm on RPi, but anyway
SMSQmulator is more interesting for me as development platform.

-- 
Marcos Cruz
http://programandala.net
___
QL-Users Mailing List

___
QL-Users Mailing List

Re: [Ql-Users] Tynemouth Software QL keyboard USB interface

2016-02-04 Thread matrassyl
Hi Ian,

Thanks for the reply. After the previous responses I have bought one myself. I 
got it yesterday but have not used it yet, but very fast delivery and it looks 
like a well made bit of kit. Spent a bit of this morning setting up SMSQmulator 
on the RPi 2. It seems to be usable so far.

Cheers

Duncan



 

 

 

-Original Message-
From: Ian Burkinshaw 
To: ql-users 
Sent: Wed, 3 Feb 2016 17:56
Subject: Re: [Ql-Users] Tynemouth Software QL keyboard USB interface

Hi Duncan

Just purchased said interface from Tynemouth Software.

It does work on a PC QL emulators like QPC2, not tried on a Rasberry-PI yet, 
but see no reason why it should not work. On my PC, in the hardware list it 
returns as a HID (Human Interface Device) Keyboard Device, as I would 
expect, which is the same as any other keyboard device.

By the way, it also works with your normal keyboard still active, if 
connected.

Hope that helps.

Ian
- Original Message - 
From: "Adrian Graham" 
To: 
Sent: Sunday, January 31, 2016 10:43 AM
Subject: Re: [Ql-Users] Tynemouth Software QL keyboard USB interface


> On 31/01/2016 09:14, "matras...@aol.com"  wrote:
>
>> Hello,
>>
>> Has anyone on this list come across this interface which links the QL 
>> keyboard
>> membrane to a USB connector to allow the keyboard to be used as a USB 
>> keyboard
>> for say a RPi or other system running a QL emulation. Does anyone know if 
>> if
>> works?
>>
>> Duncan
>>
>>
> http://blog.tynemouthsoftware.co.uk/2015/12/day-3-sinclair-ql-usb-keyboard.htm>
>
> Hi Duncan,
>
> I know Dave @ Tynemouth and have a couple of his PET addons, if the 
> keyboard
> interface is of the same quality then it'll be sweet. He has the boards
> professionally made and hand-solders the components, the original
> keymappings were also hand-coded so there shouldn't be any problems.
>
> Cheers,
>
> -- 
> Adrian/Witchy
> Binary Dinosaurs creator/curator
> Www.binarydinosaurs.co.uk - the UK's biggest private home computer
> collection?
>
>
> ___
> QL-Users Mailing List
> 


___
QL-Users Mailing List

___
QL-Users Mailing List


Re: [Ql-Users] Tynemouth Software QL keyboard USB interface

2016-01-31 Thread matrassyl
Hi Adrian,

Thanks for that reassurance. I think I will try one.
Cheers

Duncan

 

 

 

-Original Message-
From: Adrian Graham 
To: ql-users 
Sent: Sun, 31 Jan 2016 10:43
Subject: Re: [Ql-Users] Tynemouth Software QL keyboard USB interface

On 31/01/2016 09:14, "matras...@aol.com"  wrote:

> Hello,
> 
> Has anyone on this list come across this interface which links the QL keyboard
> membrane to a USB connector to allow the keyboard to be used as a USB keyboard
> for say a RPi or other system running a QL emulation. Does anyone know if if
> works?
> 
> Duncan
> 
> 
http://blog.tynemouthsoftware.co.uk/2015/12/day-3-sinclair-ql-usb-keyboard.htm>

Hi Duncan,

I know Dave @ Tynemouth and have a couple of his PET addons, if the keyboard
interface is of the same quality then it'll be sweet. He has the boards
professionally made and hand-solders the components, the original
keymappings were also hand-coded so there shouldn't be any problems.

Cheers,

-- 
Adrian/Witchy
Binary Dinosaurs creator/curator
Www.binarydinosaurs.co.uk - the UK's biggest private home computer
collection?


___
QL-Users Mailing List

___
QL-Users Mailing List


Re: [Ql-Users] Tynemouth Software QL keyboard USB interface

2016-01-31 Thread matrassyl
Thanks Lee, I saw that. A ready constructed interface is probably easier for me.
 

 

 

-Original Message-
From: Lee Privett 
To: ql-users 
Sent: Sun, 31 Jan 2016 11:49
Subject: Re: [Ql-Users] Tynemouth Software QL keyboard USB interface

http://www.deblauweschicht.nl/tinkering/tinkering.html

homemade version

Lee




On Sun, Jan 31, 2016 at 10:43 AM, Adrian Graham <
wit...@binarydinosaurs.co.uk> wrote:

> On 31/01/2016 09:14, "matras...@aol.com"  wrote:
>
> > Hello,
> >
> > Has anyone on this list come across this interface which links the QL
> keyboard
> > membrane to a USB connector to allow the keyboard to be used as a USB
> keyboard
> > for say a RPi or other system running a QL emulation. Does anyone know
> if if
> > works?
> >
> > Duncan
> >
> >
>
> http://blog.tynemouthsoftware.co.uk/2015/12/day-3-sinclair-ql-usb-keyboard.htm
> >
>
> Hi Duncan,
>
> I know Dave @ Tynemouth and have a couple of his PET addons, if the
> keyboard
> interface is of the same quality then it'll be sweet. He has the boards
> professionally made and hand-solders the components, the original
> keymappings were also hand-coded so there shouldn't be any problems.
>
> Cheers,
>
> --
> Adrian/Witchy
> Binary Dinosaurs creator/curator
> Www.binarydinosaurs.co.uk - the UK's biggest private home computer
> collection?
>
>
> ___
> QL-Users Mailing List
>
___
QL-Users Mailing List

___
QL-Users Mailing List


[Ql-Users] Tynemouth Software QL keyboard USB interface

2016-01-31 Thread matrassyl
Hello,

Has anyone on this list come across this interface which links the QL keyboard 
membrane to a USB connector to allow the keyboard to be used as a USB keyboard 
for say a RPi or other system running a QL emulation. Does anyone know if if 
works?

Duncan

http://blog.tynemouthsoftware.co.uk/2015/12/day-3-sinclair-ql-usb-keyboard.html
___
QL-Users Mailing List


[Ql-Users] Quanta Web site down?

2012-10-18 Thread matrassyl
The Quanta site has been down for at least 2 days. Has Quanta closed down?

Regards

Duncan
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] USB Floppy Drives, emulators and so on

2011-09-01 Thread matrassyl

 


Windows 7:



To be tested.




 

 QPC2 is OK with a USB floppy for read and write, but DD disks are not 
supported. And I think I had difficulty formatting. Need to check that.

Duncan


 

 

-Original Message-
From: Norman Dunbar 
To: ql-users 
Sent: Thu, 1 Sep 2011 13:50
Subject: [Ql-Users] USB Floppy Drives, emulators and so on


A while back there was talk of the ability to use a USB floppy with QPC 

etc. As I have recently had to purchase a USB Floppy from Amazon (£10 

delivered!) I decided to test it out and see what's what.



Linux:



On Linux, the drive plugs in and just works. It cannot read QL Floppies 

without a QL5A/QL5B filesystem (yet).



QPC cannot see the device as flp1_. QPAC2's files menu also seems "no 

medium" when I attempt to look at the files and SBasic retunes a dir of 

win1_ (PROG_USE and DATA_USE set to win1) if I attempt to dir flp1_.





Windows XP:



When I absolutely have to, I run XP in a VirtualBox emulator VM. As 

expected, the USB floppy turns up as drive A: and can be read from DOS, 

Windows Explorer.



QPC happily sees the device and can read from it. QPAC2's files menu can 

also see it and read it happily.





Windows 7:



To be tested.





On a similar note, I have downloaded Jonathan Hudson's qltools, qxltools 

and wxqt2 from "The Dead Letter Drop" and attempted to compile them on 

OpenSuse 11.4 running GCC version "gcc (SUSE Linux) 4.5.1 20101208 

[gcc-4_5-branch revision 167585]".



qltools: needed a few changes to make it work. I can happily read from a 

floppy image or from the device itself (/dev/usb_floppy), I can write to 

and format new floppy images - I have not tried writing to my (precious) 

floppies yet.



Formatting a floppy directly doesn't work, but formatting a floppy image 

does. However, it formats "short" in as much as if I ask it to format me 

an HD floppy image, I get a very short file and not 2880 sectors.



More experimenting to be done, but as far as images go, reading is fine, 

writing is fine, formatting is fine (see above) as is getting directory 

listings and info etc.



Physical devices allow directory listings, reading of files, writing is 

still to be tried and formatting (of a brand new unformatted disc) fails.





qxltools: multiple compilation failures. Still working on this one.



wxqt2: Even worse that qxltools. :-(





I'm not sure what the score is with Jonathan's source code. I'm thinking 

that maybe it could be put up on SourceForge as a project? At least then 

there's a safe central place for future enhancements?





I'll update that as I experiment.





Cheers,

Norm.





-- 

Norman Dunbar

Dunbar IT Consultants Ltd



Registered address:

Thorpe House

61 Richardshaw Lane

Pudsey

West Yorkshire

United Kingdom

LS28 7EL



Company Number: 05132767

___

QL-Users Mailing List

http://www.q-v-d.demon.co.uk/smsqe.htm


 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm

Re: [Ql-Users] keyboard issue with QPCII

2011-05-31 Thread matrassyl
`1234567890-=!"£$%^&*()_+€!"£$%^&*()_+

Same test Windows 7 and QPC2 with smsq/e 3.13

Does not look like a general problem


Duncan

 

 


 

 

-Original Message-
From: Lee Privett 
To: ql-us...@q-v-d.com
Sent: Tue, 31 May 2011 23:00
Subject: [Ql-Users] keyboard issue with QPCII


Using Win7 on a new Toshiba laptop running QPCII now throws up this

problem, which works perfectly well under Windows and also in

Q-emulator



 



 



Pressing all the top keys my keyboard now displays this under QPCII

only



 



1234567890-q



1234567890-q  with the right shift key



!"£$%^&*()_Q with the left shift key



 



instead of



 



1234567890-=



!"£$%^&*()_+ with the right shift key



!"£$%^&*()_+ with the left shift key



 



similar things happen with other lines with the rightmost keys giving

the problem and I am unable to get the # @ at all (no pun intended) so

what gives? 



 



I am using country code 44, I see no other tweeks L



 



 



For your information, digestion and action where relevant, thankyou



Lee



-Back to the QL-



  http://backtotheql.blogspot.com/



https://sites.google.com/site/iwant2learn2/



https://sites.google.com/site/theqlimagerepository/



 



___

QL-Users Mailing List

http://www.q-v-d.demon.co.uk/smsqe.htm


 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm

Re: [Ql-Users] Which is the last issue of Quanta Magazine?

2011-05-22 Thread matrassyl
Last I have is volume 28 issue 2 March 2011

Duncan

 

 


 

 

-Original Message-
From: Miguel Angel Rodriguez Jodar 
To: ql-us...@q-v-d.com
Sent: Sun, 22 May 2011 14:27
Subject: [Ql-Users] Which is the last issue of Quanta Magazine?


As I haven't received any new issues from February, I can't remember if my 
suscription just ended, or it's just that there haven't been any new issues 
since then. 
 
The last issue I have is VOLUME 28, ISSUE 1, FEBRUARY 2011. 
 
The Quanta website shows it's in maintenance mode, so I cannot check this 
there. 
 
Thanks! 
___ 
QL-Users Mailing List 
http://www.q-v-d.demon.co.uk/smsqe.htm 

 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] screen detection

2011-05-12 Thread matrassyl

 Hi Lee,

There may be something in a PD toolkit but I am not aware of any. Once I wrote 
a screen saver with bouncing disks that bounced off the screen and each other. 
Collision detection was through keeping track of things the disks might hit in 
a table. Check table and update every time a disk was used. It was written in 
C. Here are 2 bits of SBASIC code one for detecting screen colour mode 8 (pore) 
and one for placing a pixel in screen coordinates (peer). Both from an 
excellent guide to SuperBasic by Donald Alcock. A useful book with examples if 
you can get a copy.

Regards

 
100 DEFine FuNction PEER(x,y)
110 LOCal a,p%,q%,shift%
120 a=131072+128*y+2*(x DIV 4)
130 shift%=2^(6-2*(x MOD 4))
140 p%=PEEK(a) DIV shift%
150 q%=PEEK(a+1) DIV shift%
160 RETurn(p%&&1)*8||(p%&&2)*2||(q%&&3)
170 END DEFine
 
100 DEFine PROCedure PORE(x,y,pixel)
110 LOCal a,b%,q%,m%
120 a=131072+128*y+2*(x DIV 4)
130 IF a<131072 OR a>=163840 : RETurn 
140 p%=(pixel&&4) DIV 2||(pixel&&8) DIV 8
150 q%=pixel&&3
160 shift%=2^(6-2*(x MOD 4))
170 m%=~~(3*shift%)
180 POKE a,(PEEK(a)&&m%)||p%*shift%
190 POKE a+1,(PEEK(a+1)&&m%)||q%*shift%
200 END DEFine




 

 

-Original Message-
From: Lee Privett 
To: ql-us...@q-v-d.com
Sent: Thu, 12 May 2011 18:49
Subject: Re: [Ql-Users] screen detection


Weird it may be but unless there is some other sprite software I am not

aware of (DPs I am having problems with), I do not know how to detect

graphic collision without looking at the screen directly, unless there is

another way? I don't know enough m/c to program in only S*Basic



-Original Message-

From: ql-users-boun...@lists.q-v-d.com

[mailto:ql-users-boun...@lists.q-v-d.com] On Behalf Of Computer Research

Centrum, Ltd

Sent: 10 May 2011 10:51

To: ql-us...@q-v-d.com

Subject: Re: [Ql-Users] screen detection





>> The Spectrum had PLOT x,y ( I think) for switching on a pixel and the 

>> function POINT x,y for returning a value

>>

>> Obviously the QL has POINT which plots, so PEEK?

>>

>No inbuilt function, although various have been written, e.g. there is 

>one in DIY Toolkit somewhere.



It is weird to use screen as input device.

 

dex ___

QL-Users Mailing List

http://www.q-v-d.demon.co.uk/smsqe.htm



___

QL-Users Mailing List

http://www.q-v-d.demon.co.uk/smsqe.htm


 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Some good news on Ser-USB

2011-04-20 Thread matrassyl

 That is great news. 



Thanks Duncan





"There will be an announcement at the beginning of May on the availability of

the hardware and its pricing, before which I will be in touch with anyone

who has already enquired about purchasing a Ser-USB."
 

 





 

 


 

 

-Original Message-
From: Adrian Ives 
To: ql-us...@q-v-d.com
Sent: Wed, 20 Apr 2011 12:25
Subject: [Ql-Users] Some good news on Ser-USB


Thanks to Rich Mellor, who managed to source a Hermes chip, I can now

confirm that the Ser-USB will work on a standard QL fitted with Hermes at

speeds up to 19200 baud.  It is still necessary to load the asynchronous I/O

module (the Queue Manager), though.  This takes up an extra 5K of RAM.



 



It had been my intention to withdraw support for the Ser-USB on standard QL

hardware, but after receiving some feedback on that, I went back to the code

to see if there was anything that could be done to at least create something

that was stable enough to be used with some limitations in that environment.

I believe that effort has been successful; this was the result:



 



- The problem of executable files being corrupted when read back using

asynchronous I/O has been fixed, after eventually having been traced to some

erroneous pointer arithmetic.



- Out of order Trap #3 requests no longer cause the driver to abort.

Instead, the driver attempts to gracefully bring the "abandoned" request to

completion, deferring any other pending requests until the process is

completed.



 



Both of these issues only affected asynchronous I/O, but when combined they

made the driver unreliable on systems that required that functionality.



 



Many thanks to everyone who pointed me at the SimSer serial driver as a

possible solution.  I did spend some time looking at this, but as it only

enhances the functionality of the unidirectional channels (SRX and STX) I

was not able to immediately make use of its capabilities without quite a bit

of rewriting.  It does have some very useful features, though, and I will

look at providing support for them in a later version of the driver.



 



So . Ser-USB will be supported on base QL hardware, after all.  However,

without Hermes or (better still) superHermes you will be limited to 4800

baud.



 



There will be an announcement at the beginning of May on the availability of

the hardware and its pricing, before which I will be in touch with anyone

who has already enquired about purchasing a Ser-USB.



 



 



Adrian



___

QL-Users Mailing List

http://www.q-v-d.demon.co.uk/smsqe.htm


 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] CD-ROM drivers for the Q40

2011-04-10 Thread matrassyl
Try http://morloch.hd.free.fr/qdos/download.html#TOP. 
 
Regards

Duncan

 


 

 

-Original Message-
From: Anton Preinsack 
To: ql-users@lists.q-v-d.com
Sent: Sat, 9 Apr 2011 22:47
Subject: [Ql-Users] CD-ROM drivers for the Q40


I am looking for CD-ROM drivers for the Q40 (after a longer break I have time 
now to play around with my Q40 again ;-) ). Is there a place to download? 
 
Thanks! 
 
Anton 
___ 
QL-Users Mailing List 
http://www.q-v-d.demon.co.uk/smsqe.htm 

 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] QUORUM

2011-03-27 Thread matrassyl






"The quorum refers to the number present, not to the number voting."


Actually not just the number present but the roles of the individuals as well. 
For example a quorum may specify an number of office holders and specifically 
which offices as well as the total number of members present to make the 
meeting valid and authorised to make decisions on behalf of an organisation. 


Duncan

___

QL-Users Mailing List

http://www.q-v-d.demon.co.uk/smsqe.htm


 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] File transfers

2011-02-10 Thread matrassyl
Problem is endian. My recollection is Qx0 hard disk format is pretty much 
QXLwin except that QXLwin on a PC is organised in the PC byte order

Duncan

 

 


 

 

-Original Message-
From: Tobias Fröschle 
To: ql-us...@q-v-d.com
Sent: Wed, 9 Feb 2011 21:28
Subject: Re: [Ql-Users] File transfers


Am Mittwoch, den 09.02.2011, 21:12 + schrieb Norman Dunbar:

>  http://qxlwin.svn.sourceforge.net/viewvc/qxlwin/?view=tar

> 

> to download source code for QXLWin a cross platform that allows you to

> open a qxl.win file and extract files.

> 



If I remember right, QLay (and its derivatives) had a program to access

QXL.WIN files from Windows. The problem in the first place is, I very

much doubt the Q40 is able to produce QXL.win files. And, if it were,

how would you get the file from here to there.



Cheers,

Tobias



___

QL-Users Mailing List

http://www.q-v-d.demon.co.uk/smsqe.htm


 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm

Re: [Ql-Users] USBWiz Driver Update

2011-02-01 Thread matrassyl
Hi Adrian I also would be very interested in a commercial product of this. 

Regards

Duncan

 

 


 

 

-Original Message-
From: Adrian Ives 
To: ql-us...@q-v-d.com
Sent: Tue, 1 Feb 2011 18:13
Subject: [Ql-Users] USBWiz Driver Update




So, my question is this: Is anyone actually interested in me devoting more

time to finish this project? If (and it is still an if) the driver can be

brought to a release-stable state, is there interest in a commercial product

based around this?



 



 



Adrian



___

QL-Users Mailing List

http://www.q-v-d.demon.co.uk/smsqe.htm


 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Finally a reply

2011-01-30 Thread matrassyl

 

 Hi Geoff,

I see you have been answered already with several legally based opinions.


The problem with your question is that it is not factually valid. It states 
that there definitely has been a breach of the constitution. To establish that 
as a fact rather than opinion you will need to get a judicial review. Do you 
think that this will be a good use of Quanta's time and money?

 
As to the now hypothetical cheque, as the club rules regarding the status of 
the individual had been interpreted that the individual was correctly 
appointed, if the cheque was signed by the individual in the honest belief that 
they had the right to do so and the cheque was honoured by the club in the 
honest belief that the individual had the right to sign the cheque and there 
was no evidence of fraud in the criminal sense in the use of the cheque then 
the simple answer is yes and should any redress be needed should there have 
been an honest mis-interpretation of rules this should be sought within the 
rules of the club in the first instance.

Duncan


 

 

-Original Message-
From: Geoff Wicks 
To: ql-us...@q-v-d.com
Sent: Sat, 29 Jan 2011 20:24
Subject: Re: [Ql-Users] Finally a reply - from the Treasurer


 
-- 
From:  
Sent: Saturday, January 29, 2011 7:49 PM 
To:  
Subject: Re: [Ql-Users] Finally a reply - from the Treasurer 
 
> Hi Geoff, 
> 
> Suggest you look up transactional analysis in google especially critical > 
> parent and willful child roles. 
> 
> In law in the UK there is a differentiation between criminal and civil > law. 
> Any perceived violations of Quanta's constitution will fall in to > civil 
> law, unless you are suggesting fraud according to the criminal > definition 
> of this. If not then if there is a legal case to be made > because of some 
> injury, someone, an individual or group of individuals, > needs to sue. It 
> seems on this list at the moment only you feel there is a > case to be made. 
> The question then is are you going to sue Quanta. If not > then what is your 
> purpose. 
> 
 
Answer a simple question, but the answer has to be not as a layman would answer 
but as a lawyer would answer: 
 
Can a person who has been appointed treasurer of Quanta in a breach of the 
constitution - a legally binding document - legally sign cheques under British 
law? 
 
Best Wishes, 
 
Geoff 
 _  
___ 
QL-Users Mailing List 
http://www.q-v-d.demon.co.uk/smsqe.htm 

 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


[Ql-Users] Need for Speed

2011-01-29 Thread matrassyl

 

 Hi, I posted on this last a few years ago. I am in the processing of 
completing a build of a new PC. One check I use is to see how many bogomips I 
can get from QPC2. On my last system Windows XP, Core 2 duo 2.4Ghz, 2 GB RAM 
etc I got around the 150 bogomips level, just less than a Q60 68060 80MHz 48MB 
with manages 156. 

With the new PC QPC2 finally trounces 1998 QL type hardware emulation achieving 
220 bogomips. PS is Core i7 3.09GHz, 6GB RAM Windows 7.

QPC2 version is the same 3.33. Is there a 64bit version of QPC2 able to utilize 
multicore PC processors?

Duncan


___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Finally a reply - from the Treasurer

2011-01-29 Thread matrassyl
Hi Geoff,

Suggest you look up transactional analysis in google especially critical parent 
and willful child roles. 

In law in the UK there is a differentiation between criminal and civil law. Any 
perceived violations of Quanta's constitution will fall in to civil law, unless 
you are suggesting fraud according to the criminal definition of this. If not 
then if there is a legal case to be made because of some injury, someone, an 
individual or group of individuals, needs to sue. It seems on this list at the 
moment only you feel there is a case to be made. The question then is are you 
going to sue Quanta. If not then what is your purpose.

Kind Regards

Duncan 


 

 


 

 

-Original Message-
From: Geoff Wicks 
To: ql-us...@q-v-d.com
Sent: Sat, 29 Jan 2011 17:42
Subject: Re: [Ql-Users] Finally a reply - from the Treasurer


But this is a discussion we should have had a year ago when I first posted on 
this issue. 
 
And in reply to your private email - no I'm not angry, 
 
Best Wishes, 
 
 
Geoff 
 
PS Guess who I have upset by posting this at the top! 
 
-- 
From: "John Gilpin"  
Sent: Saturday, January 29, 2011 3:15 PM 
To: "ql-users"  
Subject: [Ql-Users] Finally a reply - from the Treasurer 
 
> Having read with interest Geoff Wicks' musings about the errors in > QUANTA's 
> ways, I would like to give you all, the facts that both me and > the QUANTA 
> Committee considered to be in accordance with the current (at > that time) 
> QUANTA Constitution. 
> 
> I joined the QUANTA Committee in April 2001 - see copy of the minutes of > 
> the A. G. M. for that year - as an ordinary Committee member and was asked > 
> to take on the duties of (head) librarian - there being no other > librarians 
> anyway. 
> 
> At the A. G. M. in the following year - 2002 - following the resignation > of 
> both Bill Newell and John Taylor I was nominated as Treasurer to the > QUANTA 
> Committee - a post that was amalgamated with that of Membership > Secretary - 
> two posts that were seen to be connected by the payment of > subscription and 
> the handling of QUANTA funds. 
> 
> Similarly, the posts of Software Controller and Librarian were also > 
> combined - a post undertaken by the then Software Controller John Gregory > 
> which meant that I relinquished my previous role of Librarian. 
> 
> Early in 2005, QUANTA Committee discussed and then decided that moves > ought 
> to be put in place to limit the length of time served by committee > members 
> (Officers and Ordinary members) with the result that members were > asked to 
> approve Special Resolution No. 1 (Changes to clause 5 of the > QUANTA 
> Constitution) at the A. G. M. in April 2005. The original > discussions on 
> this topic came from comments heard that the QUANTA > Committee were getting 
> stale and had nothing further to offer.The > Resolution was approved and the 
> Constitution was duly updated and > re-issued to all members in February 2006 
> as Issue 2 Revision 0. This > revision was deemed to be effective from that 
> date. 
> 
> At the date of the A. G. M. 2009, both John Mason (Chairman) and John > 
> Gilpin (Treasurer), under the new clause 5 of the constitution were due to > 
> stand down and in accordance with Clause 5.5 they, JM & JG, by agreement > 
> decided that John Mason would stand down since he had served slightly > 
> longer than John Gilpin on the Committee without a break. 
> 
> The following year (April 2010), having served continuously on the > 
> committee since 2001, (over 6 years) and as an officer since 2002 (over > 
> three years), John Gilpin tendered his resignation from the committee > 
> (under clauses 5.2 and 5.4 of the constitution). At this point, April > 2010, 
> John Gilpin's QUANTA membership status reverted to that of Ordinary > 
> Member.There were no nominations for the post of Treasurer/Membership > 
> Secretary and  immediately following the A. G. M. the new committee held a > 
> meeting where they co-opted John Gilpin (Ordinary Member) onto the > 
> committee under clause 5.8. By agreement of all concerned, John Gilpin was > 
> asked to carry out the duties of Treasurer/Membership Secretary until "The > 
> Next A. G. M." - see clause 5.8. - to see if anyone had decided to take on > 
> this role. 
> 
> One has to pay quite a lot of money to have clauses drafted which are word > 
> perfect with no errors and/or ambiguities by a professional and the > 
> committee having submitted the Special resolution approved at the AGM in > 
> 2005 to it's members and having not received any requests to amend the > same 
> the then committee deemed that the suggested modifications were > adequate 
> for the purpose intended - to limit the time served on the > committee to six 
> continuous years for ordinary committee members of which > not more than 
> three continuous years may be served as an officer 
> 
> With all Geoff Wicks' working experience as an officer o

Re: [Ql-Users] Question from a re-newbie

2010-12-16 Thread matrassyl
Actually there is quite a bit that can be done to enhance ED. Al Boehm 
published in Quanta magazine April 2002 a DO file to move blocks of superbasic 
under ED. Simon Goodwin wrote an extension called, I think, LDEF to enhance ED 
by accessing procedures and functions by name, and finally he also wrote a 
clipboard program and extension that allowed copying and pasting into 
Superbasic ED and other tasks. Mark Knight tweaked this program and published 
an update. i expect the Dilwyn's repository will have all these programs.

Regards

 

 Duncan


 

 

-Original Message-
From: gdgqler 
To: ql-us...@q-v-d.com
Sent: Mon, 13 Dec 2010 10:24
Subject: Re: [Ql-Users] Question from a re-newbie




On 13 Dec 2010, at 07:35, John Sadler wrote:



> You can use cut & paste in editor.

> If I remember correctly you select an area, yank itinto a buffer and then put 

> it back into a new place

> 

> John

> 

> On Thursday 09 December 2010 21:26, Malcolm Cadman wrote:

>> In message <4d00f65a.9070...@t-online.de>, Tobias Fröschle

>>  writes

>> 

>>> Am 09.12.2010 15:50, schrieb Rich Mellor:

 On 09/12/2010 14:44, Lee Privett wrote:

> Ed (Toolkit II) is a great editor but in coming back to the QL I

> would have thought someone would have come up with a couple of useful

> tweaks by now.

> 

> Such as the ability to copy and paste within the editing window and

> using the mouse to put the cursor just where I want it, instead of

> several arrow direction taps to get there.

> 

> Any ideas?

> 

> 

> Lee Privett

> ___

> QL-Users Mailing List

> http://www.q-v-d.demon.co.uk/smsqe.htm

 

 I guess no one enhanced Ed any further, as people moved onto using

 tools such as Digital Precision's The Editor, or the even better QD

 editor from Jochen Merz if they wanted to be able to do this sort of

 thing.

>>> 

>>> Yep, that's just about right. I find myself rarely using ed nowadays,

>>> even for plain SBASIC programming. QD2 with its feature to remove and

>>> add line numbers on the fly makes editing (and properly formatting)

>>> programs much easier.

>>> I use ED only for small corrections/amendments when actually compiling.

>>> 

>>> Tobias

>> 

>> Hi,

>> 

>> There is an enhanced version of The Editor, after DP folded.

>> 

>> Probably available on a Mr Jones's web site ... :-)

> 



ED has neither cut nor paste!



As Wolfgang wrote - use F10 to grab a line.



George



___

QL-Users Mailing List

http://www.q-v-d.demon.co.uk/smsqe.htm


 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm

Re: [Ql-Users] Minerva/Super Gold Card

2010-10-10 Thread matrassyl
Hi, Definitely should be compatible. Does the SGC work on another QL?
 

 


 

 

-Original Message-
From: "Bryan Horstmann" 
To: ql-us...@q-v-d.com
Sent: Sun, 10 Oct 2010 9:18
Subject:  [Ql-Users] Minerva/Super Gold Card


One of my customary QL's has gone faulty on the Ser1 port and I dug

out another one fitted with Minerva 1.97.  It seems to be fine with a

Sandy expansion, and Trump card, but when I fit a Super Gold card

2.49, the screen shows text Super Gold card, and the Minerva start

panel, but there is no response to F1 or any other key.  Aren't they

compatible?



Bryan H

___

QL-Users Mailing List

http://www.q-v-d.demon.co.uk/smsqe.htm


 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] More BASIC Queries

2009-11-19 Thread matrassyl

 


>Finally, I am surprised that no one has yet written a RELIABLE version of 
>"EXTRAS" as a stand alone >tool to enable the name list to be investigated - 
>or perhaps they have? If it was called "EXTRAS" would >it overwrite the TK2 
>"EXTRAS"? 
 

 Hi John, The VOCAB extension is part of SNG's DIY toolkit. It was written he 
says due to the deficiencies of EXTRAS.
Only 276 bytes and reports on all or any of the 10 types of name table entry. 
Described in QL World September 1992.

Regards

Duncan


 

 

-Original Message-
From: John Gilpin 
To: ql-us...@q-v-d.com
Sent: Wed, 18 Nov 2009 23:09
Subject: Re: [Ql-Users] More BASIC Queries


I am grateful to all who have contributed to this thread. Your advice has been 
taken on board and I now feel confident in re-writing my BOOT program(s). I 
shall be working on the following premises:- 
 
The "BOOT program" should be a number of small SuperBASIC programs each one 
performing a specific simple task and linked to the next one using the LRUN 
command. This is to ensure that the whole of the BOOT process is carried out by 
Job0. (I understand that when a SB program is LOADed it becomes resident in 
memory and is allocated Job0. If another SB program (say "BOOT2") is then 
called at the end of "BOOT", then "BOOT is deleted from memory and is replaced 
by "BOOT2" and being then resident, "BOOT2" becomes Job0 - and so on with 
"BOOT3", "BOOT4" etc) I think that my BOOT sequence would look something like 
this:- 
 
"BOOT" - Choose the Operating System required and load same. (QDOS OR SMSQ) [if 
QDOS is selected then do nothing since QDOS is the native OS whereas if SMSQ is 
selected, LRESPR SMSQ_GOLD) - LRUN BOOT2 
 
"BOOT2" - check whether the required toolkits and extensions are loaded 
(LRESPRd) and if not, load (LRESPR) them generally in line with the sequence 
advised by Dilwyn (FROM Job0!!). LRUN "BOOT3" 
 
"BOOT3" - Check and adjust time and date if required. LRUN "BOOT4" 
 
"BOOT4" - Offer a menu of programs available within my 'system' - i.e. {A} 
Genealogy (database manipulation, building Family Trees, Write details of 
family members as a Word Processor Document - ours is a family HISTORY project 
rather than just a family TREE). {B} QUANTA Membership records (Membership 
address database, Mailing labels programs etc), {C}. etc. ...{R} Return to 
the command line in whichever OS is current. LRUN or EX the file(s) associated 
with the selection OR restore any windows, and other user settings etc to 
switch-on state and "STOP". 
 
Queries:-   on my QLs (Aurora, SGC, QuBide, etc.) TK2 is loaded automatically 
at power-on (AUTOTK2F1 command), the file "BOOT" is located, LOADed and runs 
automatically. Are the "EXTRAS" within TK2 LRESPRd in the same manner as if TK2 
were LRESPRd from either the command line or from within a boot program? OR are 
they 'loaded' some other way which may cause some or all of them to go missing? 
 
  LRESPR SMSQ_GOLD causes the machine to RESET following which it 
initialises again. Does this RESET remove TK2 from memory and is TK2 then 
automatically reloaded again? File "BOOT" is then run again and only LRUNs 
"BOOT2" (since AFAIK there is no way of changing from SMSQ to QDOS without 
manually RESETing the machine). Since it obviously takes some time to activate 
TK2 (automatically or otherwise) would it be quicker to load TK2 along with all 
the other required extension (in "BOOT2") provided no TK2 "EXTRAS" are required 
before then? 
 
   When a SB program is EXECd (from SMSQ) I have noticed that it too 
becomes resident in the same way as an LRUN SB program. Does this mean that the 
EXECd program also becomes Job0? 
 
  Can anyone see why this sequence of programs {which I am confident will 
run on both QDOS and SMSQ on the Auroras} should not run exactly the same under 
QPC2 on my Vista PCs? (which is the original point I raised with my existing 
programs). 
 
And if no one wants to put together an article for the magazine, I may even 
have a shot myself. Thanks for all the material for this. 
 
Finally, I am surprised that no one has yet written a RELIABLE version of 
"EXTRAS" as a stand alone tool to enable the name list to be investigated - or 
perhaps they have? If it was called "EXTRAS" would it overwrite the TK2 
"EXTRAS"? 
 
Cheers for now, 
 
John Gilpin. 
 
 
gdgqler wrote: 
> On 17 Nov 2009, at 21:34, Dilwyn Jones wrote: 
> 
>   >>> Also, in one of my past articles, I wrote about the Name List in 
>>> SuperBasic (QL Today I mean) and gave a demo of how to list everything 
>>> in the name list. 
>>> 
>>> Might help? 
>>>   >> Turbo Toolkit also has a function to help step through name table 
>>> entries, I think I used it in my Basic Reporter program. Could be used to 
>>> write your own EXTRAS perhaps. 
>> > 
> Turbo Toolkit has the function BASIC_INDEX%(name$). This gives the position 
> of the keyword name$ in the BASIC Table if present. If the keyword is not 
> present it

Re: [Ql-Users] Compatible LCD monitor for Q40/Q60 ?

2009-11-18 Thread matrassyl

 Hi Thierry

I too would like a LCD monitor for the Q60 but I have not found a suitable one 
yet. If you find one please let me know.#

Duncan

 

 

-Original Message-
From: Thierry Godefroy 
To: ql-users 
Sent: Tue, 17 Nov 2009 10:38
Subject: [Ql-Users] Compatible LCD monitor for Q40/Q60 ?


Greetings,

My last CRT SVGA monitor just died (HV transformer fried: no hope of
repair) and my current LCD monitor is unable to display the Q40/Q60
resolution (1024x512) properly (it apparently tries to interpolates
the 1024 columns into 640 and it displays only the first 480 lines).

Is anyone using a recent (must be available for sale now in shops)
LCD monitor able to properly display the Q40/Q60 screens ?

Many thanks in advance !

Thierry.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm

 
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] QPC2 screen size

2009-10-26 Thread matrassyl

 Hi George

I have windows XP on a 1680x1050 resolution and QPC2 - 3.13 on an 800x600 
resolution. CTRL/Shift/F12 pops the QPC2 window to cover the complete XP 
display 

Duncan

 

 

-Original Message-
From: gdgqler 
To: ql-us...@q-v-d.com
Sent: Mon, 26 Oct 2009 16:11
Subject: [Ql-Users] QPC2 screen size









I now have access to a larger screen size of Windows XP than before. The first 
thing I noticed was that QPC2 had a limit on size. The second thing I noticed 
was that although a fairly large size was accepted by QPC2 the keys 
SHIFT/CTRL/F12 failed to work correctly. Instead of the whole Windows screen 
being filled with QL, the area was just black. Does anyone know the limit of QL 
screen size for the proper working of SHIFT/CTRL/F12? 
 

George 

___ 

QL-Users Mailing List 

http://www.q-v-d.demon.co.uk/smsqe.htm 



 

___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] QPC2 and direct sector access

2009-10-10 Thread matrassyl

 



then it's some sort of miracle. Usually I do know what my code can
do and what not.



 No miracles from George's suggestion


 


 

-Original Message-
From: Marcel Kilgus 
To: ql-us...@q-v-d.com
Sent: Fri, 9 Oct 2009 22:53
Subject: Re: [Ql-Users] QPC2 and direct sector access










matras...@aol.com wrote:
>  Yes he has, but I will try George's suggestion just in case, as it
> will only take a miniscule amount of time to try and if it delivers

... then it's some sort of miracle. Usually I do know what my code can
do and what not.

> Its a pity that QPC2 does not support direct sector access to alien
> formats as other versions of the QL do.

The difference is that other versions have to support direct sector
access anyway in order to support higher file level functions. It's
basically a by-product. On QPC no such support is necessary and thus
implementing it is a completely unrelated feature. One that has not
been called for very often.
(on a related note, direct sector access for floppy discs works of
course, for the stated reasons).

Marcel

___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm



 

___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] QPC2 and direct sector access

2009-10-09 Thread matrassyl

 Yes he has, but I will try George's suggestion just in case, as it will only 
take a miniscule amount of time to try and if it delivers a result it will have 
been an excellent investment as the cost is miniscule. Obviously I am not 
hopeful as Marcel has given it the thumbs down.

Its a pity that QPC2 does not support direct sector access to alien formats as 
other versions of the QL do. I can read FAT 16 formatted sectors on a CF card 
on my Q60 from SBASIC transfer from PC to Q60.  Absence of this can't be to 
stop users doing something stupid to their C:\ drive as I can open a direct 
sector access channel to this and read in the sectors of this drive and 
presumably screw up windows completely if I write rubbish out to it. Windows 
has some way of supporting alien formats as the PD Amiga emulators can read 
Amiga formatted disks and QXLtool can read QL floppy disks from a PC and 
QXL.win files, but as you say only Marcel can know if this windows process is 
compatible with QPC2.

Regards 

& thanks to you and George and Marcel for the interest

Duncan




 


 

-Original Message-
From: Ralf Reköndt 
To: ql-us...@q-v-d.com
Sent: Fri, 9 Oct 2009 17:29
Subject: Re: [Ql-Users] QPC2 and direct sector access









I think, Marcel has answered...it doesn't work. 
 

Cheers...Ralf 
 

- Original Message - 
From: "gdgqler" 
 

>> Does anyone know if there is a way to open a direc
t sector access  
>> channel from SBASIC to a non PC FAT formatted hard disk such as a  
>> Q60 formatted compact flash card. I have tried to do this with  
>> errt=FOP_DIR(#4,dos4_). While FOP_DIR returns 0 suggesting success  
>> the device as seen has a dimension of 0, so that INPUT#4,a$ get an  
>> end of file error message. 

> 
> Does the error just mean that there is no LF in the file? I have taken  
> to testing for a final LF before reading files with INPUT. Instead you  
> might try Turbo TK code's INPUT$ which reads a specific number of  
> characters from the channel. and so does not rely on LF. 

> 
> George 

___ 

QL-Users Mailing List 

http://www.q-v-d.demon.co.uk/smsqe.htm 



 

___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm

[Ql-Users] QPC2 and direct sector access

2009-10-08 Thread matrassyl
Hi,

Does anyone know if there is a way to open a direct sector access channel from 
SBASIC to a non PC FAT formatted hard disk such as a Q60 formatted compact 
flash card. I have tried to do this with errt=FOP_DIR(#4,dos4_). While FOP_DIR 
returns 0 suggesting success the device as seen has a dimension of 0, so that 
INPUT#4,a$ get an end of file error message.

Thanks


Duncan Neithercut
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] ethernet on Q40/Q60

2009-09-29 Thread matrassyl

 Hi,

I think you need to have linux installed and and ISA ethernet card. The Q60 
support site is still at
http://www.q40.de/q40.desales.html

Duncan


 


 

-Original Message-
From: Don Walterman 
To: ql-us...@q-v-d.com
Sent: Tue, 29 Sep 2009 14:24
Subject: [Ql-Users] ethernet on Q40/Q60










Can someone point me to information on getting ethernet going on the Q60?
I need to know what software I need and what I can expect to do (ftp, telnet 
email, http etc...)
I'm sure its been discussed before but I'm a few years out of date.
Thanks,
Don


___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm



 

___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


[Ql-Users] smsq hard disk partition support

2009-09-23 Thread matrassyl
Hi

Does anyone know if smsqe supports extended partitions on actual hard disks. 
The mkpart_exe that comes with the Qx0 allows partiotioning of upto 4 smsqe 
partitions with the last being required to contain the remainder of the disk. 
Which is quite messy as it gives only 3 usable partitions 256MB partitions and 
one giant one. Subsequent partitioning can be done on the disk using the 
atari-fdisk tool but only from Linux.Having little interest in Linux I am 
wondering about creating a smsqe tool to partition any disk with 4 256MB 
partitions or more if smsqe supports extended partitioning.

Duncan
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Chess

2009-09-15 Thread matrassyl

 Thanks. I have downloaded that one. So it looks like there are only 4 plus 
those for the spectrum that run on one of the spectrum emulators.

Duncan 


 


 

-Original Message-
From: Dilwyn Jones 
To: ql-us...@q-v-d.com
Sent: Sun, 13 Sep 2009 22:29
Subject: Re: [Ql-Users] Chess









> Could anyone tell me how many chess programs there have been for the 
> QL. I know of Psion Chess, GNU chess &?

> Black Knight. Were there any other chess games??

>?

> Thanks?

>?

> Duncan Neithercut?

There is also Wedgie, by R. D. Lorenz, on the Games page of my site. 
It's QLib compiled and includes source SuperBASIC.?
?

-- 
Dilwyn Jones?
?

?

___?

QL-Users Mailing List?

http://www.q-v-d.demon.co.uk/smsqe.htm?



 

___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


[Ql-Users] Chess

2009-09-13 Thread matrassyl
Hi All,

Could anyone tell me how many chess programs there have been for the QL. I know 
of Psion Chess, GNU chess &
Black Knight. Were there any other chess games?

Thanks

Duncan Neithercut
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Digital C executables

2009-08-02 Thread matrassyl

 


While I do have the Digital C SE files, I 
need to go through them to check for anything which needs to be 
removed. The only thing I haven't got is the manual for it

 Hi Dilwyn, the file SPC.txt in DIGIC.zip is all the manual that came with it

Regards


Duncan


 


 

-Original Message-
From: Dilwyn Jones 
To: ql-us...@q-v-d.com
Sent: Sun, 2 Aug 2009 19:57
Subject: Re: [Ql-Users] Digital C executables










- Original Message - 
From: "Norman Dunbar" ?

To: ?

Sent: Sunday, August 02, 2009 5:22 PM?

Subject: Re: [Ql-Users] Digital C executables?
?


>?

> Evening Tony,?

>?

> Tony Firshman wrote:?

>> Norman Dunbar wrote, On 30/07/09 21:41:?

>>> ...?

>>> read it. It's been a few years since I last read or wrote to the 
>>> dick so?

>>> it may be a bit flaky.?

>>>?

>> That reminds me of the QL man (shall remain nameless, but he knows 
>> who?

>> he is  (8-)#  ) who said to Roy Wood once that "I have my new hard 
>> dick?

>> in my laptop".?

>> Very nice typo.?

>?

> Thanks for pointing that one out Tony. As things turned out, my dick 
> was?

> indeed readable and I have extracted the files foe Digital C from 
> said?

> dick and forwarded them to Dilwyn - by email though - not on a dick 
> this?

> time!?

>?

> I'm sure that there must be plenty of jokes about floppy dicks and 
> hard?

> dicks as well - but I can't think of any at the moment!?

At least you didn't send me a copy of a "dickital C" :o|?
?

Who is this Richard everyone is referring to anyway
?

But, to be serious for a moment, Gerry Jackson explained to me that 
DP's rights to the C program have ended and as author he's given 
permission for me to put it on my website (when I get time...moving 
house later this month), at least until (or if) Gerry comes up with a 
new version of the compiler. While I do have the Digital C SE files, I 
need to go through them to check for anything which needs to be 
removed. The only thing I haven't got is the manual for it - anybody 
have a disk-based manual? I can cope with most QL file formats.?
?

-- 
Dilwyn Jones?
?


___?

QL-Users Mailing List?

http://www.q-v-d.demon.co.uk/smsqe.htm?



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Digital C executables

2009-07-31 Thread matrassyl

 Hi, Digital C was on the DP collection disks thats where I got it. Although it 
predates the GD2 colours, they can be used with programs compiled with it as it 
has functions to access SMSQ/E traps through the registers like trap code for 
SBASIC from Simon Goodwin. 

Duncan


 


 

-Original Message-
From: gdgqler 
To: ql-us...@q-v-d.com
Sent: Fri, 31 Jul 2009 10:08
Subject: Re: [Ql-Users] Digital C executables










On 30 Jul 2009, at 22:03, Derek Stewart wrote:?
?

>?

> C68 should be a more extensive C Compiler. But since I have never > really 
> used Digital C, maybe it is as good.?
?

I remember helping Dave Walker add bits to C68 for the GD2 colours. They would 
not be on Digital C.?
?

I bought the set of disks from DP and don't remember Digital C being on it.?
?

George?

___?

QL-Users Mailing List?

http://www.q-v-d.demon.co.uk/smsqe.htm?



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Qubide 2 and CDs

2009-06-11 Thread matrassyl

 


My question is how to read/write inside the QXL.WIN's I have created on them. 



 


 Hi Bob,

The SBASIC code for reading QXLwin files is in the QCDEZE source which comes 
with QCDEZE. The base CD reading code could be adapted to read FAT16. Its a 
piece of work that might be feasable once my present project is finished as I 
have other SBASIC code that can read & write to FAT16. 
If Discover can be adapted then obviously there is no need to adapt QCDEZE.

Duncan


 

-Original Message-
From: Bob Spelten 
To: ql-us...@q-v-d.com
Sent: Thu, 11 Jun 2009 13:00
Subject: Re: [Ql-Users] Qubide 2 and CDs









Op Thu, 11 Jun 2009 08:22:02 +0200 schreef Dave Walker :?
?

> Duncan,?

>?

> DiscOVER SHOULD read the MSDOS disk format - it certainly has been able > to?

> do so in the past as long as it has been formatted to FAT16 (it will not?

> handle FAT32 or NTFS).   How big is the drive you are trying to use - I?

> could probably sort out why DiscOver is not working if I can get an > image 
> of the disk. If it is not large it might well compress down to a > manageable 
> size.?

>?

My Zip's are 100Mb and the EZ's are 128Mb and they are formatted as FAT16.?

I had not thought of trying DiscOVER to read them, I have only used it in the 
past to read floppies.?

My question is how to read/write inside the QXL.WIN's I have created on them.?
?

Bob?
?


--Gemaakt met Opera's revolutionaire e-mailprogramma: 
http://www.opera.com/mail/?

___?

QL-Users Mailing List?

http://www.q-v-d.demon.co.uk/smsqe.htm?



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Qubide 2 and CDs

2009-06-10 Thread matrassyl

 


How does Qubide 2 read a FAT ZIP disk.?
?

I have not had any success with Diskover.?
?

I always have to format it to a Qubide partition.?

 Hi, 

I imagine Qubide would need an application that could open a direct access 
channel to the FAT partition and then process the FAT table data and the file 
data like the CF card FAT 16 reader I showed you just over a year ago. I 
thought thats what Diskover did - read alien disc formats.

Duncan 


 


 

-Original Message-
From: Derek Stewart 
To: ql-us...@q-v-d.com
Sent: Wed, 10 Jun 2009 17:06
Subject: Re: [Ql-Users] Qubide 2 and CDs









Hi,?
?

How does Qubide 2 read a FAT ZIP disk.?
?

I have not had any success with Diskover.?
?

I always have to format it to a Qubide partition.?
?

matras...@aol.com wrote:?

>  
>?

>?

> The next question is, could QCDEZE be adapted to read a QXL.WIN from an??

>?

> msdos formatted Zip drive or EZ drive???

>?

>  It could be?

>?

> Duncan?

>?

>?

>  
>?

>?

>  
>?

> -Original Message-?

> From: Bob Spelten ?

> To: ql-us...@q-v-d.com?

> Sent: Tue, 9 Jun 2009 16:51?

> Subject: Re: [Ql-Users] Qubide 2 and CDs?

>?

>?

>?

>?

>?

>?

>?

>?

>?

> Op Mon, 08 Jun 2009 20:31:02 +0200 schreef Dilwyn Jones??

>?

> :??

> ??

>?

>   
>> I'm aware Qubide version 2 can have an Atapi IDE CD-ROM drive connected > 
>> and a version of Discover exists to read some CDs.??

>> 
>?

>   
>> ??

>> 
>?

>   
>> Does anyone know if a QXL.WIN CD can be read on such a system and if so > 
>> what software might be required (e.g. QCDEZE)???

>> 
>?

>   
>> ??

>> 
>?

> I can confirm that QCDEZE will read the QXL.WIN on a CD-ROM drive??

>?

> connected to Qubide2.??

>?

> But not all drives I tried did work on my Qubide2, you should avoid the??

>?

> really fast ones.??

>?

> The next question is, could QCDEZE be adapted to read a QXL.WIN from an??

>?

> msdos formatted Zip drive or EZ drive???

>?

> This would make tranfers of large amounts of data between PC's and Aurora??

>?

> easier.??

> ??

>?

> Bob??

> ??

>?

> --Gemaakt met Opera's revolutionaire e-mailprogramma:??

>?

> http://www.opera.com/mail/??

>?

> ___??

>?

> QL-Users Mailing List??

>?

> http://www.q-v-d.demon.co.uk/smsqe.htm??

>?

>?

>?

>  
>?

>?

> ?

> AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
> Sign up for a free AOL Email account with unlimited storage today.?

> ___?

> QL-Users Mailing List?

> http://www.q-v-d.demon.co.uk/smsqe.htm?

> ?

>?

>?

> No virus found in this incoming message.?

> Checked by AVG - www.avg.com 
> Version: 8.5.339 / Virus Database: 270.12.60/2166 - Release Date: 06/09/09 
> 18:08:00?

>?

>   
___?

QL-Users Mailing List?

http://www.q-v-d.demon.co.uk/smsqe.htm?



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Qubide 2 and CDs

2009-06-10 Thread matrassyl

 


The next question is, could QCDEZE be adapted to read a QXL.WIN from an?

msdos formatted Zip drive or EZ drive??

 It could be

Duncan


 


 

-Original Message-
From: Bob Spelten 
To: ql-us...@q-v-d.com
Sent: Tue, 9 Jun 2009 16:51
Subject: Re: [Ql-Users] Qubide 2 and CDs









Op Mon, 08 Jun 2009 20:31:02 +0200 schreef Dilwyn Jones?

:?
?

> I'm aware Qubide version 2 can have an Atapi IDE CD-ROM drive connected > and 
> a version of Discover exists to read some CDs.?

>?

> Does anyone know if a QXL.WIN CD can be read on such a system and if so > 
> what software might be required (e.g. QCDEZE)??

>?

I can confirm that QCDEZE will read the QXL.WIN on a CD-ROM drive?

connected to Qubide2.?

But not all drives I tried did work on my Qubide2, you should avoid the?

really fast ones.?

The next question is, could QCDEZE be adapted to read a QXL.WIN from an?

msdos formatted Zip drive or EZ drive??

This would make tranfers of large amounts of data between PC's and Aurora?

easier.?
?

Bob?
?

--Gemaakt met Opera's revolutionaire e-mailprogramma:?

http://www.opera.com/mail/?

___?

QL-Users Mailing List?

http://www.q-v-d.demon.co.uk/smsqe.htm?



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Qubide 2 and CDs

2009-06-08 Thread matrassyl

 Hi Dilwyn, Thierry Godefroys ATAPI CD drivers and QCDEZE should do it. I had 
an Aurora & Qubide system when I wrote it am fairly sure that I tested it on 
that system as well.

Duncan


 


 

-Original Message-
From: Dilwyn Jones 
To: QL-Users list 
Sent: Mon, 8 Jun 2009 19:31
Subject: [Ql-Users] Qubide 2 and CDs










I'm aware Qubide version 2 can have an Atapi IDE CD-ROM drive connected and a 
version of Discover exists to read some CDs.

Does anyone know if a QXL.WIN CD can be read on such a system and if so what 
software might be required (e.g. QCDEZE)?

-- 
Dilwyn Jones
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Hardware

2009-05-26 Thread matrassyl

 Hi, to get the best price, put it on ebay. Black box QLs go for up to £90-150 
depending on condition, and yesterday there was a Trump card for £50-00 but it 
is now gone, today. I have not seen an aurora card there yet but no doubt it 
could sell well.

Duncan


 

-Original Message-
From: Roy wood 
To: ql-us...@q-v-d.com
Sent: Mon, 25 May 2009 23:32
Subject: [Ql-Users] Hardware









Hi, 

    one of my ex customers has just asked me to sell his setup. I have 
an Aurora Motherboard, a Qubide,  a full superHermes and a Super Gold 
Card. Anyone interested, please email . 
 

Roy 

-- 
Roy Wood 

Q Branch. 20 Locks Hill, Portslade, Sussex.BN41 2LB 

Tel/ Fax: +44 (0) 1273 430501 NOTE NEW PHONE NUMBER! 

web : www.qbranch.demon.co.uk   skype : royqbranch 
 

___ 

QL-Users Mailing List 

http://www.q-v-d.demon.co.uk/smsqe.htm 



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm

Re: [Ql-Users] SMSQ/E

2009-04-19 Thread matrassyl

 Hi,

The sources for smsq/e, current version 3.13, are at 
http://www.scp-paulet-lenerz.com/smsqe and can be freely downloaded from there. 
They can be recompiled to the version required with QMAC if you have it. 
Instructions and tools other than QMAC are supplied with the sources. 
Otherwise JMS at http://www.j-m-s.com/smsq/ or Quo Vadis at 
http://www.ql-qvd.com/products.html will probably sell you a compiled copy. 

Regards


Duncan


 

-Original Message-
From: Francois Lanciault 
To: ql-us...@q-v-d.com
Sent: Sun, 19 Apr 2009 5:18
Subject: [Ql-Users] SMSQ/E









Hi, 
 

I am making some kind of a come back to the QL and I might have some dollars to 
update my SGC/Aurora system to the latest technologies. 
 

So... 
 

- What is the latest SMSQ/E revision 
 

- Where can I buy it easily (internet order, Paypal payment, quick download) 
 

- Does it come with complete documentation (Especially the GD2 color 
enhancements) 
 

- In the SuperGoldCard version of SMSQ/E, I know that the 256 colors mode is 
supported. What about the 16 colors mode ? (Useful because it can be used at 
higher resolution than the 256 colors mode) 
 

- I have QD98. Can it be upgraded to the latest one or do I have to buy it 
anew. 
 

 

Thank you in advance. 
 

François Lanciault 
 

 

P.S. I will be working shortly on a program that make heavy use of the QL networ
k. I hope there are some QL network expert around because I am sure to have 
many questions. 
 

 


___ 

QL-Users Mailing List 

http://www.q-v-d.demon.co.uk/smsqe.htm 



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm

[Ql-Users] Mode 32 Sprites

2009-04-10 Thread matrassyl
Hi

Does anyone have mode 32 sprites that they would not mind sending me off list. 

I am finishing a modernising upgrade of an old icon editor program which is now 
capable of the editing of QL mode 4, mode 16, mode 33, mode 32, mode 64 sprites 
plus bmp images in 32,24,16,8 and 4 bit formats plus QL pic mode 33 and mode 
32, plus QL mode 4 _asm files created by the QPTR toolkit. Saved output is mode 
64 sprites or bmp 24 bit. Colour palette contains 4096 colours from any of the 
full 16bit colour palette. Palettes can also be saved and reused. The program 
is also theme and home directory aware and can be used via FI2 to load sprites.

I have all the various formats from various PD QL web sites except mode 32. I 
would appreciate if you could let me have access to any mode 32 sprites to 
ensure that I have the program to read the data correctly.

If anyone would like an alpha version of the program to look at I am happy to 
send off list.

Regards


Duncan 


AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] QL SCART Connections

2009-03-11 Thread matrassyl

 Hi, 

sending you a scan off list.

I think Dilwyn's site also has a zip file detailing how to make a scart cable. 
If not I had a zip file downloaded with diagrams and instructions from another 
QL site previously.

Duncan


 


 

-Original Message-
From: Rich Mellor 
To: ql-us...@q-v-d.com
Sent: Wed, 11 Mar 2009 16:15
Subject: [Ql-Users] QL SCART Connections









Hi everyone,?
?

A customer wants to have at look at creating his own QL Scart cable 
(this will be his first QL!).?
?

He has seen an article on the internet, but heard about an excellent 
article in QL Today volume 4, issue 2, page 54.  See word gets around at 
last !?

Can anyone help with a scan of the relevant article??
?

-- 
Rich Mellor?

RWAP Services?

URL:http://www.rwapsoftware.co.uk?

URL:http://www.rwapservices.co.uk?
?

___?

QL-Users Mailing List?

http://www.q-v-d.demon.co.uk/smsqe.htm?



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] QL/QL Parts

2009-03-08 Thread matrassyl

 Hi Sergiusz, you could try ebay for a basic QL or parts, prices there for a QL 
seem to vary from around £30 to just over £100 depending on condition.I have a 
Prism QL14 monitor for the QL that I dont want, the problem is shipping to 
Poland as it is quite heavy and so I suppose likely to be expensive.

Regards
Duncan




 

-Original Message-
From: Sergiusz Jarczyk 
To: ql-us...@q-v-d.com
Sent: Sat, 7 Mar 2009 17:07
Subject: [Ql-Users] QL/QL Parts









Hi All 

I'm the QL fan since 1987, since I saw it in a first popular IT book 
published in our country... Anyway, can you please tell me if you have 
available CRT display, originally developed for QL (Micro-something, I 
think), with a signal cable? If so, what would be the price, including 
shipping to Poland? Also, what would be the price for a barebone QL, 
with european power supply? 
 

TIA, 

Sergiusz 

___ 

QL-Users Mailing List 

http://www.q-v-d.demon.co.uk/smsqe.htm 



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm

Re: [Ql-Users] BASIC Questions.

2009-02-26 Thread matrassyl

 Hi John,


what is the maximum line number that can be used in a SuperBASIC listing? Is 
this number the same for using in RENUM etc?

 As far as I know the maximum line number is 32767 and I imagine that must be 
the same for renum.

Regards

Duncan


 


 

-Original Message-
From: John Gilpin 
To: ql-users 
Sent: Thu, 26 Feb 2009 10:58
Subject: [Ql-Users] BASIC Questions.









Hi,?
?

I am attempting to write (or rather re-write) a menu controlled program 
which will operate on QDOS (Basic Black Box QL) SMSQ (Aurora/SGC/QuBide) and 
QPC2 and in order that I get the correct terminology printed to the screen, 
I am likely to be asking ql-users for their advice on a number of points as 
they arise in the development of the program.?
?

Firstly: can anyone explain to me the difference (if any) of the terms 
'SMSQ', 'SMSQE ' and SMSQ/E??
?

and?
?

what is the maximum line number that can be used in a SuperBASIC listing? Is 
this number the same for using in RENUM etc??
?

I am not the fastest programmer and it is likely therefore that I shall be 
popping up from time to time asking similar very basic questions and I would 
ask that you bear with me while you try to teach this Old Dog new Tricks.?
?

Regards to all,?
?

John Gilpin.?
?


___?

QL-Users Mailing List?

http://www.q-v-d.demon.co.uk/smsqe.htm?



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Memory Reduction

2009-02-24 Thread matrassyl
Good news, I had forgotten to patch one of the IO component executable of 
BlackKnight. It is now giving me a tough game of chess on the Q60, at least 
tough for me as I am not a good chess player. If it beats me too often I will 
make it play GNU chess!

Many thanks for the help from everyone.

Regards


Duncan


AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Memory Reduction

2009-02-24 Thread matrassyl

 Thanks Marcel, your program does the business as far as memory goes. However 
BlackKnight? has another trick up its sleeve. It failes differently once the 
memory is reduced. Jonathon Hudsons Trapper extension seems to indicate it is 
attempting to execute an illegal instruction on the 68060. I am reasonably 
certain that I did run it through the C68 patch for the Qx0 but am now off to 
check that I actually did so. On QPC2 BlackKnight with the memory reduction all 
works.

Regards

Duncan


 


 

-Original Message-
From: Marcel Kilgus 
To: ql-us...@q-v-d.com
Sent: Mon, 23 Feb 2009 18:11
Subject: Re: [Ql-Users] Memory Reduction










matras...@aol.com wrote:
> I have acquired the Black Knight Chess Program. I was informed it
> would not work on modern QL systems but have found that it will when
> the memory in the system is reduced. That is Black Knight will not
> run unless memory is reduced to 8MB or less, if this is done it will
> run on QPC2? 3.33 SMSQ/E 3.13 and does not seem to be upset by the
> screen size ie fine on 800x600 except that its own window is v
> small. My Question is does anyone know of a reasonable way of
> reducing apparent memory on a Q60 other than by taking SIMMs out?

Try this (beware, will reset the machine with 4MB of RAM):

100 a=RESPR(100)
110 POKE_W a,$287C
120 POKE_L a+2,$40
130 POKE_L a+6,$70254E41
140 POKE_L a+10,$4EF80900
150 CALL a

Marcel

___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Memory Reduction

2009-02-23 Thread matrassyl

 Hi Dilwyn, thanks for the suggestion. I had tried it, this extension does not 
seem to be designed for systems with more than 640K as far as I can understand 
the source file. I did try it regardless and got a crash.

Duncan 


 


 

-Original Message-
From: Dilwyn Jones 
To: ql-us...@q-v-d.com
Sent: Sun, 22 Feb 2009 15:47
Subject: Re: [Ql-Users] Memory Reduction









> Hello,?



You could try some of the memory reset utilities like Peter Beule's RES, 
available on my website at http://www.dilwyn.uk6.net/tk/index.html or if you 
have my PD library CD it's on disk GE112.?
?

It lets you specify memory to 'survive' reset in number of kilobytes, but I 
can't tell from the short instructions if there is a limit on the amount of 
memory you can reset to.?
?

-- 
Dilwyn Jones ?


___?

QL-Users Mailing List?

http://www.q-v-d.demon.co.uk/smsqe.htm?



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Memory Reduction

2009-02-23 Thread matrassyl

 Thanks Tony, this works OK on QPC2, either respr or alchp, but not on the Q60.

Duncan


 


 

-Original Message-
From: Tony Firshman 
To: ql-us...@q-v-d.com
Sent: Sun, 22 Feb 2009 15:49
Subject: Re: [Ql-Users] Memory Reduction









matras...@aol.com wrote, On 20/02/09 22:44:?

> Hello,?



>?

>   
The classic way is to lrespr the necessary amount of memory.?
?

Tony?
?

-- 
QBBS (QL fido BBS 2:257/67) +44(0)1442-828255?

? t...@firshman.co.uk http://firshman.co.uk 
Voice: +44(0)1442-828254 Fax: +44(0)1442-828255 Skype: tonyfirshman?

?  TF Services, 29 Longfield Road, TRING, Herts, HP23 4DG?
?

___?

QL-Users Mailing List?

http://www.q-v-d.demon.co.uk/smsqe.htm?



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] lost files

2009-02-23 Thread matrassyl

 Hi are you running QPC2 from a limited account. If so this is the behaviour 
that I experience with windows XP


& QPC2 3.33 & smsqe 3.13 with a limited windows account that is not an 
administrator account

Regards

Duncan.


 

-Original Message-
From: Billy 
To: ql-us...@q-v-d.com
Sent: Sun, 15 Feb 2009 18:06
Subject: [Ql-Users] lost files









=?

Just noticed this - I'm using QPC 3.34 beta 3  smsqe 3.13?

I can save a file to Win1_ and access it again but if I closes QPC down 
then restart it the file is no longer there = MS strikes again?
?

Any help welcome?

=?
?

Ok I download QOC2 again to make sure I did not have a demo version - no 
change?

Tried saving to Win7_ ( windows I: drive )that is a plug in HD that 
plugs into a socket on the top of the  (Medion) computer, this works !?
?

Had a look at the "properties" of the Win file (Win1_ on C: drive,) the 
properties box has an additional tab compared to the properties of the 
win file on I:drive, the extra tab is "security" and allows various 
states of control for different user, also the win file on the I: drive 
has me as the owner the win file on the C: drive has administrator as 
the owner.?

I have tried changing the settings without much success, also files get 
lost on the Floppy drive if I use it.?

Simple solution is just to set Win1_ to the I drive.?

Seems like a vista thing, must just keep trying I guess?
?

All the besst - Bill?

___?

QL-Users Mailing List?

http://www.q-v-d.demon.co.uk/smsqe.htm?



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


[Ql-Users] Memory Reduction

2009-02-22 Thread matrassyl
Hello,
I have acquired the Black Knight Chess Program. I was informed it would not 
work on modern QL systems but have found that it will when the memory in the 
system is reduced. That is Black Knight will not run unless memory is reduced 
to 8MB or less, if this is done it will run on QPC2? 3.33 SMSQ/E 3.13 and does 
not seem to be upset by the screen size ie fine on 800x600 except that its own 
window is v small. My Question is does anyone know of a reasonable way of 
reducing apparent memory on a Q60 other than by taking SIMMs out?

Thanks

Duncan


AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] quanta website and membership question

2009-01-03 Thread matrassyl

 HI Jim, have just been there and done that. The link to paypal is on the left 
of the screen above the column of 


 8 links in blue boxes. The first link says : "Quanta Home"? 

In firefox it appears as an animation that cycles through "buy now" , "Quanta" 
, "Renew your subscription" and site to the left of the text "Download 
Nomination Forms "

There is nothing on the site to tell you of your subscription status. I checked 
mine by asking John Gilpin by email.

Regards

Duncan


 

-Original Message-
From: James Hunkins 
To: ql-us...@q-v-d.com
Sent: Sat, 3 Jan 2009 15:53
Subject: [Ql-Users] quanta website and membership question









I have been reading the emails about renewing on the website so I took a look 
(haven't been on the Quanta site for a while).?
?

Where do you find the membership renewal on it - I could not find it (either I 
am blind which is possible some days or it needs a more obvious pointer for 
people to find the renewal form)??
?

Also, is there a way to check on one's current membership status??
?

Thanks,?

jim?
?

___?

QL-Users Mailing List?

http://www.q-v-d.demon.co.uk/smsqe.htm?



 



AOL Email goes Mobile! You can now read your AOL Emails whilst on the move. 
Sign up for a free AOL Email account with unlimited storage today.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] HD Backup and Qubide HD check

2008-06-07 Thread matrassyl

 



>Is there an alternative backup program?


 There is also TGBack freeware from Thierry Godefroy available from his web 
page. Does not compress files and may need a medium with the same capacity as 
the one to be backed up. There is also the knightsafe 2 a commercial program 
that may still be available from QBranch. This was designed to back up to 
floppy disks with compression.

Duncan
?


 


 

-Original Message-
From: Davide Santachiara <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Sent: Fri, 6 Jun 2008 14:18
Subject: [Ql-Users] HD Backup and Qubide HD check










An Italian QL user is experiencing problems using Norback while making the
backup of his Qubide hard disk (out of memory error). I would have the
following questions:

Which is the latest Norback version? Is the latest version the one available
on Dilwyjn web site?
Is there an alternative backup program?
Is there any utility to check for instance that the directory structure of a
Qubide HD is ok?

Thank you

Davide

___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm



 



AOL's new homepage has launched. Take a tour at http://info.aol.co.uk/homepage/ 
now.
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Turbo Help Please

2008-04-24 Thread Matrassyl
 
In a message dated 24/04/2008 20:33:21 GMT Daylight Time,  
[EMAIL PROTECTED] writes:

> I  hope this helps.



It does many thanks as I am now past the it wont compile stage to I  did not 
think there were so many bugs to sort out stage.
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Turbo Help Please

2008-04-24 Thread Matrassyl
 
In a message dated 24/04/2008 20:57:28 GMT Daylight Time,  
[EMAIL PROTECTED] writes:

>Wolfgang and some other guys are right, in line 9476 you have to  use 
>NEXT i or EXIT i instead of END FOR i

>Have much fun  further debuging







Thanks, I will
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Turbo Help Please

2008-04-24 Thread Matrassyl
Hi Wolfgang, Thanks that was the answer. 
 
 
Program now compiles and now I have other bugs to fix
 
Duncan




   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Turbo Help Please

2008-04-24 Thread Matrassyl
Hi Norman,
 
 
Thanks that was the line. 
 
I used EXIT i as Wolfgang suggested to stop the loop. 
 
Program now compiles and now I have other bugs to fix
 
Duncan




   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Turbo Help Please

2008-04-24 Thread Matrassyl
Hi Derek,
 
Thanks that was the line. 
 
I used EXIT i as Wolfgang suggested to stop the loop. 
 
Program now compiles and now I have other bugs to fix
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Turbo Help Please

2008-04-23 Thread Matrassyl
 
In a message dated 24/04/2008 00:38:28 GMT Daylight Time,  
[EMAIL PROTECTED] writes:

>But  if you try to compile (Turbo or Liberator) some parser error will  
>appear...




Hi Gerhard, its a codegen error : "Duplicate Label" Have you ever  seen that 
error?. Its not mentionned in the manual. The lines in question  compile in 
Qlib. Problems with IF END IF are identified with parser task. What I  am 
wondering is if teh error message indicates a clash between, procedure names  
and 
keywords or perhaps variable definitions although nothing is obvious  obviously.
 
Here are the lines : Its part of a SELect ON "value" Line 9480 is the  line 
codegen complains about.
 
 
9464=3
9466dv_POS=INT(((zone*12)/(dev_ht%-12))*(free%)):IF  
dv_POS<1:dv_POS=1
9468IF  dv_POS<=dv_start
9470  scrolls=dv_start-dv_POS
9472  FOR i=1 TO  scrolls
9474Dev_Scroll_down
9476IF dv_start<=1 :END FOR  i
9478  END FOR i
9480END IF
9482   IF  dv_POS>=dv_end
9484  scrolls=dv_POS-dv_end
9486  FOR i=1 TO  scrolls
9488Dev_Scroll_up
9490  END FOR i
9492   IF  free%-1>dv_end:Dev_Scroll_up
9494END IF 
 
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Turbo Help Please

2008-04-23 Thread Matrassyl
 
In a message dated 23/04/2008 19:59:57 GMT Daylight Time,  
[EMAIL PROTECTED] writes:

Are you  sure that every "IF" statement has an "END IF" ?

Particularly when  nested loops and conditions are coded


Hi Malcolm,
I am fairly sure that they do it is one of the first things I looked  for.
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


[Ql-Users] Turbo Help Please

2008-04-23 Thread Matrassyl
Am trying to compile a program with turbo 5.06. I am getting a codegen  error 
message "Duplicate Label" line 9480. Line 9480 contains only END  IF of a 
properly constructed IF  END IF expression.
Duplicate Label is not mentioned in the manual as a codegen error report.  
Can anyone clarify what the error means exactly?
 
Thanks
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] QL-World Article missing

2008-04-08 Thread Matrassyl
In a message dated 08/04/2008 12:22:05 GMT Daylight Time,  
[EMAIL PROTECTED] writes:

>I  have lost a lot of my QL World magazines, im searching
>For "Diary of a  QL User" from  Samantha Mead. I think the serie
>Started at January  1986, but I have only the April left from 86.

>It would be great if  someone can copy, scan (I will pay for it) the
>diary or sell  me
>the missing QL Worlds.

Hi 
 There were 3 articles one in the combined Jan/Feb 86 issue and  then one in 
March & April 86.
I can scan the 2 you do not have and email them separately from the list as  
.jpgs tomorrow if that is any use to you.
 
Duncan






   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] (no subject)

2008-03-20 Thread Matrassyl
 
In a message dated 18/03/2008 23:48:49 GMT Standard Time,  
[EMAIL PROTECTED] writes:

>missed the Gold Card auction :( but I have seen this one  

>http://uk.four.ebid.net/perl/auction.cgi?auction=1200854905-28140-8&mo=auctio
n

>for  a Trump Card?

>I can see it isn't as much of an uprade as the Gold  Cards, but is it worth 
having?


I have a Gold Card. It has sat on a shelf for a while.
I could be persuaded to part with it and/or also a Q40 if you are  interested
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Internet connection

2008-03-11 Thread Matrassyl
 
In a message dated 11/03/2008 06:53:31 GMT Standard Time,  
[EMAIL PROTECTED] writes

>The  question here is what you get back from the device : do you get the 
entire TCP  (stack) info 
>back, or just the data?



Hi Wolfgang,
 
As far is I can see from the website the NetPort device is suitable for  
connecting to many non computer industrial devices, like vending machines &  
instrumentation & measurement devices, fire and security  panels & also hand 
held 
computing devices and can be set  up for these devices in minutes which would 
suggest that it translates the  TCP/IP network data into the straight forward 
type of serial data  that these types of devices would demand. 
 
I am going to have a look at the documentation for Lynx before deciding to  
investigate further. One concern I have is making the netport device visible  
to my modem router as I am not familiar with networking concepts.
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Internet connection

2008-03-10 Thread Matrassyl
 
In a message dated 09/03/2008 09:56:22 GMT Standard Time,  
[EMAIL PROTECTED] writes:

>so  if you wanted a Web page, you'd have
>to use your PC to translate some  serial command into "Get me this address
>from Port 80" -- the PC would  also have to handle the receipt of that page &
>transmitting it back  down the to the serial side.

>I guess what I'm saying is, it would  be non-trivial :(



Hi Ade,
 
Have had a looks at the Cyclades T-100. Looks similar to but more  
sophisticated than the Netport device in that Netport does not run linux or  
any other 
OS. It is configurable from a PC or via AT commands  through  the serial port. 
What I was envisaging was configuring Netport  possibly via a PC to be a 
recognised connection to the internet  broadband router modem, plugginig it 
into 
the QL and then looking at  the non trivial task, as you point out, of writing 
an application to decipher  the serial steam of converted TCP/IP data and send 
recognisable internet  commands through the serial link, ie a sort of a 
browser, probably rather  limited in functionality at first.
 
Duncan  



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


[Ql-Users] Internet connection

2008-03-09 Thread Matrassyl
Hi,
 
Does anyone have knowledge of the netport serial to ethernet connectors at  :
 
_http://www.openxtra.co.uk/products/accessories/serial-ethernet-adapters/netpo
rt/prodnetport.html_ 
(http://www.openxtra.co.uk/products/accessories/serial-ethernet-adapters/netport/prodnetport.html)
 


"NetPort is a ‘plug-and-play’ Serial-to-Ethernet cable adaptor that enables  
any
device or machine with a serial port, to become network and  Internet-enabled
in an instant.
The external NetPort adaptor features an  integrated web server, allowing any
device to which it is attached to be  ‘contacted’ and monitored via a 
standard
Internet browser. TCP/IP protocol  stacks are embedded into the NetPort,
enabling it to operate within non-PC  environments and the adaptor features
a Modem Emulation Mode, allowing it to  behave like a modem but communicate
over TCP/IP."
 
The cost is £80+VAT
 
Could such a device be suitable to connect a Qx0 or an aurora or a Shermes  
modified base QL to a broadband router modem?
 
Duncan
 
 



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm

Re: [Ql-Users] List problems

2008-01-16 Thread Matrassyl
Hi I have just had 2 of these as well. 
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


[Ql-Users] Keyboard Queue Research Results ( was macros)

2007-11-24 Thread Matrassyl
A queue has a header of 4 long words. The first long word is used by the  OS, 
the second points to the end of the queue, the third points to the next  
location to store a byte and the 4th to the next location for a byte to be  
read 
from. The value of the pointer in sv.keyq should change with the task that  is 
using the keyboard. Info from Adrian Dickens & Andy Pennels books.
 



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] macros

2007-11-22 Thread Matrassyl
 
In a message dated 22/11/2007 23:41:28 GMT Standard Time, [EMAIL PROTECTED]  
writes:>

> Any  idea what values I SHOULD be finding in the queue? Or perhaps it's 
>  safer to do something like:



Hi Dilwyn, sadly I wrote that so long ago (1999) that while I assume I  knew 
what I was doing then I dont know now what I was doing then. I could do  some 
research on it to try to recall. It would be nicer to understand what  should 
be happening. As you say it works and I have used it as a routine on  aurora, 
Qx0, and QPC2.
 
Duncan 



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] macros

2007-11-22 Thread Matrassyl
 
In a message dated 21/11/2007 15:25:24 GMT Standard Time, [EMAIL PROTECTED]  
writes:

I'm  looking to write a little utility to record keypresses as macros,
if  necessary assigning them to a hotkey or altkey for later use.

Some  processes mean repeated strings of keypresses, so it may be handy
to record  these keypresses and replay them later with an alt or hot
key to avoid  typing the same commands repeatedly.

Anyone have any idea how best to  go about achieving this?

-- 
Dilwyn  Jones

___
QL-Users  Mailing  List
http://www.q-v-d.demon.co.uk/smsqe.htm



What about checking for the position of the pointer to the current input  key 
queue. Even if the same key is pressed repeatedly the position of the buffer  
pointer moves which each character input. I used this when I wrote my screen  
saver to check for repeatedly pressed keys.
 
sv_keyq=PEEK_L(SystemVariableBase+76) : REM pointer to keyboard queue
 
NewKey=CheckKeys 
 
 DEFine FuNction CheckKeys
LOCal KeyPress
REMark  Returns 1 for keypress and 0 for no  keypress
BufPos=PEEK_L(sv_keyq)
BufPos2=PEEK_L(BufPos+12) :  REM last key pressed
IF BufPos2=OldPos  :  KeyPress=0
IF BufPos2<>OldPos :  KeyPress=1
OldPos=BufPos2
RETurn KeyPress
END DEFine  CheckKeys
 
The value in Bufpos might be usable to get the key combination, if not  
sv_arbuf could be peeked to get the value. 
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Punters

2007-10-07 Thread Matrassyl
 
In a message dated 07/10/2007 18:12:58 GMT Daylight Time, [EMAIL PROTECTED]  
writes:

Actually  I am not being facetious about the use of the word "punter". I wote 
in a  light-hearted way, but I think the person concerned is making a fair  
point, and we should be sensitive to it.

The problem is I cannot  think of a suitable alternative that also conveys 
the sort of atmosphere  we have at shows,

Best Wishes,


Geoff  



Actually what's wrong with QLer, QL enthusiast, QL Hobbyist, QL supporter,  
QList, QLuser, QL individualist.
The editor of QLToday might be contempating a competition to discover the  
correct terms for a single QL user or an pack of them, like a pride of  Lions 
etc,  - like a QLutch of Qlers.
 
Clearly punter is a cliched descriptor which may be applied  to an individual 
who is expected to part whith hard cash during an event of  any sort and is 
therefore totally inadequate to adequately describe the  quality of the 
individualists who continue to support QL systems. 
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Launchpad

2007-10-07 Thread Matrassyl
 
In a message dated 07/10/2007 20:58:42 GMT Daylight Time,  
[EMAIL PROTECTED] writes:

> Any  chance of having the initial location coordinates of launchpad
>  configuable in the config block or passed as a command string with 
>  EX?
>
> Thanks
>
> Duncan
Good idea - I'll see if I  can implement this.

-- 
Dilwyn Jones



Many thanks for looking at that
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [Ql-Users] Launchpad

2007-10-06 Thread Matrassyl
 
In a message dated 06/10/2007 01:34:33 GMT Daylight Time,  
[EMAIL PROTECTED] writes:

This was  an unforeseen side effect of a change made to allow fixing of 
top  left
corner after a resize, which works better for resizing, but has  this
effect. I'll try to change it when I manage to figure out exactly  what
is causing it.
Luckily, it is just inconvenient rather than a  serious bug.
-- 
Dilwyn Jones



Any chance of having the initial location coordinates of launchpad  
configuable in the config block or passed as a command string with  EX?
 
Thanks
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


[Ql-Users] Launchpad

2007-10-05 Thread Matrassyl
Hi
 
Does anyone know of a simple way of getting Launchpad to open at a  specified 
location on the screen.
My problem is that Launchpad 2.09 insists on opening its window at x=0 y=0  
on the display no matter how it is EXed. There seems to be no way to configure  
launchpad to open its windows at an exact location.
Launchpad 2.06 can be made to open its windows at exact pixel  co-ordinates.
 
Duncan 



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] QPC2 & Qx0

2007-07-10 Thread Matrassyl
 
In a message dated 10/07/2007 11:24:43 GMT Daylight Time,  
[EMAIL PROTECTED] writes:>

>There is a document that explains exactly how a QXL.WIN fie is made  up, 
>bytes, words  and long words. I have it though where I got it  is not 
>remembered. Could email it.



Thanks but I have that document. I wanted to test the idea that the QXL.win  
format was the Qx0 hard disk format by copying a Qx0 disk to a file and see if 
 QPC2 would recognise it as a QXL.win file.
 
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] QPC2 & Qx0

2007-07-08 Thread Matrassyl
 
In a message dated 08/07/2007 13:19:31 GMT Daylight Time,  
[EMAIL PROTECTED] writes:

>To  be epected as QPC2 is using Windows/DOS/BIOS to read device.

>I use  a HE editor that not only opens files but also a device, which it  
>reads sector by sector.

>Alternatively why not take the QXL  file onto the Qx0 ?



What is an HE editor?
 
What I want to do is clone the Qx0 hard disk into a QXL.win file
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


[ql-users] QPC2 & Qx0

2007-07-07 Thread Matrassyl
Anyone know how to open a direct sector access SBASIC channel to a CF card  
formatted as a Qx0 hard disk but plugged into a PC running QPC2. What I want to 
 do is copy the Qx0 CF card sector by sector to a QXL.win file on a PC Hard 
disk  to test the idea that the Qx0 hard disk format is essentially the same as 
the  QXL.win format.
 
Have been trying the same syntax to open the channel I have used  
successfully on the Q60 to open direct sector access to CDROMs and FAT16  
formatted PC CF 
cards but does not work on QPC2 to access Qx0 formatted CF  cards! I get 
error -1.
 
Help appreciated
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


[ql-users] Qx0 hard disk structure

2007-07-02 Thread Matrassyl
Hi 
 
Does anyone know the file structure of the Qx0 hard disk. Is it the same as  
the QXL.win format?
Is there any documentation anywhere.
 
Thanks
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] Blocklands by Digital Precision

2007-06-26 Thread Matrassyl
I have the collection do you wish a copy of disk 6 or just  blocklands?
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] QPC2 DOS device

2007-06-23 Thread Matrassyl
 
In a message dated 23/06/2007 13:50:04 GMT Standard Time,  
[EMAIL PROTECTED] writes:>

>  [EMAIL PROTECTED] wrote:
>>  Thanks Per. Have found I can also  copy other files larger than 1Mb to  
Win1_.
>> It leaves me  puzzled as to what is going on as windows has no problem   
with
>> the file

>If you are using a virus scanner, try  disabling it.

> Marcel



Hi Marcel, thanks for the suggestion I am using Norton but that was not  the 
problem.
What it was, was that the program I had written to copy files to the CF  card 
on the Q60 made a mess
of the DOS file date. So the file had a created date in 2087 - only got 1  
digit wrong but it was enough. Once I removed the file created and  last 
accessed dates from the file it copied into QPC2 perfectly. QPC2  must check 
for 
valid file dates when copying from DOS devices but windows does  not care!
 
Duncan 



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] QPC2 DOS device

2007-06-23 Thread Matrassyl
 
In a message dated 23/06/2007 09:43:49 GMT Standard Time,  
[EMAIL PROTECTED] writes:

>  [EMAIL PROTECTED] wrote:

><>
>> Is there a limit to  the size of file that can be copied from DOS
>formatted
>>  disks into the QXL win container?

>I just copied a 10+Mb file from  dos to win. No  problem.

>Per
___



Thanks Per. Have found I can also copy other files larger than 1Mb to  Win1_. 
It leaves me puzzled as to what is going on as windows has no problem  with 
the file
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


[ql-users] QPC2 DOS device

2007-06-23 Thread Matrassyl
Hi 
 
Has anyone tried to copy a file of 1Mb or greater size from a PC hard  disk 
to the Win1_ QXL win container hard disk of QPC2 using Qtrans or the QPAC 2  
files thing. I am trying to copy files from my Q60 Hard disk to QPC2. I have  
zipped my SBASIC folder on the Q60 to a zip file of aprroximately 1 Mb in size, 
 
copied it to a FAT16 formatted compact flash card and then tried to copy the 
zip  file into QPC2 as described above. However I have tried QPC2 crashes and 
crashes  so badly that windows asks if I want to send a report of the crash to 
microsoft.  QPC2 3.33 smsqe 3.13. The zip file is not corrupt as I can unzip 
the contents  correclt on the PC.
 
Is there a limit to the size of file that can be copied from DOS formatted  
disks into the QXL win container?
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] Computer One Programs

2007-06-22 Thread Matrassyl
 
In a message dated 22/06/2007 21:50:18 GMT Standard Time,  
[EMAIL PROTECTED] writes:

Does  anyone have a copy of the following Computer One languages on disk 
(or  working microdrive copy) -  :

Pascal
Forth
Monitor

Thanks

-- 
Rich  Mellor
RWAP Services
URL:http://www.rwapsoftware.co.uk
_URL:http://www.rwapservices.co.uk_ (http://www.rwapservices.co.uk) 






I have Pascal on microdrive. Why?
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] Screen Resolution changing .....

2007-04-25 Thread Matrassyl
 
In a message dated 25/04/2007 11:45:34 GMT Standard Time,  
[EMAIL PROTECTED] writes:

>as i can move windows around etc but i would love to be able to  toggle
>back to the QL's native resolution 
>on the fly for  certain programs. 

>I suspect this is not possible on the fly  

Hi Neil,
 
Yes it is possible I wrote a pointer driven button that produced a drop  down 
menu to select the desired screen resolution some years ago when I had a  
functioning Aurora. The one thing that had to be done before switching screen  
resolution was to ensure that SBASIC was asleep on a button before changing.  
Over the years I have migrated the program to a Q60 and QPC2 so I am not now  
certain that it would run on Aurora. At the time Aurora only had mode 4  
colours. I still use the program on the Q60 switching on the fly from 1025x256  
high 
colour to 512x256 high colour and then down to mode 4 colour if  desired.
 
I could dig out the sources if you are interested. I might even have an  old 
Aurora version on one of the old floppy disks. If you are  interested.
 
Duncan
 
 



 



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] New here....

2007-04-18 Thread Matrassyl
 
In a message dated 17/04/2007 23:34:07 GMT Standard Time,  
[EMAIL PROTECTED] writes:

>What  I'm basically interested in right now is how I can revive my old  
>collection of software, most importantly Text87, which is by far the  
>most expensive piece of my software collection. It just doesn't seem  to 
>like the QPC. Any hints on that, maybe?



Hi
 
If the problem with text87 is the GD2 colour drivers which I think it will  
be if your version of QPC2 is upto date (QPC 3.33 & SMSQ/E 3.13) you will  need 
to buy the text87 patch program to update it for the GD2 colour drivers.  JMS 
software & QBranch sell it I think. Once you have patched it to run on  QPC2 
there is a freeware patch for the patched version of Text87 to  give a wider 
range of paper & ink colour options. On Dilwyn Jones  site.
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] QMAC

2007-04-13 Thread Matrassyl
 
In a message dated 12/04/2007 22:01:04 GMT Standard Time,  
[EMAIL PROTECTED] writes:

> agree - perhaps Quanta would be better to say, purchase 5 licences  and  
> then offer to give them away - that would probably be more  than enough to  
> meet demand.


Have to say I dont agree, buying the rights or an unlimited licence  future 
proofs the use of QMAC for new entrants to QL computing. 5 free copies  are 
likely to be snapped up by existing users. Contacting Quanta and possibly  
joining to get a free copy creates yet another barrier for a new entrant. What  
happens when the 6th person comes along and asks for a copy - perhaps a Quanta  
member who is upset to discover that the free copies have gone to non  members?
 
My advice is keep it simple get an unlimited licence (if not  unreasonably 
priced) and make it freely downloadable from the sources  page.
 
Duncan 









   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] QMAC

2007-04-12 Thread Matrassyl
 
In a message dated 11/04/2007 23:54:29 GMT Standard Time,  
[EMAIL PROTECTED] writes:

>It's  not the cost of the license that's important but whether the money is  
>being well spent. 


As long as the cost is reasonable and if a £100 is what you have been  
discussing, it would be a bargain I would think. 
 
Allowing QMAC to be downloadable from the smsqe sources page will make it a  
bit easier for newcomers to compile smsqe for their own system. Once QMAC   
becomes available effectively as freeware it should be possible to compile 
smsqe 
 from the sources using freely available tools in a relatively straight 
forward  way, which might help attract newcomers. 
 
Duncan



   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] Request for speakers

2007-03-10 Thread Matrassyl
 
In a message dated 10/03/2007 18:03:44 GMT Standard Time,  
[EMAIL PROTECTED] writes:

Mind you  - who knows?



Thats it exactly -  who knows the future at this point.
For anyone who does not know SWOT it is anacronym for an analysis of  :
Strengths
Weaknesses
Opportunities
Threats
 
my sugestion is to do this wrt Quanta and the QL as a concept in  general.
 
Duncan
   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] Request for speakers

2007-03-10 Thread Matrassyl
 
In a message dated 10/03/2007 12:43:08 GMT Standard Time,  
[EMAIL PROTECTED] writes:

>Why do we have have a split, I have both emulators and native  hardware.

>I have never understood, why I can not have it all... I  suppose you 
>could call it supporting the hardware and software  developers.

>Derek
 
 
I agree competely with Derek. Diversity is essential to survival and  
evolution.
 
I was recently reading some old Quanta magazines around 2000-01 when  there 
was a previous debate about the future of the QL. One contributor  began his 
views with the statement that the QL was now a logical  concept rather than a 
specific bit of hardware (black box 128k) or an  emulator (QPC2) or a successor 
bit of hardware(Aurora Q40). Conceptually  that struck a cord as hardware wise 
or software (emulator) wise there are  many other ways of achieving the same 
programming ends on PC/MAC  systems.
 
One thing the the QL as a logical concept offers is a system that is a  bit 
more open as opposed to closed in its concept and evolution than PCs,  windows 
and MACs. It probably also offers others, but it is not about hardware  vs 
emulators.
 
Roy, I imagine that the reason you are proposing such a debate is  to try to 
clarify the future well in that case what about a SWOT  analysis of the future 
of the QL instead of the old debate of hardware vs  emulators?
 
Duncan 
 






   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


[ql-users] Need for Speed

2007-02-23 Thread Matrassyl
Hi 
 
Have finished upgrading the hardware on my PC for the moment. 
 
Core 2 Duo 2.4Ghz, 1Gigabyte RAM, SATA hard disk, Windows XP. 
 
QPC2 3.13 achieves 141.6 bogomips (7 jobs running at time of assessment),  
compared with Q60 which got 156.06 bogomips ( 17 jobs running at time of  
assessment). 
 
Is this the fastest QPC2?  
 
Will it beat the Q60 if I upgrade the PC memory from DDR 400 to DDR2  667?
 
Duncan
   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] Comment from the "Traditional" QUANTA Committee

2007-02-23 Thread Matrassyl
Hi,
 
To be fair about this discussion - see John's reply to my question about  
whether Quanta could buy out the copyright on QMAC
 
Duncan
   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] QL hardware and stuff

2007-02-22 Thread Matrassyl
 
In a message dated 23/02/2007 00:58:08 GMT Standard Time,  
[EMAIL PROTECTED] writes:

QMAC and  QLINKER is that we still have to 
pay royalties on every copy sold to  GreenStreet Software (£5.00 + VAT


Thanks for that clarification but I have a further question. Has the  
committee asked the publishers or offered to buy the licence? 
 
Duncan
   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] QL hardware and stuff

2007-02-22 Thread Matrassyl
 
 
>spending money on a semi commercial assembler. 
 
The licence for QMAC is owned by Quanta. I recall reading sometime ago a  
statement that Quanta had not sold a copy in years. 
 
So to Quanta the membership here, if my recollection and understanding of  
the situation is correct, would the membership mind if Quanta made QMAC  
freeware. 
 
To the listening Committee is it possible to do this and if so will  you, or 
do you need a formal written request to the chairman? I can write  one if you 
wish.
 
If it can be made freeware couls it be made downloadable from the SMSQ/E  
sources pages
 
 
Duncan 


   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] QL hardware and stuff

2007-02-21 Thread Matrassyl
 
In a message dated 21/02/2007 23:07:03 GMT Standard Time,  
[EMAIL PROTECTED] writes:

>The  email from Nasta was dated December 2006.

>The etherIDE would be a  good project - the main problem would most  
>definitely be the  lack of a TCP/IP stack and drivers.
>Alas Peter Graf knows how to  implement this


You dont mean "Alas only Peter Graf knows how to implement  this"
 
How about this from the web:
 
 
"uIP is an implementation of the TCP/IP protocol stack intended for small  
8-bit and 16-bit microcontrollers. It provides the necessary protocols for  
Internet communication, with a very small code footprint and RAM requirements - 
 
the uIP _code size_ (http://www.sics.se/~adam/uip/size.html)  is on the  order 
of a few kilobytes and _RAM usage_ (http://www.sics.se/~adam/uip/size.html)  
is on the order of a  few hundred bytes. 
uIP is open source software written in the C programming language and the 
_documentation_ (http://www.sics.se/~adam/uip/documentation.html)  and _source 
code_ (http://www.sics.se/~adam/uip/download.html)  is free to use  and 
distribute for both commercial and non-commercial use as long as proper  credit 
is 
given (the full BSD-style license is _here_ 
(http://www.sics.se/~adam/uip/license.html) ). It has been ported a  wide range 
of 8-bit microcontrollers and is 
used in a large number of embedded  products and projects (see the _Links page_ 
(http://www.sics.se/~adam/uip/links.html)  for a few  examples)."  
As I see it we should try to progress one step at a time. First can the  
etherIDE oroject be built? You could find the answer to that. Second if it 
still  
can be built how much interest is there in aquiring a board and is there a  
trader interested in selling, again you perhaps.Third can uIP be ported or can  
Jon Dent's TCP/IP stack be ported across. His development is stalled but has  
functionalility. I have used it around Christmas  time. The problem I 
experienced is that it does not  connect stably to just any IP service provider 
and 
specifically with the  ones I use at the moment but it may well be fine with 
bespoke hardware.. Jon  is approachable and this might stimulate further 
development. 
Duncan
   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] Comment from the "Traditional" QUANTA Committee

2007-02-21 Thread Matrassyl
In a message dated 19/02/2007 21:32:58 GMT Standard Time,  
[EMAIL PROTECTED] writes:

>chat  line comment like "If QUANTA were to sponsor someone to the tune of 
$100  >US + postage" to produce immediate financial support. 
 
Hi 
 
I doubt anyone did. My comment was addressed to QUANTA ie all the  members of 
that organisation accessible here, that includes the committee  naturally but 
not only. The committee at the end of the day is just that, a  committee not 
QUANTA.
 
I imagine a business case is more likely to succeed with the committee if  
there is a reasonable amount of interest in a project and it is possible to 
seek 
 an indication of that here.
So I hope you wont mind if there are further comments of this sort as we  all 
know they are not a formal approach to the committee.
 
Nice to know the committee is listening.
 
Regards 
 
Duncan
 

 
   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


Re: [ql-users] QL hardware and stuff

2007-02-21 Thread Matrassyl
 
In a message dated 19/02/2007 08:20:15 GMT Standard Time,  
[EMAIL PROTECTED] writes:

>Ah -  I do have an email here from Nasta about the Ultra Gold Card  project:




It is a pity that these projects especially GoldFire have stalled. When  
exactly did you have the email from Nasta. Is his present situation the same? 
Is  
there anything this list can do. I could help with a business case but know  
nothing about programming hardware.
 
He seems to indicate that the "EtherIDE. It incorporates some of the  
features of the Qubide II as well as  the ethernet network hardware from  the 
GF" is 
almost there but only needs funds for the PCB. If this is the case I  am 
willing to help write the business case a suggested by the Quanta  Treasurer.
 
Duncan

   
___
QL-Users Mailing List
http://www.q-v-d.demon.co.uk/smsqe.htm


  1   2   >