If the form is shown, you might be able to use LockWindowUpdate API in the following manner
LockWindowUpdate Grid.hWnd
'do loading here
LockWindowUpdate 0
Another method would be to hide the grid that you are loading and show a dummy grid along with a progress bar...
Good Luck