In order for this site to work correctly we need to store a small file (called a cookie) on your computer. Most every site in the world does this, however since the 25th of May 2011, by law we have to get your permission first. Please abandon the forum if you disagree.

Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.

MsgInfo() error

Xailer professional forum in English
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

MsgInfo() error

Mensaje por Ingo JH »

Ignacio, Jose,
the call of MsgInfo(), MsgAlert() or FileOpenDlg() BEFORE a form (i.e.
oMainForm) is created produces errors.
Is this intended?
AFAIK in a minor versions than 1.5 it is possible isn't it?
Regards
Ingo
Avatar de Usuario
jfgimenez
Site Admin
Mensajes: 5718
Registrado: Lun Abr 06, 2015 8:48 pm
Contactar:

MsgInfo() error

Mensaje por jfgimenez »

Ingo,
> the call of MsgInfo(), MsgAlert() or FileOpenDlg() BEFORE a form (i.e.
> oMainForm) is created produces errors.
> Is this intended?
> AFAIK in a minor versions than 1.5 it is possible isn't it?
I've just tested here to call MsgInfo() before creating any form, and it's
working fine:
Procedure Main()
Application:cTitle := "ccccc"
MsgInfo( "Hello" )
TForm2():New( Application ):Show()
Application:Run()
Return
Please, send us an example that fails.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info
José F. Giménez
[Equipo de Xailer / Xailer team]
http://www.xailer.com
http://www.xailer.info
Avatar de Usuario
jfgimenez
Site Admin
Mensajes: 5718
Registrado: Lun Abr 06, 2015 8:48 pm
Contactar:

MsgInfo() error

Mensaje por jfgimenez »

Ingo,
> the call of MsgInfo(), MsgAlert() or FileOpenDlg() BEFORE a form (i.e.
> oMainForm) is created produces errors.
> Is this intended?
> AFAIK in a minor versions than 1.5 it is possible isn't it?
I've just tested here to call MsgInfo() before creating any form, and it's
working fine:
Procedure Main()
Application:cTitle := "ccccc"
MsgInfo( "Hello" )
TForm2():New( Application ):Show()
Application:Run()
Return
Please, send us an example that fails.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info
José F. Giménez
[Equipo de Xailer / Xailer team]
http://www.xailer.com
http://www.xailer.info
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

MsgInfo() error

Mensaje por Ingo JH »

Jose,
here is the sample.
I use the Init() procedure in my projects do do all the necessary checks
before creating the Mainform.
The app was compiled the last time I think with Xailer 1.5 or before. As I
made some changes and recompiled it totally with 1.66 or now with 1.76 it
doesn't work anymore.
Regards
Ingo
> Ingo,
>
>> the call of MsgInfo(), MsgAlert() or FileOpenDlg() BEFORE a form (i.e.
>> oMainForm) is created produces errors.
>> Is this intended?
>> AFAIK in a minor versions than 1.5 it is possible isn't it?
>
> I've just tested here to call MsgInfo() before creating any form, and it's
> working fine:
>
> Procedure Main()
>
> Application:cTitle := "ccccc"
> MsgInfo( "Hello" )
> TForm2():New( Application ):Show()
> Application:Run()
>
> Return
>
>
> Please, send us an example that fails.
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
> http://www.xailer.info
>
--

Attached files tstfolder.zip (1.6 KB)Â
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

MsgInfo() error

Mensaje por Ingo JH »

Jose,
here is the sample.
I use the Init() procedure in my projects do do all the necessary checks
before creating the Mainform.
The app was compiled the last time I think with Xailer 1.5 or before. As I
made some changes and recompiled it totally with 1.66 or now with 1.76 it
doesn't work anymore.
Regards
Ingo
> Ingo,
>
>> the call of MsgInfo(), MsgAlert() or FileOpenDlg() BEFORE a form (i.e.
>> oMainForm) is created produces errors.
>> Is this intended?
>> AFAIK in a minor versions than 1.5 it is possible isn't it?
>
> I've just tested here to call MsgInfo() before creating any form, and it's
> working fine:
>
> Procedure Main()
>
> Application:cTitle := "ccccc"
> MsgInfo( "Hello" )
> TForm2():New( Application ):Show()
> Application:Run()
>
> Return
>
>
> Please, send us an example that fails.
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
> http://www.xailer.info
>
--

