So do you have a function in your code like:
Public Overridable
Function SaveAVI(use SaveDialog as Short, fileName as String) As Short
If you do then:
-
SaveDialog
is not a good name for the parameter. System.Windows.Forms namespace has such a class named like that.
- the word
use
is wrong before the parameter name. Refer to:
http://msdn.microsoft.com/en-us/library/sect4ck6(v=VS.100).aspx[
^]