Hi Gents
TFORM3:OICON(415)
Error BASE/1004 Message not found: TPANEL:GETICON
Arguments: ()
I have Form1, it's the base app form
I then have ::oPanel1. I try and do this
WITH OBJECT ::oForm := TForm3():New(::oPanel1)
:Create()
END
I need to display different forms in the Panel depending n what is selected
somewhere else
Cheers
Nick
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.
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.
Why do I get this error
-
- Mensajes: 328
- Registrado: Mar Nov 21, 2006 2:10 am
Why do I get this error
Nick,
assign the property TForm3:lParentIcon := .F. because the parent ::oPanel1
has no icon
Regards
Ingo
"Nick Hilder" <nick_Nospam#$%@capsol.com%NOSPAM%.au> schrieb im Newsbeitrag
news:[email=47fae374@ozsrv2.ozlan.local...]47fae374@ozsrv2.ozlan.local...[/email]
> Hi Gents
>
> TFORM3:OICON(415)
> Error BASE/1004 Message not found: TPANEL:GETICON
> Arguments: ()
>
>
> I have Form1, it's the base app form
>
> I then have ::oPanel1. I try and do this
>
> WITH OBJECT ::oForm := TForm3():New(::oPanel1)
> :Create()
> END
>
> I need to display different forms in the Panel depending n what is
> selected somewhere else
>
> Cheers
>
> Nick
>
>
assign the property TForm3:lParentIcon := .F. because the parent ::oPanel1
has no icon
Regards
Ingo
"Nick Hilder" <nick_Nospam#$%@capsol.com%NOSPAM%.au> schrieb im Newsbeitrag
news:[email=47fae374@ozsrv2.ozlan.local...]47fae374@ozsrv2.ozlan.local...[/email]
> Hi Gents
>
> TFORM3:OICON(415)
> Error BASE/1004 Message not found: TPANEL:GETICON
> Arguments: ()
>
>
> I have Form1, it's the base app form
>
> I then have ::oPanel1. I try and do this
>
> WITH OBJECT ::oForm := TForm3():New(::oPanel1)
> :Create()
> END
>
> I need to display different forms in the Panel depending n what is
> selected somewhere else
>
> Cheers
>
> Nick
>
>
Why do I get this error
Nick,
assign the property TForm3:lParentIcon := .F. because the parent ::oPanel1
has no icon
Regards
Ingo
"Nick Hilder" <nick_Nospam#$%@capsol.com%NOSPAM%.au> schrieb im Newsbeitrag
news:[email=47fae374@ozsrv2.ozlan.local...]47fae374@ozsrv2.ozlan.local...[/email]
> Hi Gents
>
> TFORM3:OICON(415)
> Error BASE/1004 Message not found: TPANEL:GETICON
> Arguments: ()
>
>
> I have Form1, it's the base app form
>
> I then have ::oPanel1. I try and do this
>
> WITH OBJECT ::oForm := TForm3():New(::oPanel1)
> :Create()
> END
>
> I need to display different forms in the Panel depending n what is
> selected somewhere else
>
> Cheers
>
> Nick
>
>
assign the property TForm3:lParentIcon := .F. because the parent ::oPanel1
has no icon
Regards
Ingo
"Nick Hilder" <nick_Nospam#$%@capsol.com%NOSPAM%.au> schrieb im Newsbeitrag
news:[email=47fae374@ozsrv2.ozlan.local...]47fae374@ozsrv2.ozlan.local...[/email]
> Hi Gents
>
> TFORM3:OICON(415)
> Error BASE/1004 Message not found: TPANEL:GETICON
> Arguments: ()
>
>
> I have Form1, it's the base app form
>
> I then have ::oPanel1. I try and do this
>
> WITH OBJECT ::oForm := TForm3():New(::oPanel1)
> :Create()
> END
>
> I need to display different forms in the Panel depending n what is
> selected somewhere else
>
> Cheers
>
> Nick
>
>
Why do I get this error
Nick,
> I have Form1, it's the base app form
>
> I then have ::oPanel1. I try and do this
>
> WITH OBJECT ::oForm := TForm3():New(::oPanel1)
^^^^^^
The 'oParent' of any form has to be another form or Application, not a
control.
> :Create()
> END
>
> I need to display different forms in the Panel depending n what is
> selected somewhere else
Try using the TPages control. You can create any number of pages with
controls on it and make visible one at a time.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info
> I have Form1, it's the base app form
>
> I then have ::oPanel1. I try and do this
>
> WITH OBJECT ::oForm := TForm3():New(::oPanel1)
^^^^^^
The 'oParent' of any form has to be another form or Application, not a
control.
> :Create()
> END
>
> I need to display different forms in the Panel depending n what is
> selected somewhere else
Try using the TPages control. You can create any number of pages with
controls on it and make visible one at a time.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info
Why do I get this error
Nick,
> I have Form1, it's the base app form
>
> I then have ::oPanel1. I try and do this
>
> WITH OBJECT ::oForm := TForm3():New(::oPanel1)
^^^^^^
The 'oParent' of any form has to be another form or Application, not a
control.
> :Create()
> END
>
> I need to display different forms in the Panel depending n what is
> selected somewhere else
Try using the TPages control. You can create any number of pages with
controls on it and make visible one at a time.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info
> I have Form1, it's the base app form
>
> I then have ::oPanel1. I try and do this
>
> WITH OBJECT ::oForm := TForm3():New(::oPanel1)
^^^^^^
The 'oParent' of any form has to be another form or Application, not a
control.
> :Create()
> END
>
> I need to display different forms in the Panel depending n what is
> selected somewhere else
Try using the TPages control. You can create any number of pages with
controls on it and make visible one at a time.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info
-
- Mensajes: 328
- Registrado: Mar Nov 21, 2006 2:10 am
Why do I get this error
Hi Jose/Ingo
Thanks for that
Nick
"Jose F. Gimenez" <jfgimenez@wanadoo.es> wrote in message
news:[email=47fba2ea@ozsrv2.ozlan.local...]47fba2ea@ozsrv2.ozlan.local...[/email]
> Nick,
>
>> I have Form1, it's the base app form
>>
>> I then have ::oPanel1. I try and do this
>>
>> WITH OBJECT ::oForm := TForm3():New(::oPanel1)
>
>
> ^^^^^^
> The 'oParent' of any form has to be another form or Application, not a
> control.
>
>
>> :Create()
>> END
>>
>> I need to display different forms in the Panel depending n what is
>> selected somewhere else
>
> Try using the TPages control. You can create any number of pages with
> controls on it and make visible one at a time.
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
> http://www.xailer.info
>
Thanks for that
Nick
"Jose F. Gimenez" <jfgimenez@wanadoo.es> wrote in message
news:[email=47fba2ea@ozsrv2.ozlan.local...]47fba2ea@ozsrv2.ozlan.local...[/email]
> Nick,
>
>> I have Form1, it's the base app form
>>
>> I then have ::oPanel1. I try and do this
>>
>> WITH OBJECT ::oForm := TForm3():New(::oPanel1)
>
>
> ^^^^^^
> The 'oParent' of any form has to be another form or Application, not a
> control.
>
>
>> :Create()
>> END
>>
>> I need to display different forms in the Panel depending n what is
>> selected somewhere else
>
> Try using the TPages control. You can create any number of pages with
> controls on it and make visible one at a time.
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
> http://www.xailer.info
>
-
- Mensajes: 328
- Registrado: Mar Nov 21, 2006 2:10 am
Why do I get this error
Hi Jose/Ingo
Thanks for that
Nick
"Jose F. Gimenez" <jfgimenez@wanadoo.es> wrote in message
news:[email=47fba2ea@ozsrv2.ozlan.local...]47fba2ea@ozsrv2.ozlan.local...[/email]
> Nick,
>
>> I have Form1, it's the base app form
>>
>> I then have ::oPanel1. I try and do this
>>
>> WITH OBJECT ::oForm := TForm3():New(::oPanel1)
>
>
> ^^^^^^
> The 'oParent' of any form has to be another form or Application, not a
> control.
>
>
>> :Create()
>> END
>>
>> I need to display different forms in the Panel depending n what is
>> selected somewhere else
>
> Try using the TPages control. You can create any number of pages with
> controls on it and make visible one at a time.
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
> http://www.xailer.info
>
Thanks for that
Nick
"Jose F. Gimenez" <jfgimenez@wanadoo.es> wrote in message
news:[email=47fba2ea@ozsrv2.ozlan.local...]47fba2ea@ozsrv2.ozlan.local...[/email]
> Nick,
>
>> I have Form1, it's the base app form
>>
>> I then have ::oPanel1. I try and do this
>>
>> WITH OBJECT ::oForm := TForm3():New(::oPanel1)
>
>
> ^^^^^^
> The 'oParent' of any form has to be another form or Application, not a
> control.
>
>
>> :Create()
>> END
>>
>> I need to display different forms in the Panel depending n what is
>> selected somewhere else
>
> Try using the TPages control. You can create any number of pages with
> controls on it and make visible one at a time.
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
> http://www.xailer.info
>