Page 1 of 1

e150 Syntax error vpiCommonDialogs::note

Posted: 17 May 2020 6:59
by alonso
Good night, I am using Visual Prolog 9, i wonder if anyone could help me.

I have a error en in the line

clauses
onMensajesNota1(_Source, _MenuTag).
vpiCommonDialogs::note("Esto es un Mensaje").

Re: e150 Syntax error vpiCommonDialogs::note

Posted: 17 May 2020 13:17
by Harrison Pratt
clauses
onMensajesNota1(_Source, _MenuTag) :- % <== you had '.' here instead of ":-"
vpiCommonDialogs::note("Esto es un Mensaje").

Re: e150 Syntax error vpiCommonDialogs::note

Posted: 17 May 2020 17:31
by alonso
Thank you so much