Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The type specified in the error message has no property of that name. The example below demonstrates a type with an unsupported field name:
Form1.Aluminum = True
form1.Aluminum = True;
To correct this error
Use a property that is supported by that type. In reference to the above example, code similar to the following is appropriate:
Dim mainForm as new Form mainForm.AllowDrop= True
Form mainForm = new Form(); mainForm.AllowDrop= true;