Hi... Very strange situation...
I use the machine on my job for test GLB... ALLWAYS works fine... today I have an error when MY app exits (no GLB IDE).
I tried with old GLB EXE's (old test compiled) and same result.
:blink:
I no remember any recent update to OS from MS...
I use a Vista Home 32 bits well ... today I get error ¿?¿?¿?¿?¿?
GLB 8.200
When I get home tonight I'll try to compile on my XP SP2....
I paste the text from Windows:
Firma con problemas:
Nombre del evento de problema: APPCRASH
Nombre de la aplicación: LitioPixel.exe
Versión de la aplicación: 0.0.0.0
Marca de tiempo de la aplicación: 4d49375b
Nombre del módulo con errores: LitioPixel.exe
Versión del módulo con errores: 0.0.0.0
Marca de tiempo del módulo con errores: 4d49375b
Código de excepción: c0000005
Desplazamiento de excepción: 00078edf
Versión del sistema operativo: 6.0.6002.2.2.0.768.2
Id. de configuración regional: 3082
Información adicional 1: fd00
Información adicional 2: ea6f5fe8924aaa756324d57f87834160
Información adicional 3: fd00
Información adicional 4: ea6f5fe8924aaa756324d57f87834160
TIA, Hark0
A friend Javiero has been test on his machine.... Windows 7 64 bit.
NO PROBLEM...
Maybe are my computer.... :rant:
:blink:
Any GLBasic updates applied ?
NOPE!!!
Are problem of my OS yes or yes.... GLB 8.200 no updated...
But... I no remember system upgrade ¿¿¿???
I just hope that in my home machines not reproduce the error ...
F*ck Windoz :rant:
Searching on Boss Google i found the code:
"ea6f5fe8924aaa756324d57f87834160"
are related to Internet Conection... some people have same APPCRASH with IE 7, or Firefox.... in my case crash on compiled GLBasic apps.... I try a reset of the machine....
:puke:
Is your app trying to use the internet in some way? Online high scores etc?
And no recently installed codecs ?
Do you try to run the debug version from outside the editor?
Hi guys...
I not updated the Win Vista (updates configured for down and question for install)... I no remember recent update on my system.
In the machine of my friend Javiero (Windows 7 64)... the EXE produced by GLB works perfectly (same me) and exit correctly (i have error described).
The problem is in the OS... other old EXE's maked by GLB with no errors .... today exit with same fault.
My AV (nod32) are updated correctly too...
And about connection of my app... no... my app NO connect to inet.
:rant:
Tried in debug mode... works OK!!!
I paste the output win:
_______________________________________
*** Configuration: WIN32 ***
precompiling:
GPC - GLBasic Precompiler V.8.142 SN:707448ab - 3D, NET
Wordcount:936 commands
compiling:
linking:
success
_______________________________________
*** Finished ***
Elapsed: 6.5 sec. Time: 18:42
Build: 1 succeeded.
Start debug session.
_______________________________________
Injection started
:blink:
Try it in release mode and outside the IDE now...
I came home thinking about the problem convinced that the cause was a computer at work. I uploaded a version of the project and worked well. Loading the latest version I have again run into the bug. Finally I found where is the cause. I think I used either the HIBERNATE function otherwise someone correct me.
SUB GLB_ON_PAUSE:
MAQUINA_PAUSADA=1
HIBERNATE <- CAUSE OF ERROR AT EXIT!
ENDSUB
:blink:
Why CRASH when exit (no pause) app?
:O
Ah - what you can use in ON_PAUSE is limited. There was a post about it somewhere, but I suspect HIBERNATE isn't allowed.
Quote from: MrTAToad on 2011-Feb-03
Ah - what you can use in ON_PAUSE is limited. There was a post about it somewhere, but I suspect HIBERNATE isn't allowed.
Ok. I deleted the function... I think this is "null" command when the app no have focus... right?
Hibernate is like:
WHILE TRUE
IF ANYMOUSE() OR ANYKEY() THEN BREAK
SLEEP 15
WEND
Quote from: Kitty Hello on 2011-Feb-03
Hibernate is like:
WHILE TRUE
IF ANYMOUSE() OR ANYKEY() THEN BREAK
SLEEP 15
WEND
Thanks!
I think its not necesary when app lost focus :)