formatting

mail like application

Hi friends, I am working on mail like app. I want to have view message that has html format(contains text and data) In my db it has in html format. how can i load it in iphone sdk . when i click reply the html message has to converted to text format is it possible? Regards, sathish ...

Convert/Format a column in a select statement sql server 2005..

I have a sql query which is select DateOfBirth from people and it shows up in the result pane as DateOfBirth 07/07/2010 5:08:02 07/09/2010 5:08:02 07/13/2010 5:08:02 I want to format, 07/Jul/2010 09/Jul/2010 13/Jul/2010 NOTE: DateOfBirth column has datatype nvarchar(50) not datetime... ...

number increment with customized style

Hi all, I've tried to do a number(decimal) increment which looks like 001 002 003...123,124 in a loop and couldn't find a simple solution.What I've thought now is to check out whether the number is long enough ,if not prefix it some "0".But it seems not good.Any better ideas? Thanks. ...

Objective-c formatting style causes an error in a switch-case

I'm getting an error in my switch statement with some multi-line Objective-c code: - (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error { // Notifies users about errors associated with the interface switc...

Prevent a copy/paste to copy the style of a web page to a Rich Text Editor

Hi, I'm trying for two days now several JavaScript lightweight Rich Text Editors (rte) such as nicEdit, mooEditable, MooRTE (the two last ones were considered because they use the mootools framework which I'm using for this project). My problem is that with all of them, when I copy a pre-formated text from a web page (with words in bol...

TextBox: Display value in one format but return another format

i would like to display phone number fields on a website as (123) 456-7890 but have the system see it as 1234657890 when calling myTextBox.Text i am thinking this would require overriding the text property and cleaning it up in the overridden property but wanted to run this past the community. ...

Reason behind the solution to the question

What is the output of the following and what's the reason behind this? main() { printf("%%%%"); } The answer is "%%", but I don't know why. ...

Javascript, String formatting: I need the first 4 letters of a string, lowercase, whitespace skimmed, symbols removed...

...I should just list them: First 4 letters/numbers, with... All lowercase. Whitespace stripped. Symbols removed. Should be simple. What's the best way to do this? ...

String Format expression to show Currency with 2 decimal places only if there are decimals (.net)

Silverlight 4/C#: I have a label showing a number formatted in the Currency (with 2 decimal places) of the thread culture, e.g. 25 shows as $25.00 and 25.01 shows as $25.01 I use "StringFormat=C2" for this. My problem is... I only want to show the 2 decimal places IF there are decimal places. e.g. 25 should show as $25 and 25.01 shou...

How to Customize the time format for Python logging?

I am new to Python's logging package and plan to use it for my project. I would like to customize the time format to my taste. Here is a short code I copied from a tutorial: import logging # create logger logger = logging.getLogger("logging_tryout2") logger.setLevel(logging.DEBUG) # create console handler and set level to debug ch = l...

Formatting a negative TimeSpan

I'm doing some math with the Timespans in .Net, and occasionally the sum results in a negative Timespan. When I display the result I am having trouble formatting it to include the negative indicator. Dim ts as New Timespan(-10,0,0) ts.ToString() This will display "-10:00:00", which is good but I don't want to show the seconds so tri...

Format Number based on Format String in JavaScript/jQuery

Let's say I have a format string "XXX - XXX - XXXX" (to format a phone number), or any other format string in which X stands for a number I want to preserve the formatting in the format string (spacing, dashes etc.), but exchange each X for a number and drop all formatting in the source string Examples: Input: "abc+d(123)4567890",...

Custom date format for WPF Calendar CalendarItems

I plan to use a WPF Calendar control to display fiscal month/years. When I set the control's DisplayMode to "Year", the months (for my en-CA culture) are displayed as "Jan", "Feb", etc. I'd like to display them as "01", "02", etc but can't find a way to do this. ...

Git: post-receive email hook to show an html formatted color diff?

I've got a diff e-mail sending using Git's post-receive e-mail hook (thanks to this SO post) but the e-mail that it sends is just plain text. I'd like something a big more colorful and well formatted. Is there a script or something I can run using the post-receive hook that will send a nicely formatted diff e-mail instead of the plain t...

Set TextView text from html-formatted string resource in XML

I have some fixed strings inside my strings.xml, something like: <resources> <string name="somestring"> <B>Title</B><BR/> Content </string> </resources> and in my layout I've got a TextView which I'd like to fill with the html-formatted string. <TextView android:id="@+id/formattedtext" android:layout_width="fi...

Code formatting in visual studio for ASP.NET

How can I have the same formatting as mentioned in this resource for ASP.NET. Like all attributes in separate lines as starting line. Is it possible to format my code in ASP.NET? Please help. http://geekswithblogs.net/lbugnion/archive/2007/09/29/Cleaning-up-XAML-code-and-improving-parsing-time-with-Blend.aspx#lbu_note2 ...

Using Python version 2.6.4 how to program excels filter function

Thanks in advance. Using Excel in the data tab there is a filter option. I wish to implement that into a program I have been working on. It may be as simple as 1 line. If you know anything or if it is not possible in this version/programming language please let me know Thanks! For more information: I want to use the sort option to app...

convert decimal to a string - in thousands with rounding

Hi, I need to convert a decimal to currency string so i did this: CultureInfo usa = new CultureInfo("en-US"); NumberFormatInfo nfi = usa.NumberFormat; nfi.CurrencyDecimalDigits = 0; myValueFormated = String.Format(nfi, "{0:C}", value); It removed decimal places, gave me a comma separato...

How to parse back the result of string.Format

Let's say I have a number (e.g. double) and transform it using some format string into a string variable : var str = string.Format("{0:0%}", 0.256); (the content of the str variable is in this case "26%"). Is there any way to parse this string back into the number ? I'm aware that depending on the format string the lossless conversi...

PowerShell: Format-Table without headers

In a PowerShell script, I have some objects that I pass to the Format-Table CmdLet. The output of my script looks like this: Something... Operation AttributeName AttributeValue --------- ------------- -------------- Delete Member John Doe Something else... Since the meaning of the fields is pretty self-explanatory, I wo...