Evidently, my report from Monday was based on the incorrect assumption that
I had installed Version 12 without interference. I now think there were
problems
with the overwriting of the previous version.
The 18 Mb version fails to open the file for reading a path with a blank
in it.
On the other hand it will open a file for writing a path with a blank in it.
That is, on the 18 Mb version of Icon, Capsv.icn fails, but Capsv1.icn
works.
I assume this is because the read path in capsv1.icn has no embedded blanks.
Version 12 fails on both programs, saying that there is an exception
c0000005
at offset 00044164.: wiconx has stopped working.
For both versions above, I removed the version of unicon previously
installed,
restarted the machine, installed the new version of unicon, compiled and
attempted
to execute the program, closed and exited the IDE, restarted the IDE,
and compiled
and attempted to execute the other.
The OS for this is Windows 7 Professional (64).
I also noticed that though .icn files have Unicon icons attached, the
Windows Unicon
icon is NOT a Unicon icon.
Hope this helps.
Ed Feustel
procedure main ()
local infile, in, out, outfile, line
infile := "c:\\Users\\Edward Feustel\\My Documents\\Deuce.csv"
if not ( in := open(infile,"r")) then write("input fails to open")
outfile := "c:\\Users\\Edward Feustel\\My Documents\\Deuce1.csv"
out := open(outfile, "wa")
while line := read(in) do write (out, line)
close(out)
close(in)
end
procedure main ()
local infile, in, out, outfile, line
infile := "c:\\Deuce.csv"
if not ( in := open(infile,"r")) then write("input fails to open")
outfile := "c:\\Users\\Edward Feustel\\My Documents\\Deuce1.csv"
out := open(outfile, "wa")
while line := read(in) do write (out, line)
close(out)
close(in)
end
------------------------------------------------------------------------------
10 Tips for Better Web Security
Learn 10 ways to better secure your business today. Topics covered include:
Web security, SSL, hacker attacks & Denial of Service (DoS), private keys,
security Microsoft Exchange, secure Instant Messaging, and much more.
http://www.accelacomm.com/jaw/sfnl/114/51426210/
_______________________________________________
Unicon-group mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/unicon-group