Attached files tstfolder.zip (1.6 KB)Â
Stephan Hennekens
Mensajes: 305
Registrado: Jue Nov 30, 2006 12:17 am

MsgInfo() error

Mensaje por Stephan Hennekens »

Ingo,
your sample works fine here. I use Xailer version 1.7.6 on WinXP SP2.
Regards,
Stephan
"Ingo" <support@mandantwin.com> wrote in message
news:4718844e$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Jose,
>
> here is the sample.
> I use the Init() procedure in my projects do do all the necessary checks
> before creating the Mainform.
>
> The app was compiled the last time I think with Xailer 1.5 or before. As I
> made some changes and recompiled it totally with 1.66 or now with 1.76 it
> doesn't work anymore.
>
> Regards
>
> Ingo
>
>> Ingo,
>>
>>> the call of MsgInfo(), MsgAlert() or FileOpenDlg() BEFORE a form (i.e.
>>> oMainForm) is created produces errors.
>>> Is this intended?
>>> AFAIK in a minor versions than 1.5 it is possible isn't it?
>>
>> I've just tested here to call MsgInfo() before creating any form, and
>> it's
>> working fine:
>>
>> Procedure Main()
>>
>> Application:cTitle := "ccccc"
>> MsgInfo( "Hello" )
>> TForm2():New( Application ):Show()
>> Application:Run()
>>
>> Return
>>
>>
>> Please, send us an example that fails.
>>
>> --
>> Regards,
>>
>> Jose F. Gimenez
>> http://www.xailer.com
>> http://www.xailer.info
>>
>
>
Stephan Hennekens
Mensajes: 305
Registrado: Jue Nov 30, 2006 12:17 am

MsgInfo() error

Mensaje por Stephan Hennekens »

Ingo,
your sample works fine here. I use Xailer version 1.7.6 on WinXP SP2.
Regards,
Stephan
"Ingo" <support@mandantwin.com> wrote in message
news:4718844e$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Jose,
>
> here is the sample.
> I use the Init() procedure in my projects do do all the necessary checks
> before creating the Mainform.
>
> The app was compiled the last time I think with Xailer 1.5 or before. As I
> made some changes and recompiled it totally with 1.66 or now with 1.76 it
> doesn't work anymore.
>
> Regards
>
> Ingo
>
>> Ingo,
>>
>>> the call of MsgInfo(), MsgAlert() or FileOpenDlg() BEFORE a form (i.e.
>>> oMainForm) is created produces errors.
>>> Is this intended?
>>> AFAIK in a minor versions than 1.5 it is possible isn't it?
>>
>> I've just tested here to call MsgInfo() before creating any form, and
>> it's
>> working fine:
>>
>> Procedure Main()
>>
>> Application:cTitle := "ccccc"
>> MsgInfo( "Hello" )
>> TForm2():New( Application ):Show()
>> Application:Run()
>>
>> Return
>>
>>
>> Please, send us an example that fails.
>>
>> --
>> Regards,
>>
>> Jose F. Gimenez
>> http://www.xailer.com
>> http://www.xailer.info
>>
>
>
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

MsgInfo() error

Mensaje por Ingo JH »

Stephan,
thank you for the post. Here it doesn't work wether on Vista nor on XP.
Have you the same xHarbour build 0.99.80 downloaded with Xailer 1.76?
Regards
Ingo
******************************* Fehlerprotokoll
*******************************
Datum: 10/19/07
Zeit: 14:00:29
Verfí¼gbarer Speicher: 506820
Akueller Bereich: 1
----------------------------
Compiler-Information -----------------------------
Xailer-Version: Xailer 1.7.6 Version 1.76
Compiler: xHarbour build 0.99.80 Intl. (SimpLex) PCode Version:
9
C/C++-Compiler: Borland C++ 5.5.1
Windows-Plattform: Windows Windows Vista Professional 6.00.6000
---------------- Information í¼ber die interne
Fehlerbehandlung ----------------
Untersystemaufruf: BASE
Systemcode: 1004
Default-Status: .F.
Beschreibung: Class: 'NIL' has no exported method
Operation: CTITLE
Argumente: [ 1] = Typ: U Wert: NIL
Involvierte Dateien:
DOS-Fehlercode: 0
Aufgerufene Programmteile:
CTITLE (0)
MSGALERT (0)
INIT (23)
MAIN (15)
"Stephan Hennekens" <stephan.hennekens@wur.nl> schrieb im Newsbeitrag
news:47188948$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Ingo,
> your sample works fine here. I use Xailer version 1.7.6 on WinXP SP2.
> Regards,
> Stephan
>
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

