<html><body><div style="font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000"><div>When using output to or error to</div><div><br data-mce-bogus="1"></div><div>It seems that it only changes the destination for print "this string and error "this string"</div><div><br data-mce-bogus="1"></div><div>but when using #print file.out, "this string" or print #file.err, "this string" the output is not redirected</div><div><br data-mce-bogus="1"></div><div>Is this deliberate?</div><div><br data-mce-bogus="1"></div><div>example:</div><div><br data-mce-bogus="1"></div><div><div>Public Sub Main()</div><div>  Dim mfile As File</div><div>  mfile = Open Temp() For Write Create</div><div>  Output To mfile</div><div>  Print "hello standard"</div><div>  Print #File.out, "Hello file.out"</div><div>End</div></div><div><br data-mce-bogus="1"></div><div>Always put the second print to the console, and the first to the file.</div><div>The same happens for Error to</div><div>Error "Hello standard"</div><div>print #file.err,"Hello file.err"</div><div><br data-mce-bogus="1"></div><div><br data-mce-bogus="1"></div><div data-marker="__SIG_PRE__">Thank You<br>Brian G</div></div></body></html>