Bug Report: Test Window

ScottMattes

Member³
I am running a Test Window that I loaded from a file (name=test1.tst). I made some changes and started it running. It takes 30 minutes and I want to be sure to save the changes, so I do Save As and name it 'test2.tst' and get the msg that I can't because the file is in use by someone else. I then tried saving as 'test3.tst' and got the same msg.

Interestingly, though baffling, I tried saving to 'test2.tst' again and it worked.
 
Kind of, but not always. :confused:

declare

cursor c_all_objs is
select * from all_objs;

all_objs_rcd c_all_objs%rowtype;

begin
open c_all_objs;

loop
fetch c_all_objs into all_objs_rcd;
exit when c_all_objs%notfound;
end loop;

close c_all_objs;

end;

Before executing this save it as t1.

Now execute and while it is working do File / Save As and call it t2. Sometimes I get the error.

If I do get the error, it doesn't seem to happen if I follow up with a File / Save (because the filename displayed on the Window caption shows the File / Save As that I had entered.
 
Back
Top