Under VB when I call a control in a dialog box (TestD)for example : TestD.OneTexBox , it calls in fact the default method of the TextBox class which is Value. Is there a way to avoid this please ?
Printable View
Under VB when I call a control in a dialog box (TestD)for example : TestD.OneTexBox , it calls in fact the default method of the TextBox class which is Value. Is there a way to avoid this please ?
There is no way to prevent VB from using default properties by other than specifying exactly what you want (Leave it blank and VB will supply the default). In VB.Net (VB 7), default values are no longer accepted.
John G