We have unique problem - we have two forms with private data sessions
- form A creates a unique file name using sys(3) and sys(2015) - this name is used for an index file.
uniquefilename = SUBSTR(SYS(3), 4, 4) + SUBSTR(SYS(2015), 7, 4)
form b has creates a cursor in the load event and also has a grid.
when both forms are open and we attempt to close form A, we get a file in use error when trying to delete the uniquefilename - all files have been closed using close data all
this only happens in combination with these forms - other forms can be open and closed no problem
any ideas?
- form A creates a unique file name using sys(3) and sys(2015) - this name is used for an index file.
uniquefilename = SUBSTR(SYS(3), 4, 4) + SUBSTR(SYS(2015), 7, 4)
form b has creates a cursor in the load event and also has a grid.
when both forms are open and we attempt to close form A, we get a file in use error when trying to delete the uniquefilename - all files have been closed using close data all
this only happens in combination with these forms - other forms can be open and closed no problem
any ideas?