This error is really annoying bug in VS2015 when you barely touch your code, and the VS crashes all the time.
Thanks Joris, there is a workaround in VS Options:
Thanks Joris, there is a workaround in VS Options:
2020 release wave 2 Installed product version : 10.0.14 (10.0.605.20015) Installed platform version : Update38 (7.0.5778.41504)
public boolean validateField(FieldId _fieldIdToCheck) { boolean ret; ret = super(_fieldIdToCheck); switch(_fieldIdToCheck) { case fieldNum(MySalesLine, Discount): if(this.Discount <= 10) { ret = true; } else { ret = checkFailed("Discount cannot be more than 10%"); } break; } return ret;
[Form] [DataSource] [DataField] public boolean validate() [Table] public boolean validateField(FieldId _fieldIdToCheck)