|
|
|
|
|
- Reason
- Correction
- Example
- Declaring a virtual method
Error 201: The method already has a virtual attribute
You are declaring a virtual method: the "VIRTUAL" keyword was used twice during the declaration of the virtual method. Reminder: By default, a method is not virtual when it is created. Delete the extra "VIRTUAL" keyword. Declaring a virtual method Code triggering the error VIRTUAL PRIVATE VIRTUAL procedure Calculate_StockMarket()
Possible correction Delete the extra VIRTUAL keyword. VIRTUAL PRIVATE procedure Calculate_StockMarket()
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|