Hi,The following command MicroFour.StrataFrame.Data.ConnectionManager.ShowAvailableConnectionStrings() will show the SF Application Database Connections, it would be nice and consistent to have a ViewSecurityKey property we could set before calling the ShowAvailableConnectionStrings() and let the security do its stuff.
Right now I have to add code to enforce security, and would be much better that this form acts like the MDDeployMain which you can set the ViewSecurityKey via code like this:
'-- Create the deployment form
loDeploy =
New MicroFour.StrataFrame.DBEngine.Deployment.MDDeployMain(lcPath & "FixTrack_DD.pkg", "FixTrack")loDeploy.ViewSecurityKey =
"ImportDatabase"loDeploy.ShowDialog()
loDeploy.Close()
loDeploy.Dispose()