Page 1 of 1

Splash Window

Posted: Fri Jun 28, 2013 4:43 pm
by andyglezl
Hola

Buscando en la Red, me encontre esta programa, espero les sirva.
Hagan su logo en un archivo PNG y renombrenlo como Splash.png
---------------------------------------------------------------
Hello

Searching the Internet, I found this program, I hope they serve.
Make your logo in a PNG file and rename it as splash.png

Re: Splash Window

Posted: Fri Jun 28, 2013 8:48 pm
by Amarante
Very good!
Is it possible to display an image out of a window (a borderless image) with HMG?
Dr. Soto with the word ...

Re: Splash Window

Posted: Fri Jun 28, 2013 10:20 pm
by Leopoldo Blancas
Hola andyglezl...

y el *.prg ?????????


Saludos
Polo

Re: Splash Window

Posted: Fri Jun 28, 2013 10:36 pm
by danielmaximiliano
Leopoldo Blancas wrote:Hola andyglezl...

y el *.prg ?????????


Saludos
Polo
aca esta completo para compilar con Minigui.
SPLASHDEMO_2.rar
(460.52 KiB) Downloaded 1204 times

Re: Splash Window

Posted: Sat Jun 29, 2013 12:36 am
by andyglezl
Hola Leopoldo

En este caso solo encontre el ejecutable y maneja solo archivos PNG
Aqui lo interesante es que independiente del lenguaje que uses, puedes
poner tu pantalla de Splash.

Re: Splash Window

Posted: Sat Jun 29, 2013 1:16 am
by srvet_claudio
This is a example of how to create a splash screen with HMG and BT.
The trick is to make NULL the brush that paints the window background

Code: Select all

#define GCL_HBRBACKGROUND  -10
oldBrush := SetClassLong (GetFormHandle("_FormSplash"), GCL_HBRBACKGROUND, NIL)

Re: Splash Window

Posted: Sat Jun 29, 2013 1:35 am
by danielmaximiliano
srvet_claudio wrote:This is a example of how to create a splash screen with HMG and BT.
Gracias Claudio..

Re: Splash Window

Posted: Sat Jun 29, 2013 9:13 am
by esgici
srvet_claudio wrote:This is a example of how to create a splash screen with HMG and BT.
Thanks Dr. :)