04-07-2023 03:31 PM - last edited on 05-02-2023 10:05 AM by JackLacava
OS Version 7.3.3
My files are stored in a Named Workspace, "Finance WS"
I want to open a file stored in Finance WS. How do I get the workspace guid to accces the file?
Dim guidWs as Guid = ???
BRApi.Dashboards.FileResources.GetFileResource(si, False, guidWs, strFilename)
Solved! Go to Solution.
04-10-2023 12:12 PM
Dim gValue As Guid = BRApi.Dashboards.Workspaces.GetWorkspaceIDFromName(si, isSystemLevel, workspaceName)
04-10-2023 12:12 PM
Dim gValue As Guid = BRApi.Dashboards.Workspaces.GetWorkspaceIDFromName(si, isSystemLevel, workspaceName)
04-10-2023 12:27 PM - edited 04-10-2023 12:30 PM
Thanks Eric.
Could I be missing an import?
04-10-2023 12:36 PM
It doesn't appear you are. I am on v7.4.1
04-10-2023 12:45 PM - edited 04-13-2023 08:54 AM
7.3.3 here, didn't know 7.4.1 was GA. I see it in the MarketPlace. thanks for the help.