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").
-
- VIP Member
- Posts: 458
- Joined: 5 Nov 2000 0:01
Re: e150 Syntax error vpiCommonDialogs::note
clauses
onMensajesNota1(_Source, _MenuTag) :- % <== you had '.' here instead of ":-"
vpiCommonDialogs::note("Esto es un Mensaje").
onMensajesNota1(_Source, _MenuTag) :- % <== you had '.' here instead of ":-"
vpiCommonDialogs::note("Esto es un Mensaje").
-
- Posts: 3
- Joined: 17 May 2020 6:12
Re: e150 Syntax error vpiCommonDialogs::note
Thank you so much