Showing posts with label textbox. Show all posts
Showing posts with label textbox. Show all posts

Wednesday, March 21, 2012

LineHeight

I need to have the text in a textbox double spaced. I am trying to set the
font to 12pt and the lineheight to 24pt to accomplish this. Nothing I set
the lineheight to affects the textbox in any way. How to I "activate" the
lineheight property?I have the same issue. The only work around I have found so far is resizing
all my rows as close to single-spacing as possible. I'd still prefer to see
some sort of answer for this problem. I have tried using the "Line Height"
option without any noticable changes to my report of any kind.
"Davene" <Davene@.discussions.microsoft.com> wrote in message
news:34E76F4F-590C-48E8-905E-ECF36DDAFC7B@.microsoft.com...
>I need to have the text in a textbox double spaced. I am trying to set the
> font to 12pt and the lineheight to 24pt to accomplish this. Nothing I set
> the lineheight to affects the textbox in any way. How to I "activate" the
> lineheight property?

Monday, March 19, 2012

Line

Dear all,

I'm using a table to display my data and I need to draw a double line at the last textbox, may I know is it a way to have "double" line instead of "single" line drawing at one of my columns?

Thanks in advance

Levine

Hi,

The only way I have done this in my application is to create borders for the Table (Solid or Double) and then underline the last textbox item so that it slighlty looks different then the others.

Cheers,

Friday, March 9, 2012

Limiting Amount of Text in a box

I have Comments field in my db that can contain many lines of text and when
it displays in the report the textbox grow extensively. How can I limit the
amount that the text box grows, OR limit the amount of text that is
retrieved in my query, i.e., I only want to display 10-15 lines out of
potentially 80-100.
Thanks
DeanYou can try to show only the first N characters doing it in your SQL
sentence or in the Cell Expresion:
IN SQL:
SELECT substring(YourtextField, 1, N) as Comments, ... FROM YourTable
IN Your cell expresion:
= Mid(Fields!YourField.Value, 1, N)
Does it help?
"Dean" <deanl144@.hotmail.com.nospam> escribió en el mensaje
news:%23M8giJhIIHA.5764@.TK2MSFTNGP06.phx.gbl...
>I have Comments field in my db that can contain many lines of text and when
>it displays in the report the textbox grow extensively. How can I limit the
>amount that the text box grows, OR limit the amount of text that is
>retrieved in my query, i.e., I only want to display 10-15 lines out of
>potentially 80-100.
> Thanks
> Dean
>|||On Nov 8, 9:19 am, "Dean" <deanl...@.hotmail.com.nospam> wrote:
> I have Comments field in my db that can contain many lines of text and when
> it displays in the report the textbox grow extensively. How can I limit the
> amount that the text box grows, OR limit the amount of text that is
> retrieved in my query, i.e., I only want to display 10-15 lines out of
> potentially 80-100.
> Thanks
> Dean
You could create a custom code that counts the carriage return
characters (vbCr, vbLf, vbCrLf depending on your encoding), and if
there are more than 10 in your input string, truncate it using the
Left function
Off the top of my head, it would look something like this:
Function TextTrimmer( txt As String ) As String
lineCount = 0
returnOffset = 1
While lineCount < 10 and returnOffset > 0
returnOffset = InStr( returnOffset+1, txt, vbCr)
lineCount = lineCount + 1
Wend
If returnOffset = 0 Then
' ran out of characters in the string before reaching 10 lines
return( txt )
Else
return( Left( txt, returnOffset-1 ) & "..." )
End If
End Function
Then in the textbox, use
=Code.TextTrimmer( Fields!ReallyLongText.Value )
-- Scott