Tagged Questions
The formatted tag has no wiki summary.
4
votes
1answer
612 views
Usage of this next_combination code
Currently I am trying to generate combinations from a vector that contains some integers. For now I want it to print out all of the combinations that are of length to_generate.
I found this code at ...
4
votes
3answers
2k views
Nicely formatting output to console, specifying number of tabs
I am generating a script that is outputting information to the console. The information is some kind of statistic with a value. So much like a hash.
So one value's name may be 8 characters long and ...
3
votes
3answers
7k views
iPhone: Problems with Formatted String (Objective C)
I need help.
How come this does not work:
NSProcessInfo *process = [NSProcessInfo processInfo];
NSString *processName = [process processName];
int processId = [process processIdentifier];
NSString ...
2
votes
3answers
177 views
Formatted printing in Java
I have this code:
public String toString(Day day)
{
String s = day.getDayName() + " " + day.toString();
return s;
}
This is Day class's toString method:
public String toString()
{
...
1
vote
2answers
796 views
WPF Display formatted multiline text using data binding
I need to display the following using WPF databinding (the values change). Headers must be bold, the info lines are normal text. If info for a given header does not exist, I want to collapse that ...
0
votes
0answers
54 views
rtf editor for Office and Openoffice
I'm wondering if this exists (and if yes wich one): an editor that will format a cross platform (I mean MS word and OpenOffice) .rtf file.
I need it to build a .rtf letter that must be post processed ...
0
votes
2answers
52 views
Formatted input from string in c++
I am making a statistics collector that reads the log of a music player and lets the user show top ten most played etc. As a noob project.
A line from the log looks like: "20:42:03 start ...
0
votes
1answer
188 views
Filtering formated list with jQuery Mobile
So I have a list, formated in following way:
<.ul data-role="listview" data-filter="true">
<.li>
<.h2>header<./h2>
<.p>description<./p>
<./li>
<./ul>
...
0
votes
3answers
220 views
HTML Formatted Mail through ASP.net problem
i have used System.Web.Mail.MailMessage to send HTML Formatted message to an email id.
The email id is on gmail.com so mail has been received fine but Content has not been shown.
However if i see ...
0
votes
1answer
177 views
Where is Spring's @Formatted annotation?
I'm trying to define a custom formatter for my class, but I can't find the @Formatted annotation mentioned in Spring's documentation:
5.6.2 @Formatted
The @Formatted annotation allows you to ...
0
votes
1answer
236 views
java code to display a floating point value in specified format in jasper report
The value 13.10 is printed as 13.1 in my jasper report , I want to print it as 13.10 itself , How to do it .The corresponding JRXML statement is
<textFieldExpression ...