| Summary: | Error in tutorial | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Bob NIcholson <bob> |
| Component: | EDT | Assignee: | Ben Margolis <margolis> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | margolis, svihovec |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | |||
Yes, a mistake. ServiceLib does not and will not have a delegate of that name. is now correct. |
EDT:Tutorial: RUI With DataBase Lesson 8 Next, create the function that adds data. Update the addRow function so that the code is as follows: function addRow(event Event in) call dbService.addPayment(new paymentRec) returning to recordAdded onException serviceLib.serviceExceptionHandler; end I think this should be "serviceExeptionHandler" instead of "serviceLib.serviceExceptionHandler" function addRow(event Event in) call dbService.addPayment(new paymentRec) returning to recordAdded onException serviceExceptionHandler; end