Good day,
I have a problem where I need the user to open an application and if he is in group A the current application continues to open, but if he is in group B it opens another application and close the tab already open from the first application.
I have 2 problems;
-
the tab stays opened, then 2 application similar are opened
-
the frame does not open in the application B
We need to split the application in two as it has grown too big + 64 gig.
while opening the db A
Script Database Script PostOpen
.
.
.
If GrpInfo = “B section” Then
'open db Bsection
Call workspace.OpenDatabase( db.Server, docProfil.Getitemvalue("RepApplication")(0) & docProfil.Getitemvalue("NameApplicationB")(0), "1.0 main","", False, true )
Call db.Close
’ else
’ we continu opening this db A
End If
thanks
Alena