What it does
CreateNotification writes a value: it creates rather than reads. It takes szDateTime (a string), szMessage (a string) and szData (a string), and returns nothing.
Syntax
CreateNotification(szDateTime string, szMessage string, szData string)Parameters
| Name | Type |
|---|---|
| szDateTime | string |
| szMessage | string |
| szData | string |
Every form returns
nothing
Example · generated
CreateNotification("value", "hello", "value")DO Sync()LOOPCreateNotification is called with values of the types its signature asks for. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.