MsgInfo() error

Mensaje por Ingo JH »

Stephan,
thank you for the post. Here it doesn't work wether on Vista nor on XP.
Have you the same xHarbour build 0.99.80 downloaded with Xailer 1.76?
Regards
Ingo
******************************* Fehlerprotokoll
*******************************
Datum: 10/19/07
Zeit: 14:00:29
Verfí¼gbarer Speicher: 506820
Akueller Bereich: 1
----------------------------
Compiler-Information -----------------------------
Xailer-Version: Xailer 1.7.6 Version 1.76
Compiler: xHarbour build 0.99.80 Intl. (SimpLex) PCode Version:
9
C/C++-Compiler: Borland C++ 5.5.1
Windows-Plattform: Windows Windows Vista Professional 6.00.6000
---------------- Information í¼ber die interne
Fehlerbehandlung ----------------
Untersystemaufruf: BASE
Systemcode: 1004
Default-Status: .F.
Beschreibung: Class: 'NIL' has no exported method
Operation: CTITLE
Argumente: [ 1] = Typ: U Wert: NIL
Involvierte Dateien:
DOS-Fehlercode: 0
Aufgerufene Programmteile:
CTITLE (0)
MSGALERT (0)
INIT (23)
MAIN (15)
"Stephan Hennekens" <stephan.hennekens@wur.nl> schrieb im Newsbeitrag
news:47188948$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Ingo,
> your sample works fine here. I use Xailer version 1.7.6 on WinXP SP2.
> Regards,
> Stephan
>
Avatar de Usuario
jfgimenez
Site Admin
Mensajes: 5718
Registrado: Lun Abr 06, 2015 8:48 pm
Contactar:

MsgInfo() error

Mensaje por jfgimenez »

Ingo,
> here is the sample.
> I use the Init() procedure in my projects do do all the necessary checks
> before creating the Mainform.
>
> The app was compiled the last time I think with Xailer 1.5 or before. As I
> made some changes and recompiled it totally with 1.66 or now with 1.76 it
> doesn't work anymore.
It's working fine here, too. Please, check that you're not linking any old
..obj or library. Check also the IDE's directory configuration; it's possible
that you are pointing to an old libraries directory.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info
José F. Giménez
[Equipo de Xailer / Xailer team]
http://www.xailer.com
http://www.xailer.info
Avatar de Usuario
jfgimenez
Site Admin
Mensajes: 5718
Registrado: Lun Abr 06, 2015 8:48 pm
Contactar:

MsgInfo() error

Mensaje por jfgimenez »

Ingo,
> here is the sample.
> I use the Init() procedure in my projects do do all the necessary checks
> before creating the Mainform.
>
> The app was compiled the last time I think with Xailer 1.5 or before. As I
> made some changes and recompiled it totally with 1.66 or now with 1.76 it
> doesn't work anymore.
It's working fine here, too. Please, check that you're not linking any old
..obj or library. Check also the IDE's directory configuration; it's possible
that you are pointing to an old libraries directory.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info
José F. Giménez
[Equipo de Xailer / Xailer team]
http://www.xailer.com
http://www.xailer.info
Stephan Hennekens
Mensajes: 305
Registrado: Jue Nov 30, 2006 12:17 am

MsgInfo() error

Mensaje por Stephan Hennekens »

