Página 1 de 1
Why do I get this error
Publicado: Mar Abr 08, 2008 5:16 am
por Nick Hilder
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
Publicado: Mar Abr 08, 2008 9:39 am
por Ingo JH
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
Publicado: Mar Abr 08, 2008 9:39 am
por Ingo JH
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
Publicado: Mar Abr 08, 2008 6:52 pm
por jfgimenez
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
Why do I get this error
Publicado: Mar Abr 08, 2008 6:52 pm
por jfgimenez
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
Why do I get this error
Publicado: Mié Abr 09, 2008 1:04 am
por Nick Hilder
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
>
Why do I get this error
Publicado: Mié Abr 09, 2008 1:04 am
por Nick Hilder
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
>