> We create a table in sql reporting and drag the field into the detail row.
> User key into the system :
[quoted text clipped - 7 lines]
> exactly user has keyed in?
>
I have tried out First(Fields!string.Value).Replace("\r",VbCrLf). But it
won't work.
However, this give an idea to archieve what i want.
This is what i wrote in the expression of the column
Replace(Fields!ITEMDESC.Value, CHR(13),VbCrLf)
so finally it able the show what exactly user key in.
Anyway, Thanks TheRealRobbie
> If the database data contains the carriage return, you can do this:
>
[quoted text clipped - 16 lines]
>> show
>> exactly user has keyed in?
Jim M. - 03 Jul 2008 21:05 GMT
First(Fields!string.Value).Replace(CHR(13),VbCrLf) worked for me. thanks for
posting your solution!
> I have tried out First(Fields!string.Value).Replace("\r",VbCrLf). But it
> won't work.
[quoted text clipped - 26 lines]
> >> show
> >> exactly user has keyed in?