![]() |
sponsored links |
|
|
sponsored links
|
|
|
4
1st April 12:22
External User
Posts: 1
|
Hello Michael,
myfile='myfile.txt' call open(myfile,'READ UTF') do while lines(myfile)>0 line=linein(myfile) ... do whatever ... end should work as well. Also: call open(myfile,'REWRITE UTF') do i=1 to 10 myline=***x call lineout(myfile,myline) end call close myfile i.e. you have to specify the 'UTF' option only when opening (accessing) the file, NOT on every linein/lineout call. No, no registering necessary. Option LOAD always finds the references run-time routines automatically (see section OPTIONS in the online docu). you are welcome. :-)) You have to ftp the 'generated java classes' only as the Java Virtual Machine is binary compatible. This is one of the many advantages using Java !! The whole Rexx2Nrx Run-time package is implemented as (mostly binary) NetRexx classes -- no need to use/learn C! I suggest you contact me offline at my mail address Thomas.Schneider@Donauland.at when you come back from skiing. If you would upgrade & test 'SysCmd' for UNIX systems (I do have no access to UNIX here) you will be more than welcome. unfortunately I have NO idea how many users I already have. Nice to hear that you enjoy it! Enjoy your skiing in Austria. Sölden is a very nice place ... Tom. (http://www.Rexx2Nrx.com) |
|