You can try the following workaround method:
1) create one method under element call lineCount
(basically just count how many lines needed for every
single records)
2) Set AutoDeclaration to true for the particular
column.
3) In executeSection, reset the height everytime based
on the records.
   E.g:
[Property].height(element.lineCount([variable]),
Units::Chars)

Regards,
S.C.GAN

--- Rajant Sancheti <[EMAIL PROTECTED]> wrote:

> Hi All,
> 
> i am facing the problem with the report printing
> with
> the SP4 .
> as its giving the page break between the reports caz
> the dynamic height is set to yes for field.
> i heard that this issue is already be posted to MS
> and
> they release the hotfix hotfix_042_30SP4 . but i
> didnt
> find this.
> is any one have the hotfix or some other solution
> for
> this.
> 
> let me know
> 
> thanks and regards
> raj...
> 
> --- Irving <[EMAIL PROTECTED]> wrote:
> 
> > Hi
> > 
> > I want to delete files in a folder, I have made
> > following code:
> > 
> > void deleteFilesInFolder(filePath _inputPath)
> > {
> >     object                      cIo;
> >     fileName                    inputFile;
> >     filePath                    inputPath   =
> > _inputPath;
> >     ;
> > 
> >     inputFile = this.SearchInputFile(inputPath);
> >     cIo  = new CommaIo(inputFile,'r');
> >     while(inputFile)
> >     {
> >         winAPI::DeleteFile(inputFile);
> > 
> >         //Get the next file...
> >         inputFile =
> this.SearchInputFile(inputPath);
> >         cIo  = new CommaIo(inputFile,'r');
> >     }
> > }
> > 
> > where SearInputFile has the following code:
> > FileName SearchInputFile(filePath _Path)
> > {
> >     container   fileInfo;
> >     int         findhandle;
> >     filePath    filePath;
> >     FileName    fileNameTmp;
> >     ;
> > 
> >     fileNameTmp = _Path;
> >     filePath = fileNameTmp;
> > 
> >     if
> (subStr(fileNameTmp,strlen(fileNameTmp)-1,1)
> > == '\\')
> >     {
> >         fileNameTmp = fileNameTmp + '*.*';
> >     }
> >     else
> >     {
> >         fileNameTmp = fileNameTmp + '\\*.*';
> >         filePath  = filePath + '\\';
> >     }
> > 
> >     fileInfo = winAPI::FindFirstFile(fileNameTmp);
> >     findHandle = conpeek(fileinfo,1);
> >     fileNameTmp =
> winApi::FindNextFile(findHandle);
> >     fileNameTmp =
> winApi::FindNextFile(findHandle);
> >     winAPI::FindClose(findHandle);
> > 
> >     if (fileNameTmp)
> >         return filePath + fileNameTmp;
> > 
> >     return '';
> > }
> > 
> > My problem is, that I find the first file again
> and
> > again, each time 
> > I try to delete it with
> > winAPI::deleteFile(Filename).
> > 
> > What is I doing wrong, I want to go throught the
> > folders files and 
> > delete them.
> > 
> > Regards
> > 
> > irving
> > 
> > 
> > 
> > 
> > 
> 
> 
> 
>               
> __________________________________________ 
> Yahoo! DSL � Something to write home about. 
> Just $16.99/mo. or less. 
> dsl.yahoo.com 
> 
> 
> 
> Sharing the knowledge on Axapta.
> Visit www.frappr.com/axapta for axapta friends. 
> Yahoo! Groups Links
> 
>
http://groups.yahoo.com/group/Axapta-Knowledge-Village/
> 
>    
> [EMAIL PROTECTED]
> 
>  
> 
> 
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


Sharing the knowledge on Axapta.
Visit www.frappr.com/axapta for axapta friends. 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/Axapta-Knowledge-Village/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to