I have a database in Notes which is used as a homepage for all users.
It consists of a frameset which has 4 frames (header, footer and 2 columns).
The frames all show forms. On one of the forms is an outline. The entries in the outline all use this code when clicked (except the DBNo is different).
@Command([RefreshWindow]);
FIELD layer:=“”;
@Command([RefreshHideFormulas]);
DBNo=“xxx”;
File:=@DbLookup(“Notes”:“”;“”; “(db)” ; @Trim(DBNo) ; 3 ;[FailSilent]);
Server:= @DbLookup(“Notes”:“”;“”; “(db)” ; @Trim(DBNo) ; 2 ;[FailSilent]);
@If(IsOnline=“”;Server:=“”;“”);
@If(@IsError(@DbExists(Server:File)) | !@DbExists(Server:File);@Do(@Prompt([Ok];“No database”;“You do not have this database, please contact helpdesk”) ; @Command([RefreshWindow]));@Command([FileOpenDatabase];Server:File;“”;“”;“”;“”))
What this code is basically doing is checking to see if a database is available, if it is, then it opens it, if it’s not, the user gets a msgbox stating so.
However, what has started happening on some (not all) clients, running 6.5.5 or 7.0.2 is that after the msgbox, there is an error in the status bar “Unable to load all frameset content. Opening database without frameset”.
Notes does not stop responding, but the database does until I do something radical like change the client location at which point it comes back to life.
This occurs whether the database is local or on a server.
Any ideas why this could be doing it? Nothing disappears on any of the frames…
Thanks