MessageBox

HMG en Español

Moderator: Rathinagiri

Post Reply
User avatar
SALINETAS24
Posts: 667
Joined: Tue Feb 27, 2018 3:06 am
DBs Used: DBF
Contact:

MessageBox

Post 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
Como dijo el gran pensador Hommer Simpson..., - En este mundo solo hay 3 tipos de personas, los que saben contar y los que no. :shock:
User avatar
SALINETAS24
Posts: 667
Joined: Tue Feb 27, 2018 3:06 am
DBs Used: DBF
Contact:

Re: MessageBox

Post by SALINETAS24 »

Ya lo tengo. Gracias
Como dijo el gran pensador Hommer Simpson..., - En este mundo solo hay 3 tipos de personas, los que saben contar y los que no. :shock:
ROBROS
Posts: 256
Joined: Thu May 25, 2017 6:30 pm
DBs Used: DBF
Location: D 83071 Stephanskirchen

Re: MessageBox

Post by ROBROS »

viewtopic.php?f=24&t=1615&p=53947&hilit ... Box#p53947

Look at this, It seems MsgBox needs no definition.

Robert
ROBROS
Posts: 256
Joined: Thu May 25, 2017 6:30 pm
DBs Used: DBF
Location: D 83071 Stephanskirchen

Re: MessageBox

Post 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
ROBROS
Posts: 256
Joined: Thu May 25, 2017 6:30 pm
DBs Used: DBF
Location: D 83071 Stephanskirchen

Re: MessageBox

Post by ROBROS »

I read your answer after I had submitted my post. Sorry.
Post Reply