A multiline CONFIRM dialog box:

c$ = "This operation will reset defaults" + chr$(13)

c$ = c$ + "All changes will be lost." + chr$(13)

c$ = c$ + "This operation is not reversable." + chr$(13)

c$ = c$ + "Continue anyway?"

confirm c$; answer$

