Showing posts with label rdl. Show all posts
Showing posts with label rdl. Show all posts

Friday, March 23, 2012

link .NET assemblies into .rdl ?

Does anyone know of a way to link .NET assemblies into an .rdl and call
methods so provided ?On Aug 23, 4:19 pm, "John Grandy" <johnagrandy-at-gmail-dot-com>
wrote:
> Does anyone know of a way to link .NET assemblies into an .rdl and call
> methods so provided ?
This article should be helpful.
http://groups.google.com/group/microsoft.public.sqlserver.reportingsvcs/browse_thread/thread/bfa42df4a833016b/6f3fe1f1b28a54b6?lnk=st&q=add+assembly+reference+sql+reporting+services&rnum=1#6f3fe1f1b28a54b6
Regards,
Enrique Martinez
Sr. Software Consultantsql

Monday, March 19, 2012

Line Feed in Text Box on rdl file

I am triyng to add a line feed char to my DB string which is assigned to a
text box, cant figure out how.
Line One"\n"Line Twotry appending a char(10) at the end of the string.
Ex:
print 'abcd'+char(10)+'efgh'
or
print 'abcd'+char(13)+'efgh'
"Adi" wrote:

> I am triyng to add a line feed char to my DB string which is assigned to a
> text box, cant figure out how.
> Line One"\n"Line Two|||Maybe use both. Most windows apps look for a Carriage Return and a Line
Feed together.
print 'abcd'+char(13)+char(10)+'efgh'
However, is this post even in the right forum? Are you trying to do this in
SQL Server, in VB.Net, Javascript?
"tthrone" <tthrone@.discussions.microsoft.com> wrote in message
news:D577C263-F691-4AE3-B7BD-6219F1F90B94@.microsoft.com...
> try appending a char(10) at the end of the string.
> Ex:
> print 'abcd'+char(10)+'efgh'
> or
> print 'abcd'+char(13)+'efgh'
> "Adi" wrote:
>
a