Search found 2913 matches

by Edward
Wed Jun 28, 2006 3:34 am
Forum: Stimulsoft Reports.NET
Topic: Image from filepath
Replies: 2
Views: 3045

Image from filepath

magicang wrote:Hi there ,
How can i load a image from a filepath on the beforeprint event ?
TQ
:grinder:
You should use following code:

Code: Select all

Image1.Image = Image.FromFile("Image1.gif");
Thanks!
by Edward
Fri Jun 23, 2006 6:41 am
Forum: Stimulsoft Reports.NET
Topic: Sorting data
Replies: 3
Views: 2632

Sorting data

Thanks!
by Edward
Fri Jun 23, 2006 6:38 am
Forum: Stimulsoft Reports.NET
Topic: Image from URL
Replies: 3
Views: 3034

Image from URL

Alex wrote: Can i load image from url from BeforePrintEvent?
Yes, you can load image from url in BeforePrintEvent:

Code: Select all

Image1.Image = Stimulsoft.Base.Drawing.StiImageFromURL.LoadBitmap("http://www.domain.com/bitmap.gif");
Where Image1 is your Image component.
Thanks!
by Edward
Fri Jun 23, 2006 5:25 am
Forum: Stimulsoft Reports.NET
Topic: Many configurations
Replies: 2
Views: 1598

Many configurations

You should switch off the automatic save of configuration and then load and save configurations you need in proper time and proper positions. Please use the Save and Load methods of the StiConfig class.
Thanks!
by Edward
Fri Jun 23, 2006 5:21 am
Forum: Stimulsoft Reports.NET
Topic: Calculated Colums
Replies: 5
Views: 5941

Calculated Colums

Problem solved.
Thanks.
by Edward
Fri Jun 23, 2006 5:18 am
Forum: Stimulsoft Reports.NET
Topic: Data Dictionary
Replies: 3
Views: 2097

Data Dictionary

Problem solved!
Thanks.
by Edward
Fri Jun 23, 2006 4:17 am
Forum: Stimulsoft Reports.NET
Topic: Formating Values
Replies: 2
Views: 1822

Formating Values

When I have a datetime field {Date} and use the format option of the text box it works fine. But when write something before the field like : Invoice date: {Date} the format does not apply, because of the extra text. How do I use formattings in the text box? Thanks! You can use standard formatting,...
by Edward
Thu Jun 22, 2006 9:33 am
Forum: Stimulsoft Reports.NET
Topic: Data Dictionary
Replies: 3
Views: 2097

Data Dictionary

In my data access I have tables with contain a space like dbo Invoice All is rendered fine, but I can't change the tables (e.g. add a column), because in the edit mode the table name is not valid. Could that be changed in the next version? Thanks! Please send request to http://www.stimulsoft.com/fo...
by Edward
Thu Jun 22, 2006 8:43 am
Forum: Stimulsoft Reports.NET
Topic: Calculated Colums
Replies: 5
Views: 5941

Calculated Colums

Please select Report object in Designer's Properties Editor and try to add LieferscheinObjekt in Report ReferensedAssemblies string collection.
If it will not helps or it is another object please send your report to support[at]stimulsoft[dot]com.
Thanks.
by Edward
Thu Jun 22, 2006 8:09 am
Forum: Stimulsoft Reports.NET
Topic: Calculated Colums
Replies: 5
Views: 5941

Calculated Colums

Please try to add the following expression as the formula: Math.Round(2d*2d,2) or Math.Round(2*2.0,2) C# compiler can't compile expression Math.Round(2*2,2). In the Error List you can see: Error 6 The call is ambiguous between the following methods or properties: 'System.Math.Round(double, int)' and...