Page 1 of 1

MessageBox

Posted: Wed Jul 25, 2018 10:45 am
by SALINETAS24
Hola, estoy buscando en las fuentes la función MessageBox y no encuentro donde se define.
Alguien conoce en que parte se define/crea esta función.
Gracias

Re: MessageBox

Posted: Wed Jul 25, 2018 11:01 am
by SALINETAS24
Ya lo tengo. Gracias

Re: MessageBox

Posted: Wed Jul 25, 2018 12:19 pm
by ROBROS
viewtopic.php?f=24&t=1615&p=53947&hilit ... Box#p53947

Look at this, It seems MsgBox needs no definition.

Robert

Re: MessageBox

Posted: Wed Jul 25, 2018 12:22 pm
by ROBROS
Another sample from VivaClipper:
#include "hmg.ch" FUNCTION Main() DEFINE WINDOW Form_1 ; AT 90,90 ; WIDTH 400 ; HEIGHT 300 ; TITLE "Finestra di Giovanni" ; MAIN END WINDOW @ 50, 50 BUTTON button ; PARENT Form_1 ; CAPTION "Press for message" ; WIDTH 300 ; HEIGHT 50 ; ONCLICK MsgBox( "attention!!! " , "Informazione" ) Form_1.Activate RETURN NIL

Re: MessageBox

Posted: Wed Jul 25, 2018 12:24 pm
by ROBROS
I read your answer after I had submitted my post. Sorry.