fbizzell
Programmer
- Jul 3, 2000
- 217
I have a small clipper 5.2 program that works fine under win 98 but will not work on NT workstation. I get an error bad command or file name on the following line:
!rasdial95 access xxxxxx zzzzzz
(the x's are my isp and the zzzzz are my password)
Here is the complete program:
*ISP.PRG
#include "inkey.ch"
DO WHILE .T.
CLEAR
do while .t.
@ 5,10 say "Connecting to internet"
@ 7,10
!rasdial95.exe access xxxxx zzzzz
@ 5,0 clear
@ 5,10 say "Connected...."
inkey(3600)
@ 5,10 say "Disconnecting from internet"
@ 7,10
! rasdial95 /disconnect
@ 5,0 clear
@ 5,10 say "Disconnected...."
INKEY(300)
LOOP
ENDDO
ENDDO
Any ideas?
!rasdial95 access xxxxxx zzzzzz
(the x's are my isp and the zzzzz are my password)
Here is the complete program:
*ISP.PRG
#include "inkey.ch"
DO WHILE .T.
CLEAR
do while .t.
@ 5,10 say "Connecting to internet"
@ 7,10
!rasdial95.exe access xxxxx zzzzz
@ 5,0 clear
@ 5,10 say "Connected...."
inkey(3600)
@ 5,10 say "Disconnecting from internet"
@ 7,10
! rasdial95 /disconnect
@ 5,0 clear
@ 5,10 say "Disconnected...."
INKEY(300)
LOOP
ENDDO
ENDDO
Any ideas?