Tagged Questions

2
votes
1answer
27 views

CMake CTest prevent truncation of test name

Hi, I'm currently running CTest, but I have a problem whereby tests with long names. For example: "API Part1 : Some test information w/ this input file" get's truncated to some …
0
votes
2answers
64 views

JRuby on Rails post data cut short

Hey Guys, I creating a site in JRuby on Rails (JRuby 1.3.0 ). I am using Tomcat with it also. I am posting data to the server with a POST form. The post goes ok but is trunca …
0
votes
5answers
572 views

Flex/Actionscript truncateToFit on label component

I have a number of labels in my Flex application which have the "truncateToFit" property on them set to true. The problem is that, instead of displaying '...' at the end of any tr …
0
votes
3answers
295 views

Windows console logging to file loses tail end if application crashes; how to see tail end?

We build complicated console-based tools that produce a lot of commentary on the console. These tools process a lot of data and so runs are expensive and we don't like to do them …
0
votes
1answer
127 views

Truncated files when copying CSV files using FileSystemObject

I am helping my son write a program to format files to load into another system. I have done this before with no trouble. Now I get a 13 KB comma delimited text file and I am cop …
0
votes
3answers
270 views

SQL Server truncation and 8192 limitation

Hello, In SQL Server 2005 I am trying to query a varchar(MAX) column which has some rows with text data that exceed the 8192. Yet, In Management Studio I have under Tools --> Opt …
2
votes
3answers
322 views

String truncation in the middle, Mac style, CSS and jQuery

Hello! I need to implement a certain kind of string truncation where a string splits in the middle and its left part becomes resizable. Here is what it might look like: "Lorem ip …
0
votes
4answers
292 views

VB6 Form Height/Width Ignored with Command Line Build

We are moving out of VB6 as quickly as we can, but in the meantime we've begun building our VB6 applications from the command line on a Build Server. Problem: The build server has …
0
votes
4answers
544 views

Truncation error SQL server 2005 Delete/Insert

So I am trying to do a bulk insert with SSIS and continually get: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "String or binary data would be truncated." Eve …
0
votes
1answer
278 views

How to customize a mutiline label on iPhone?

How to let a label show multi-line strings? e.g. The given string is @"HelloA\nHelloB\nHelloC\n". How to show it like: @"HelloA" @"HelloB" @"HelloC"
0
votes
1answer
93 views

What is the tail truncation mark on iPhone?

I want to add some tail marks to several strings. Are there any marks like '\n' on iPhone?
1
vote
2answers
572 views

Matching FORTRAN rounding in C#

FORTRAN provides several functions to convert a double precision number to an integral value. The method used for truncation/rounding differs. I am converting complex scientific …