[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.axapta.programming

report filed...URGENT!!!

Woodfarm

1/2/2006 11:56:00 AM

Hi!

Im using axapta 2.5 and I have a report where I want to hide some fields on
the repport is runned. I want to make the fields "fieldx.visible(false)" but
there is nowhere where I can set the field to autodeclaration?

Please help

Christian

PS
Happy New Year
1 Answer

Steen Andreasen

1/2/2006 12:53:00 PM

0

Hi Christian,

You must address the control in the design. The following code is from
the report KMKnowledgeCollector:

ReportTimeControl reportTimeControl;
;
reportTimeControl = element.design().controlName('elapsedTime');
reportTimeControl.visible(false);

Best regards
Steen Andreasen
http://www.steenandreasen.com/axap...

Woodfarm wrote:

>Hi!
>
>Im using axapta 2.5 and I have a report where I want to hide some fields on
>the repport is runned. I want to make the fields "fieldx.visible(false)" but
>there is nowhere where I can set the field to autodeclaration?
>
>Please help
>
>Christian
>
>PS
>Happy New Year
>
>

--