not a graphical device -- can not use nomads panels

Started by suriakumar, April 27, 2022, 02:56:25 AM

Previous topic - Next topic

suriakumar

Sir,

I am unable to run my old program developed in Nomads in the new version of pxplus.

It says an error "not a graphical device -- can not use nomads panels"

how do i solve this error ?

J.SURIAKUMAR

EVa

That message comes from *Nomads:

->load"*nomads
->list 26
0026 IF TCB(88)=0 AND TCB(82)<0 THEN PRINT "Not a graphical device -- cannot use Nomads"; END

So if you're not using WindX (tcb(88)=0) and your OS isn't Windows (tcb(82)<0), you're not allowed to run a Nomads application.

suriakumar

Sir,

I am not using windx and i have mouse connected with my laptop.  Also i am getting the error in the following line

PROCESS  "ABC","SUABC.EN"

J.SURIAKUMAR

EVa

When you get that message during a PROCESS, the message comes from the GET_VERSIONS routine in *WINPROC:

14320 LET _X$=MSE
14325 IF MID(_X$,1,1)=$FF$ THEN PRINT "Not a graphical device -- cannot use Nomads panels"; EXIT

Can you enter these commands in PxPlus console mode and show us the output:

PRINT CVS(FIN(0),16)
PRINT HTA(MSE)