- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I Have a piece of program in which I open a cloud model, I have 2 projects on the https://docs.b360.autodesk.com server, they open like a charme
A new project which we are starting is on https://docs.b360.eu.autodesk.com (europe) server. when I use the same software I get an error code 5 - the central model is missing.
Does anybody recognize this problem ?
Try
Dim mpcloud As ModelPath = ModelPathUtils.ConvertCloudGUIDsToCloudPath(ProjectGUID, ModelGUID)
Dim DOfcc As New DefaultOpenFromCloudCallback
ActiveUIDoc = app.OpenAndActivateDocument(mpcloud, oo, False, DOfcc)
ActiveDoc = ActiveUIDoc.Document
Catch
LogForm.AddLog("Could not open cloud model. " & Err.Number & " - " & Err.Description)
Err.Clear()
End Try
Solved! Go to Solution.