Viewing 15 posts - 46 through 60 (of 65 total)
U can place the controls into a rectangle(as told in the last post) and set the visibility property=iif( Globals!PageNumber =1,False,True)
August 20, 2005 at 11:46 pm
U can use open report by using URL and pass by the parameter.
4 more info look books online about URL
August 20, 2005 at 11:41 pm
As told in other posts:
u can use Stored procedure and do anything u want...
August 20, 2005 at 11:38 pm
try this code:
Public Shared Function VisibleYN(ByVal Value As String) As Boolean
if subject = "Math" then
VisibleYN= True
else
VisibleYN=False
end if
if subject = "Science" then
VisibleYN= True
else
VisibleYN=False
end if
End Function
Then on mathimage.visibility u set...
August 16, 2005 at 1:27 am
U shoul check in:
Project->properties->Deployment->OverwriteDataSources
if it's false so any change u do doesn't deploy on the server.
August 13, 2005 at 11:45 pm
U Should use stored procedure and then u can use linked servers
August 13, 2005 at 11:38 pm
the best thing 2 do is 2 use stored procedure ...
August 10, 2005 at 1:11 am
Check your grouping properties->visibility->"visibility can be toggled by another report item" and choose the field of the group parent.
forther more,you should check on the grouping textbox field the "Advanced Textbox...
August 9, 2005 at 12:46 am
well there's a lot of problems when printing or exporting(just for notic the printing option was added only in sp2!!!).
You can reduce the margins or the padding(of the textbox) it...
August 6, 2005 at 11:41 pm
hi
maybe in the report parameters you didn't write the prompt text and choose the default value=non-queried???
August 1, 2005 at 11:57 pm
if u want to hidden the prompt add the "rcarameters=false" 2 the URL like:
"/ReportServer?/Reports/Daily&rs:Command=Render&rcarameters=false&FromTime=" & FromTime.Value &...
July 26, 2005 at 12:29 am
from your URL i understand that u call the report from a .NET platform
so this is the URL form
"/ReportServer?/Report/Daily&rs:Command=Render&FromTime=" & FromTime.Value & "&ToTime=" & ToTime.Value
July 26, 2005 at 12:26 am
What about the reportName???
July 25, 2005 at 5:34 am
Good articale about It: http://blogs.msdn.com/chrishays/archive/2004/07/15/184646.aspx It worked 4 me
July 21, 2005 at 4:51 am
Well U can insert a table with 2 cols to the textbox one 4 each field....
July 19, 2005 at 3:38 am
Viewing 15 posts - 46 through 60 (of 65 total)