I'm programmatically creating a table in a geodatabase and am trying to force ArcCatalog to refresh the display to show the new table. I've tried the following which does not work:
Dim gxApp As IGxApplication = TryCast(m_application, IGxApplication)
... 'Create table here
'Then trying to force tree view to show new table...
gxApp.Refresh(0)
'And trying to force view to display...
gxApp.View.Refresh()
Missing something simple here.
