1
vote
0answers
15 views
LINQ to SQL - Format a string before saving?
I'm trying to convert an existing (non-LINQ to SQL) class into a LINQ to SQL entity class which has an existing (db column) property like:
public string MyString
{
get { return myString; }
…
0
votes
3answers
35 views
How to format “time with time zone” in Postgres?
I have a database field of type time with time zone. How can I query this field in EST5EDT time zone with the output format hh:mm:ss?
All I can find is using multiple calls to EXTRACT:
SELECT …
1
vote
3answers
39 views
Formatting a period of time
In Java I have a long integer representing a period of time in milliseconds. The time period could be anything from a couple of seconds to a number of weeks. I would like to output this time period as …
1
vote
6answers
67 views
Applying html formatting in email’s body
I am still trying to figure out, why i cannot apply html formatting in the body of a custom email. I am sure i am missing something, or i need a new pair of eyes!
Here is the info added to the of …
0
votes
3answers
19 views
Jalopy to format return/throw statements
Hi all,
I would like Jalopy to format my return and throw statements such that they look like a method call since they are:
return(true);
throw(new IllegalArgumentException("You can't do that, what …
1
vote
3answers
51 views
LaTex: Possible to include large block of Regex?
Hi,
is it possible to include a large block of a regex (like this one: http://www.ex-parrot.com/pdw/Mail-RFC822-Address.html) without escaping all colliding characters first?
i think of something …
0
votes
3answers
34 views
Reflowing label widget for String
Is there a widget for Swing that behaves like a JLabel, that automatically reflows the text if its dimensions have changed? For example:
Large horizontal space available:
+--------------+
| Foo bar …
1
vote
0answers
40 views
Excel sheet automagic formatting [closed]
Hi,
It is not really a programming issue as it concerns Excel, I apologize for that.
I wanted Automatic Format for my xlsx datasheet.
Let's have an example (that is not mine):
How can I format …
0
votes
2answers
70 views
How can perltidy align the opening parenthesis for method arguments?
Hi, is there a possibility to make perltidy vertically align brackets like this:
$foo->bar (1);
$foo->bat (2);
$foo->bac …
2
votes
8answers
86 views
Most intuitive, readable API / language reference documentation
I'm working on the dreaded last stage of a project: documenting the API for a semi-technical audience.
I'm wondering: what API docs have you found to be particularly elegant?
Note that this has …
0
votes
3answers
44 views
Formatting good in FireFox, bad in IE… help
I am a newb for sure. I have been developing in the firefox, and just barely checked in IE. Someone please help me out. Don't know where I went wrong. Thanks!
www.clgproperty.com
0
votes
1answer
17 views
Report loses color when exporting to Excel
Hi,
I have a local report in a WinForms application that is giving me some trouble. On this report, I have a table and I am trying to change the BackgroundColor of the Detail row.
When I change …
0
votes
0answers
15 views
How to format SSRS 2008 Pie Chart’s Legend into Table?
I have a DataSet with 4 fields.
For example: FieldA, FieldB, FieldC, FieldD
FieldA is the data field, and FieldB is the category field.
Normally the Legend will display the category field.
By …
0
votes
8answers
93 views
Int String format problem
Hi guys, I'm returning this, it is similar to how you percieve dollars, $"32.95" etc. I calculate it in cents which is an int, but the problem is the second half cuts off the 10s of cents part if the …
2
votes
2answers
20 views
How do I find the DIV in which my cursor is placed at any moment
How do I find the DIV in which my cursor is placed at any moment, so I can change the formatting of that area.
