Search found 8 matches

by nimam2008
Tue Jun 04, 2013 8:52 am
Forum: Stimulsoft Ultimate
Topic: How to hide/disable Toolbar in stiReport ?
Replies: 2
Views: 1817

Re: How to hide/disable Toolbar in stiReport ?

i can use this code for hide some Button in toolbar such as Print Button
{
StiOptions.Viewer.Windows.ShowPrintButton = false;
}

but below code doesn't work
{
StiOptions.Viewer.Windows.ShowToolbar = false;
}
by nimam2008
Tue Jun 04, 2013 7:41 am
Forum: Stimulsoft Ultimate
Topic: How to hide/disable Toolbar in stiReport ?
Replies: 2
Views: 1817

How to hide/disable Toolbar in stiReport ?

hello

this is my code
{
stiReport1.Load("..\\Report1.mrt");

stiReport1.Show();
}

and I want to hide or disable Toolbar in stiReport .
how should I change this code?
by nimam2008
Tue Jan 11, 2011 2:44 am
Forum: Stimulsoft Ultimate
Topic: Panel in StiReport Designer
Replies: 5
Views: 4282

Panel in StiReport Designer

Hello, You can use the following code: StiText text1 = stiReport_with_Panel.GetComponents()["Text1"] as StiText; text1.Text.Value = textBox1.Text; StiText table1_Cell1 = stiReport_with_Panel.GetComponents()["Table1_Cell1"] as StiText; table1_Cell1.Text.Value = textBox1.Text; ins...
by nimam2008
Tue Jan 11, 2011 1:16 am
Forum: Stimulsoft Ultimate
Topic: Panel in StiReport Designer
Replies: 5
Views: 4282

Panel in StiReport Designer

Aleksey wrote:Hello,

Can you please send us a simple test project, which reproduce the issue?

Thank you.
A simple test project is attached

Thanks.
by nimam2008
Sun Jan 09, 2011 6:29 am
Forum: Stimulsoft Ultimate
Topic: Panel in StiReport Designer
Replies: 5
Views: 4282

Panel in StiReport Designer

<t>Hello<br/> <br/> I have a problem with Panel in StiReport Designer.<br/> <br/> When in “stiReport Designer” I place a “Text” which is named as “Text1”, with the below code I can see the entered text in “Textbox1” which exist in my program(C#),<br/> {<br/> ((StiText)stiReport1.Pages["Page1"].Compo...
by nimam2008
Tue Dec 14, 2010 9:45 am
Forum: Stimulsoft Ultimate
Topic: Access to Closed event
Replies: 5
Views: 4327

Access to Closed event

of course; i use from belwo code for show my report stiReportRA.Load("..\\..\\stiReportRA.mrt"); . . . stiReportRA.Show(); and when user closed the Report then my program do something. actually, i want one code like Aleksey's Code but with Closed Event for Report that displayed and not for...
by nimam2008
Sun Dec 12, 2010 12:28 am
Forum: Stimulsoft Ultimate
Topic: Access to Closed event
Replies: 5
Views: 4327

Access to Closed event

Very Thanks for your solution, but I need to Closed event of Report .
by nimam2008
Sun Dec 05, 2010 12:34 am
Forum: Stimulsoft Ultimate
Topic: Access to Closed event
Replies: 5
Views: 4327

Access to Closed event

pls. tell me how i can to access to Closed event Stimulsoft?
for more explanation:
i want to, my program(C#) do something when user closed the Report form.

Regards,