keserm
Posts: 2
|
| Posted: 12/08/2006, 9:53 AM |
|
How do I trim dynamic text in grid? Should look something like this:
"Description..."
I searched around but couldn't find solution that works in CodeCharge.
Thanks!
_________________
milekeser |
 |
 |
keserm
Posts: 2
|
| Posted: 12/08/2006, 12:28 PM |
|
found solution by inserting custom code to the label, Events -> BeforeShow:
If Inventory.Note.Value <> "" Then
Inventory.Note.Value = Left(Inventory.Note.Value, 10) & ".."
Elseif Inventory.Note.Value = "" Then
Inventory.Note.Value = ""
End if
_________________
milekeser |
 |
 |
|