Ingo,
yes, I use same xHarbour build.
Regards,
Stephan
"Ingo" <support@mandantwin.com> wrote in message
news:[email=47189d9c@ozsrv2.ozlan.local...]47189d9c@ozsrv2.ozlan.local...[/email]
> Stephan,
> thank you for the post. Here it doesn't work wether on Vista nor on XP.
>
> Have you the same xHarbour build 0.99.80 downloaded with Xailer 1.76?
>
> Regards
>
> Ingo
>
> ******************************* Fehlerprotokoll
> *******************************
>
> Datum: 10/19/07
> Zeit: 14:00:29
> Verfügbarer Speicher: 506820
> Akueller Bereich: 1
>
> ----------------------------
> Compiler-Information -----------------------------
>
> Xailer-Version: Xailer 1.7.6 Version 1.76
> Compiler: xHarbour build 0.99.80 Intl. (SimpLex) PCode Version:
> 9
> C/C++-Compiler: Borland C++ 5.5.1
> Windows-Plattform: Windows Windows Vista Professional 6.00.6000
>
> ---------------- Information über die interne
> Fehlerbehandlung ----------------
>
> Untersystemaufruf: BASE
> Systemcode: 1004
> Default-Status: .F.
> Beschreibung: Class: 'NIL' has no exported method
> Operation: CTITLE
> Argumente: [ 1] = Typ: U Wert: NIL
> Involvierte Dateien:
> DOS-Fehlercode: 0
>
> Aufgerufene Programmteile:
> CTITLE (0)
> MSGALERT (0)
> INIT (23)
> MAIN (15)
>
>
>
> "Stephan Hennekens" <stephan.hennekens@wur.nl> schrieb im Newsbeitrag
> news:47188948$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Ingo,
>> your sample works fine here. I use Xailer version 1.7.6 on WinXP SP2.
>> Regards,
>> Stephan
>>
>
Stephan Hennekens
Mensajes: 305
Registrado: Jue Nov 30, 2006 12:17 am

MsgInfo() error

Mensaje por Stephan Hennekens »

Ingo,
yes, I use same xHarbour build.
Regards,
Stephan
"Ingo" <support@mandantwin.com> wrote in message
news:[email=47189d9c@ozsrv2.ozlan.local...]47189d9c@ozsrv2.ozlan.local...[/email]
> Stephan,
> thank you for the post. Here it doesn't work wether on Vista nor on XP.
>
> Have you the same xHarbour build 0.99.80 downloaded with Xailer 1.76?
>
> Regards
>
> Ingo
>
> ******************************* Fehlerprotokoll
> *******************************
>
> Datum: 10/19/07
> Zeit: 14:00:29
> Verfügbarer Speicher: 506820
> Akueller Bereich: 1
>
> ----------------------------
> Compiler-Information -----------------------------
>
> Xailer-Version: Xailer 1.7.6 Version 1.76
> Compiler: xHarbour build 0.99.80 Intl. (SimpLex) PCode Version:
> 9
> C/C++-Compiler: Borland C++ 5.5.1
> Windows-Plattform: Windows Windows Vista Professional 6.00.6000
>
> ---------------- Information über die interne
> Fehlerbehandlung ----------------
>
> Untersystemaufruf: BASE
> Systemcode: 1004
> Default-Status: .F.
> Beschreibung: Class: 'NIL' has no exported method
> Operation: CTITLE
> Argumente: [ 1] = Typ: U Wert: NIL
> Involvierte Dateien:
> DOS-Fehlercode: 0
>
> Aufgerufene Programmteile:
> CTITLE (0)
> MSGALERT (0)
> INIT (23)
> MAIN (15)
>
>
>
> "Stephan Hennekens" <stephan.hennekens@wur.nl> schrieb im Newsbeitrag
> news:47188948$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Ingo,
>> your sample works fine here. I use Xailer version 1.7.6 on WinXP SP2.
>> Regards,
>> Stephan
>>
>
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

MsgInfo() error

Mensaje por Ingo JH »

Jose,
I deleted all the files from my Xailer directory and the subdirectories
without the Xailer.cfg and installed 1.76 again.
I checked the pathes - all are ok. Irecompiled the sample
The same problem!
First the error message then the msgalertbox and then finish.
The error occurs on different computers with different windows and Xailer
versions.
Regards
Ingo
> Ingo,
>
>> here is the sample.
>> I use the Init() procedure in my projects do do all the necessary checks
>> before creating the Mainform.
>>
>> The app was compiled the last time I think with Xailer 1.5 or before. As
>> I
>> made some changes and recompiled it totally with 1.66 or now with 1.76 it
>> doesn't work anymore.
>
> It's working fine here, too. Please, check that you're not linking any old
> .obj or library. Check also the IDE's directory configuration; it's
> possible that you are pointing to an old libraries directory.
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
> http://www.xailer.info
>
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

MsgInfo() error

Mensaje por Ingo JH »

