Print a tree with 4 columns and 3 levels

Stimulsoft Reports.NET discussion
Post Reply
hamed Rezaei
Posts: 12
Joined: Sun Aug 30, 2009 9:47 am

Print a tree with 4 columns and 3 levels

Post by hamed Rezaei »

I'm a tree that is north of 3 level I want it to print
Please help and tell what that tool should I use
Thank you in advance for your cooperation
:oho:
Jan
Posts: 1265
Joined: Thu Feb 19, 2009 8:19 am

Print a tree with 4 columns and 3 levels

Post by Jan »

Hello,

You can use HierarchicalBand for your request. Please check samples in Demo.exe application.

Thank you.
hamed Rezaei
Posts: 12
Joined: Sun Aug 30, 2009 9:47 am

Print a tree with 4 columns and 3 levels

Post by hamed Rezaei »

Hi, thanks for your reply
I use the intra-group problem you've solved the problem now I'm into history is related to Persian
I want the header when the largest group on Kvchtryn and I found it to be able to convert and display Frasy do
So I need to waste any group in my code with the functions that I want to convert to Persian calender
For example,On 2010/04/19, which is related should be displayed 1389/01/30
helpe me please:shame: :shame:
Andrew
Posts: 4109
Joined: Fri Jun 09, 2006 3:58 am

Print a tree with 4 columns and 3 levels

Post by Andrew »

Hello,

I hardly think we can help you in this question. We do not know how to do it.

Thank you.
hamed Rezaei
Posts: 12
Joined: Sun Aug 30, 2009 9:47 am

Print a tree with 4 columns and 3 levels

Post by hamed Rezaei »

tanks

I want to change standard date to persian calender
i have function this work but i can not use it in report
i want report in Processing called my vb.net function
Ivan
Posts: 960
Joined: Thu Aug 10, 2006 1:37 am

Print a tree with 4 columns and 3 levels

Post by Ivan »

Hello,

You can write your function on the Code tab in the begin of report, for example:

Code: Select all

Namespace Reports
    
    Public Class Report
		Inherits Stimulsoft.Report.StiReport
		
		
		Public Function GetDateString(ByVal dateToConvert As DateTime) As String
			'
			'Place your code here
			'
			Return "new date string"
		End Function
		
		
        Public Sub New()
            MyBase.New
            Me.InitializeComponent
            .....
and then use this function in expressions, for example:

Code: Select all

DateTimeStandard:   {DateTime.Now}
DateTimeModified:   {GetDateString(DateTime.Now)}
Thank you.
Attachments
398.Report.mrt
(3.52 KiB) Downloaded 310 times
hamed Rezaei
Posts: 12
Joined: Sun Aug 30, 2009 9:47 am

Print a tree with 4 columns and 3 levels

Post by hamed Rezaei »

hi
very tanks my dear
Andrew
Posts: 4109
Joined: Fri Jun 09, 2006 3:58 am

Print a tree with 4 columns and 3 levels

Post by Andrew »

Ok! Let us know if you need any additional help.

Thank you.
Post Reply