ここでちょっと発行・インポートについての注意事項についてお伝えします。発行したプログラムをインポートすると変更が加えられていることが分かりました。この連載で発行したプログラムも File.ReadLine() を使っている行がコメントアウトされていました。
例えば、WordList v0.5 (プログラムID XLQ213)の場合、
14 ‘ The following line could be harmful and has been automatically commented.
15 ‘ line = File.ReadLine(filename, lno)
と
37 ‘ The following line could be harmful and has been automatically commented.
38 ‘ line = File.ReadLine(filename, lno)
がそれに該当します。このような行がある場合は、コメントを外し、
line = FileReadLine(filename, lno)
としてから実行してください。
(つづく)