Is there any way to stop Window-Resize Animation for my Form only ?

I'm changing the Form from vbMaximized/vbNormal mode to fullscreen-mode. The animation looks bad.

VB Code:
  1. Private Sub cmdFullScreen_Click()
  2.  
  3.     If IsFullScreen Then 'change to Maximized
  4.    
  5.         RemoveTitlebar Me.hwnd ' This Sub removes titlebar at runtime
  6.         Me.WindowState = vbMaximized
  7.         IsFullScreen = False
  8.        
  9.     Else
  10.    
  11.         Titlebar False, Me.hwnd
  12.         Me.WindowState = vbNormal ' A maximized/Minimized form
  13.         '                           Can't be moved
  14.         Me.Move 0, 0, Screen.Width, Screen.Height
  15.         IsFullScreen = True
  16.    
  17.     End If
  18.  
  19. End Sub