Jose,
I deleted all the files from my Xailer directory and the subdirectories
without the Xailer.cfg and installed 1.76 again.
I checked the pathes - all are ok. Irecompiled the sample
The same problem!
First the error message then the msgalertbox and then finish.
The error occurs on different computers with different windows and Xailer
versions.
Regards
Ingo
> Ingo,
>
>> here is the sample.
>> I use the Init() procedure in my projects do do all the necessary checks
>> before creating the Mainform.
>>
>> The app was compiled the last time I think with Xailer 1.5 or before. As
>> I
>> made some changes and recompiled it totally with 1.66 or now with 1.76 it
>> doesn't work anymore.
>
> It's working fine here, too. Please, check that you're not linking any old
> .obj or library. Check also the IDE's directory configuration; it's
> possible that you are pointing to an old libraries directory.
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
> http://www.xailer.info
>
Stephan Hennekens
Mensajes: 305
Registrado: Jue Nov 30, 2006 12:17 am

MsgInfo() error

Mensaje por Stephan Hennekens »

Ingo,
If you want I can test your exe file on my computer. Can you send it to my
email address?
Stephan
"Ingo" <support@mandantwin.com> wrote in message
news:4718ac70$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Jose,
>
> I deleted all the files from my Xailer directory and the subdirectories
> without the Xailer.cfg and installed 1.76 again.
> I checked the pathes - all are ok. Irecompiled the sample
> The same problem!
> First the error message then the msgalertbox and then finish.
> The error occurs on different computers with different windows and Xailer
> versions.
>
> Regards
>
> Ingo
>
>> Ingo,
>>
>>> here is the sample.
>>> I use the Init() procedure in my projects do do all the necessary checks
>>> before creating the Mainform.
>>>
>>> The app was compiled the last time I think with Xailer 1.5 or before. As
>>> I
>>> made some changes and recompiled it totally with 1.66 or now with 1.76
>>> it
>>> doesn't work anymore.
>>
>> It's working fine here, too. Please, check that you're not linking any
>> old .obj or library. Check also the IDE's directory configuration; it's
>> possible that you are pointing to an old libraries directory.
>>
>> --
>> Regards,
>>
>> Jose F. Gimenez
>> http://www.xailer.com
>> http://www.xailer.info
>>
>
>
Stephan Hennekens
Mensajes: 305
Registrado: Jue Nov 30, 2006 12:17 am

MsgInfo() error

Mensaje por Stephan Hennekens »

Ingo,
If you want I can test your exe file on my computer. Can you send it to my
email address?
Stephan
"Ingo" <support@mandantwin.com> wrote in message
news:4718ac70$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Jose,
>
> I deleted all the files from my Xailer directory and the subdirectories
> without the Xailer.cfg and installed 1.76 again.
> I checked the pathes - all are ok. Irecompiled the sample
> The same problem!
> First the error message then the msgalertbox and then finish.
> The error occurs on different computers with different windows and Xailer
> versions.
>
> Regards
>
> Ingo
>
>> Ingo,
>>
>>> here is the sample.
>>> I use the Init() procedure in my projects do do all the necessary checks
>>> before creating the Mainform.
>>>
>>> The app was compiled the last time I think with Xailer 1.5 or before. As
>>> I
>>> made some changes and recompiled it totally with 1.66 or now with 1.76
>>> it
>>> doesn't work anymore.
>>
>> It's working fine here, too. Please, check that you're not linking any
>> old .obj or library. Check also the IDE's directory configuration; it's
>> possible that you are pointing to an old libraries directory.
>>
>> --
>> Regards,
>>
>> Jose F. Gimenez
>> http://www.xailer.com
>> http://www.xailer.info
>>
>
>
Mahanimann
Mensajes: 216
Registrado: Dom Sep 23, 2007 11:08 pm

MsgInfo() error

Mensaje por Mahanimann »

> here is the sample.
It's working for me too. I have v1.6.6 and the xHarbour version that goes
with that (from harbour.exe: xHarbour Compiler build 0.99.61 (SimpLex) )
Paal
Mahanimann
Mensajes: 216
Registrado: Dom Sep 23, 2007 11:08 pm

MsgInfo() error

Mensaje por Mahanimann »

> here is the sample.
It's working for me too. I have v1.6.6 and the xHarbour version that goes
with that (from harbour.exe: xHarbour Compiler build 0.99.61 (SimpLex) )
Paal
Mahanimann
Mensajes: 216
Registrado: Dom Sep 23, 2007 11:08 pm

MsgInfo() error

Mensaje por Mahanimann »

