| Previous | Next |
| ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_LOAD_UNLOAD_PRI_FILE | ERROR_DIFFERENT_PROFILE_RESOURCE_MANAGER_EXIST |
ERROR_MRM_NO_CURRENT_VIEW_ON_THREAD
ERROR_MRM_NO_CURRENT_VIEW_ON_THREAD means code tried to create or use a view-dependent resource context on a thread that has no current CoreWindow view.
Check which thread creates the resource context and whether that code requires a view-bound context at all. Move view-dependent work to a thread with the appropriate UI view or use a view-independent resource context when supported.
What to check
- Run view-dependent resource lookup from the UI thread that owns the relevant window or view.
- For background work, use a context appropriate for non-view resource access rather than assuming a current view exists.
- Check thread dispatching and initialization before treating the error as a missing PRI resource.
Microsoft: Manage resources with MRT Core
Looking for a different code? Search another status or error code.
