Can I set in Lotus view from computed database?For egzample: I have 20 databases which name are different with number: base1.nsf, base2.nsf,… The name of views in all bases are the same, but they store another data. Can I in form set view from computed databases? How if it’s possible?
Subject: View&Database
If I understand you, this should be fairly straight-forward in LS or @Formulas. Use something like:
If …condition… then
myDB = “base1.nsf”
elseif …cond2… then
myDB = “base2.nsf”
…
Call ws.OpenDatabase( “server1”, myDB, …
or you could do something like:
If …condition… then
myCnt$ = “14”
…
myDBName = myDB & myCnt$
…