> here is the sample.
It also works on a Win 2003 server (datacenter edition) with the Xailer
1.7.5 demo (with xHarbour v0.99.80). The other PC I was testing on is a XP
Pro (mediacenter edition) with all the lastest updates.
Paal
Mahanimann
Mensajes: 216
Registrado: Dom Sep 23, 2007 11:08 pm

MsgInfo() error

Mensaje por Mahanimann »

> here is the sample.
It also works on a Win 2003 server (datacenter edition) with the Xailer
1.7.5 demo (with xHarbour v0.99.80). The other PC I was testing on is a XP
Pro (mediacenter edition) with all the lastest updates.
Paal
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

MsgInfo() error

Mensaje por Ingo JH »

Paal, Stephan,
thank you very much for the reply.
Stephan I just mailed the exe to your private mailbox.
Regards
Ingo
>> here is the sample.
>
> It also works on a Win 2003 server (datacenter edition) with the Xailer
> 1.7.5 demo (with xHarbour v0.99.80). The other PC I was testing on is a
> XP Pro (mediacenter edition) with all the lastest updates.
>
> Paal
>
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

MsgInfo() error

Mensaje por Ingo JH »

Paal, Stephan,
thank you very much for the reply.
Stephan I just mailed the exe to your private mailbox.
Regards
Ingo
>> here is the sample.
>
> It also works on a Win 2003 server (datacenter edition) with the Xailer
> 1.7.5 demo (with xHarbour v0.99.80). The other PC I was testing on is a
> XP Pro (mediacenter edition) with all the lastest updates.
>
> Paal
>
Stephan Hennekens
Mensajes: 305
Registrado: Jue Nov 30, 2006 12:17 am

MsgInfo() error

Mensaje por Stephan Hennekens »

Ingo,
just tested your exe and it crashes! I'll send you my version. I expect that
it will work on your computer.
Regards,
Stephan
"Ingo" <support@mandantwin.com> wrote in message
news:4718ac70$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Jose,
>
> I deleted all the files from my Xailer directory and the subdirectories
> without the Xailer.cfg and installed 1.76 again.
> I checked the pathes - all are ok. Irecompiled the sample
> The same problem!
> First the error message then the msgalertbox and then finish.
> The error occurs on different computers with different windows and Xailer
> versions.
>
> Regards
>
> Ingo
>
>> Ingo,
>>
>>> here is the sample.
>>> I use the Init() procedure in my projects do do all the necessary checks
>>> before creating the Mainform.
>>>
>>> The app was compiled the last time I think with Xailer 1.5 or before. As
>>> I
>>> made some changes and recompiled it totally with 1.66 or now with 1.76
>>> it
>>> doesn't work anymore.
>>
>> It's working fine here, too. Please, check that you're not linking any
>> old .obj or library. Check also the IDE's directory configuration; it's
>> possible that you are pointing to an old libraries directory.
>>
>> --
>> Regards,
>>
>> Jose F. Gimenez
>> http://www.xailer.com
>> http://www.xailer.info
>>
>
>
Stephan Hennekens
Mensajes: 305
Registrado: Jue Nov 30, 2006 12:17 am

MsgInfo() error

Mensaje por Stephan Hennekens »

Ingo,
just tested your exe and it crashes! I'll send you my version. I expect that
it will work on your computer.
Regards,
Stephan
"Ingo" <support@mandantwin.com> wrote in message
news:4718ac70$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Jose,
>
> I deleted all the files from my Xailer directory and the subdirectories
> without the Xailer.cfg and installed 1.76 again.
> I checked the pathes - all are ok. Irecompiled the sample
> The same problem!
> First the error message then the msgalertbox and then finish.
> The error occurs on different computers with different windows and Xailer
> versions.
>
> Regards
>
> Ingo
>
>> Ingo,
>>
>>> here is the sample.
>>> I use the Init() procedure in my projects do do all the necessary checks
>>> before creating the Mainform.
>>>
>>> The app was compiled the last time I think with Xailer 1.5 or before. As
>>> I
>>> made some changes and recompiled it totally with 1.66 or now with 1.76
>>> it
>>> doesn't work anymore.
>>
>> It's working fine here, too. Please, check that you're not linking any
>> old .obj or library. Check also the IDE's directory configuration; it's
>> possible that you are pointing to an old libraries directory.
>>
>> --
>> Regards,
>>
>> Jose F. Gimenez
>> http://www.xailer.com
>> http://www.xailer.info
>>
>
>
Responder