Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by rawood11

  1. R

    Cannot find Lahey Fortran license; can with cmd.exe

    Much nicer -- thanks!
  2. R

    Cannot find Lahey Fortran license; can with cmd.exe

    My path: b:\program files\jpsoft\tccle13x64>path PATH=b:\GAMS\win64\24_0;; b:\Program Files\JPSoft\TCCLE13x64; C:\Program Files (x86)\AMD APP\bin\x86_64; C:\Program F iles (x86)\NVIDIA Corporation\PhysX\Common; C:\Windows\system32; C:\Windows; C:\Windows\System32\Wbem; C:\Windows\Sy...
  3. R

    Cannot find Lahey Fortran license; can with cmd.exe

    I can execute lf95 in a cmd.exe file, but in tccle13x64 I get "ERROR -- License error 15: FILE MISSING." Paths are the same in both windows. Any suggestions?
  4. R

    converting from NT to TCC/LE

    Thank you for your patience -- 10 years since I was expert in NT...
  5. R

    converting from NT to TCC/LE

    In NT I could run my cursor across part of the display and copy the highlighted area. How can I do that in TCC/LE?
  6. R

    nested for loop question

    figured out the problem -- /D needed to be removed (show directories only)
  7. R

    ftp problem

    Correct -- thanks.
  8. R

    nested for loop question

    These nested for loops FOR %x IN (@statsdates) ( Echo date= %x for %y in (m:\taqDAILYTRF\%x) ( echo tickers= %y ) ) produces this result: date= 20070601 tickers= m:\taqDAILYTRF\20070601 The first loop works fine -- the second loops fails to list the members of...
  9. R

    ftp problem

    this btm file: iftp ftp://xxxx:[email protected]/taqquote/taqquote2008/taqquote200807/ dir ftp:*8072* copy ftp:*8072* i:\taqquote\taqquote200807\ iftp /c connects properly and the dir commands shows the right results: Directory of...
  10. R

    ftp does not complete

    the following .btm file iftp ftp://r:[email protected]/taqtrade/taqtrade2007/taqtrade200706/ dir "ftp:*" mkdir i:\taqtrades\taqtrade200706\ copy "ftp:*" i:\taqtrades\taqtrade200706\ iftp /c does not fully download the files -- it ends with an 'interrupted' message. what am i doing...
  11. R

    Take Command will not release network drive

    I am using the following commands in a script: net use v: /d net use v: \\192.168.10.50\issm50_m ... commands delay 5 net use v: /d net use v: \\192.168.10.30\issm30_m The second /d command is refused with a message that the drive is being used by another process. I do not have this...
  12. R

    Beginner question with list

    Thank you. How can I get Take Command to default to insert mode on the command line? </[email protected]>
  13. R

    Beginner question with list

    list dates produces 20070601 20070604 20070605 How can I captures these dates and use them elsewhere? I tried list dates > %x ( echo dates= %x ) What am I doing wrong?
  14. R

    script problem with mapped network drive

    ooppss -- it was a permissions issue.
  15. R

    script problem with mapped network drive

    a scripts works with this command: for /r /D j:\taqDAILYNBBO\ %x in (*) ( but not with this: for /r /D y:\taqDAILYNBBO\ %x in (*) ( where y: is a mapped network drive: net use y: \\192.168.10.30\issm30_m What is wrong?
Back
Top