active questions tagged formatting - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T17:20:24Zhttp://stackoverflow.com/feeds/tag/formattinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/137359/excel-csv-number-cell-format4Excel CSV - Number cell formatSergey Stadnik2008-09-26T02:07:20Z2009-12-22T14:05:46Z
<p>I produce a report as an CSV file.
When I try to open the file in Excel, it makes an assumption about the data type based on the contents of the cell, and reformats it accordingly.</p>
<p>For example, if the CSV file contains</p>
<pre><code>...,005,...
</code></pre>
<p>Then Excel shows it as 5.
Is there a way to override this and display 005?</p>
<p>I would prefer to do something to the file itself, so that the user could just double-click on the CSV file to open it.</p>
<p>I use Excel 2003.</p>
http://stackoverflow.com/questions/1942994/how-to-format-time-with-time-zone-in-postgres0How to format "time with time zone" in Postgres?griffin2009-12-21T22:15:22Z2009-12-22T09:26:10Z
<p>I have a database field of type <code>time with time zone</code>. How can I query this field in EST5EDT time zone with the output format hh:mm:ss? </p>
<p>All I can find is using multiple calls to <code>EXTRACT</code>:</p>
<pre><code>SELECT EXTRACT(HOUR FROM TIME WITH TIME ZONE '20:38:40-07' AT TIME ZONE 'EST5EDT');
</code></pre>
<p><em>[Edit:]</em></p>
<p>To be clear, this query:</p>
<pre><code>SELECT TIME WITH TIME ZONE '20:38:40.001-07' AT TIME ZONE 'EST5EDT';
</code></pre>
<p>Returns "22:38:40.001" but I just want "22:38:40" as the output.</p>
http://stackoverflow.com/questions/1943877/linq-to-sql-format-a-string-before-saving1LINQ to SQL - Format a string before saving?shaunmartin2009-12-22T02:37:37Z2009-12-22T02:37:37Z
<p>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:</p>
<pre><code>public string MyString
{
get { return myString; }
set { myString = FormatMyString(value); }
}
</code></pre>
<p><strong>Is there a way to do this sort of processing on the value of entity class property before saving?</strong></p>
<p>Should I use some sort of an entity-level saving event in which to do my formatting (if that will even work)?</p>
<p>I know LINQ to SQL provides validation and there are generated <code>On...Changing()</code> partial methods which provide access to the new value, <em>by value (not by ref)</em>, but none of those methods seem to provide a way to <strong><em>actually modify/format the value</em></strong> while it is being set.</p>
<p>Thank you for your help.</p>
http://stackoverflow.com/questions/1938057/formatting-a-period-of-time1Formatting a period of timejwaddell2009-12-21T03:44:50Z2009-12-21T03:55:56Z
<p>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 a String with the appropriate unit.</p>
<p>For example 3,000 should be output as "3 seconds", 61,200,000 should be output as "17 hours" and 1,814,400,000 should be output as "3 weeks".</p>
<p>Ideally I would also be able to fine-tune the formatting of sub-units, e.g. 62,580,000 might be output as "17 hours, 23 minutes".</p>
<p>Are there any existing Java classes that handle this?</p>
http://stackoverflow.com/questions/1929725/jalopy-to-format-return-throw-statements0Jalopy to format return/throw statementsWalter White2009-12-18T17:47:51Z2009-12-20T15:01:38Z
<p>Hi all,</p>
<p>I would like Jalopy to format my return and throw statements such that they look like a method call since they are:</p>
<pre><code>return(true);
throw(new IllegalArgumentException("You can't do that, what we you thinking?"));
</code></pre>
<p>I have the rest of the code formatted exactly the way I want so this is the icing on the cake.</p>
<p>Also as an aside, I work on a project with a few team members and each have our own preference for looking at code, has anyone setup Jalopy in conjuction with a successful build as well as checkout?</p>
<p>So, when I checkout code, it gets formatted to my liking, and then each time I get a successful build, it gets formatted according to the Java/Sun Standard and then checked in?</p>
<p>Walter</p>
http://stackoverflow.com/questions/1934130/applying-html-formatting-in-emails-body1Applying html formatting in email's bodystrakastroukas2009-12-19T21:03:50Z2009-12-20T13:04:22Z
<p>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! </p>
<p>Here is the info added to the of the web page</p>
<pre><code><head runat="server">
<link href="~/MyStyle.css" rel="stylesheet" type="text/css" />
</head>
</code></pre>
<p>Mystyle.css contains the following</p>
<pre><code>span.orange
{
color: #FF6D06;
font-family: tahoma;
font-size: 10pt;
}
</code></pre>
<p>and here comes the body part...</p>
<pre><code>Dim HtmlString as string = "<span class='orange'>This one should be painted</span>"
</code></pre>
<p>which is sent by using Net.Mail</p>
<pre><code>Dim objMail As New Mail.MailMessage (blah, blah blah)
objMail.IsBodyHtml = True
</code></pre>
<p><strong>UPDATE:</strong> First of all thank you for your comments. The email itself is not in any way referenced with the stylesheet in any way. So what options do i have becides attaching the stylesheet to the email? </p>
http://stackoverflow.com/questions/1474814/how-can-i-get-the-date-but-not-time-from-nsdate1How can I get the date but not time from NSDateMcKay2009-09-25T00:17:06Z2009-12-18T19:03:18Z
<p>Hi.</p>
<p>I need the date as a string but not the time and it has to be localized.</p>
<p>So for example USA should be <em>Sep 25 2009</em> but for New Zealand it would be <em>25 Sep 2009</em>.
I can get the date into a string by specifying the format "MMM dd YYYY" but It's not localized.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1928713/latex-possible-to-include-large-block-of-regex1LaTex: Possible to include large block of Regex?Andrew2009-12-18T15:01:50Z2009-12-18T15:23:22Z
<p>Hi,</p>
<p>is it possible to include a large block of a regex (like this one: <a href="http://www.ex-parrot.com/pdw/Mail-RFC822-Address.html" rel="nofollow">http://www.ex-parrot.com/pdw/Mail-RFC822-Address.html</a>) without escaping all colliding characters first?</p>
<p>i think of something like</p>
<p>\begin{following_section_will_not_be_parsed_by_latex}
(a+?b)
\end{...}</p>
<p>thank you!</p>
<p>Andrew</p>
http://stackoverflow.com/questions/1419360/c-code-formatting0C++ code formatting..Tom2009-09-14T01:43:55Z2009-12-17T18:41:50Z
<p>I've been using VS2005 and VS2008 now for a while, with C#. Without any additional tools I could hit ctrl k + d and the code would nicely reformat. Why doesn't C++ do this?
It's the same Visual Studio after all. Is there a way to enable it?</p>
<p>A second part of this question is related, for those who've been using resharper with C#, is there a similar tool for C++?</p>
http://stackoverflow.com/questions/1920493/reflowing-label-widget-for-string0Reflowing label widget for Stringnd2009-12-17T09:32:02Z2009-12-17T12:45:17Z
<p>Is there a widget for Swing that behaves like a <code>JLabel</code>, that automatically reflows the text if its dimensions have changed? For example:</p>
<pre>
Large horizontal space available:
+--------------+
| Foo bar baz |
+--------------+
Small horizontal space available:
+---------+
| Foo bar |
| baz |
+---------+
</pre>
<p>I am currently using <code>JEditorPane</code> with <code>setContentType("text/html")</code> and HTML content. This works, but it does not use the System's default label font for displaying the text. Also, I would rather not put HTML tags into my text - at best, <code>\n</code> characters would be transformed into line breaks and everything else would be displayed as text.</p>
http://stackoverflow.com/questions/1911980/most-intuitive-readable-api-language-reference-documentation2Most intuitive, readable API / language reference documentationCarlG2009-12-16T03:01:06Z2009-12-16T22:12:24Z
<p>I'm working on the dreaded last stage of a project: documenting the API for a semi-technical audience.</p>
<p>I'm wondering: what API docs have you found to be particularly elegant?</p>
<p>Note that this has <em>nothing</em> to do with how elegant the API itself is: this is purely a question of the formatting/appearance of the API docs themselves. Which language or API docs convey their information in the most intuitive and readable way?</p>
http://stackoverflow.com/questions/1493785/vs2008-is-it-possible-to-have-custom-formatting-for-directives0VS2008: Is it possible to have custom formatting for @ directives?chris2009-09-29T16:59:31Z2009-12-16T17:11:55Z
<p>In VS2008 (Tools -> Options, Text Editor, HTML, Format, Tag Specific Options) you can control the automatic formatting of most tags.</p>
<p>However, I'd like to have VS automatically format my @p Page directive so that instead of:</p>
<pre><code><%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Foo.aspx.vb" Inherits="WebRoot.Foo"
MasterPageFile="~/WebRoot.Master" %>
</code></pre>
<p>I get:</p>
<pre><code><%@ Page Language="vb" AutoEventWireup="false"
CodeBehind="Foo.aspx.vb"
Inherits="WebRoot.Foo"
MasterPageFile="~/WebRoot.Master"
%>
</code></pre>
<p>Is this possible?</p>
http://stackoverflow.com/questions/1913362/how-can-perltidy-align-the-opening-parenthesis-for-method-arguments0How can perltidy align the opening parenthesis for method arguments?Robert2009-12-16T09:19:35Z2009-12-16T15:59:20Z
<p>Hi, is there a possibility to make perltidy vertically align brackets like this:</p>
<pre><code>$foo->bar (1);
$foo->bat (2);
$foo->bac (3);
$foo->bad (4);
$foo->bae (5);
$foo->baf (6);
$foo->bagofbones (7);
$foo-> what_a_strange_name_for_a_message ('but it must be so');
</code></pre>
<p>best,
R.</p>
http://stackoverflow.com/questions/1914889/excel-sheet-automagic-formatting1Excel sheet automagic formatting [closed]enguerran2009-12-16T14:12:50Z2009-12-16T14:46:24Z
<p>Hi,</p>
<p>It is not really a programming issue as it concerns Excel, I apologize for that.</p>
<p>I wanted Automatic Format for my xlsx datasheet.</p>
<p>Let's have an example (that is not mine): <img src="http://www.bala-krishna.com/wp-content/uploads/2008/09/excel-conditional-row-color-formatting.gif" alt="excel datasheet"></p>
<p>How can I format automatically the rows depending on one of its cell's value which is not a number and without writing a lot of LOC?</p>
<p>I saw "Conditional Formatting" with scale colors in excel 2007. I would like something like that: for each text value is binded one color. Something like in cartography with the Theory 3 colors...</p>
http://stackoverflow.com/questions/946993/intellij-reformat-on-file-save1Intellij reformat on file saveripper2342009-06-03T20:22:01Z2009-12-16T04:00:02Z
<p>I remember seeing in either IntelliJ or Eclipse the setting to reformat (cleanup) files whenever they are saved. How do I find it (didn't find it in the settings)</p>
http://stackoverflow.com/questions/1867555/visual-studio-copy-paste-into-outlook-with-standard-formatting0Visual Studio copy/paste into Outlook with standard formatting?Mark Gibaud2009-12-08T15:04:20Z2009-12-16T00:38:02Z
<p>I have custom settings in Visual Studio that include a dark background. Copy/pasting to Outlook produces a crime against eyeballs with a dark background in code on a white background of the mail.</p>
<p>Does anyone have any ideas of how I can paste code in standard VS formatting (NOT unformatted text from paste special, and not paste with my custom VS formatting)?</p>
<p>(Alternatively, does anyone know a quick way to switch between themes in VS? Thinking that could also work...)</p>
http://stackoverflow.com/questions/1904405/formatting-good-in-firefox-bad-in-ie-help0Formatting good in FireFox, bad in IE.... helpoxnard2009-12-15T00:03:30Z2009-12-15T06:09:51Z
<p>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!</p>
<p>www.clgproperty.com</p>
http://stackoverflow.com/questions/1904027/report-loses-color-when-exporting-to-excel0Report loses color when exporting to ExcelRobert2009-12-14T22:41:07Z2009-12-14T22:56:45Z
<p>Hi,</p>
<p>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. </p>
<p>When I change it to "Red" and view the report, the row is Red as hoped for. When I export the report to Excel and PDF, the row is Red, too. So far, so good...</p>
<p>If, however, I change the row color to something like "DarkSeaGreen," it will display in my ReportViewer control ok and the PDF looks good, too, but the copy I exported to Excel just shows this row as gray.</p>
<p>I have tried out a few different colors... some work, some don't. I have also tried setting this property different Hex values; again, some work, some don't.</p>
<p>Has anyone experience this before? What is causing the colors to turn to gray when the report is exported to Excel?</p>
<p>Any assistance is greatly appreciated!</p>
<p>Edit: Also, the same colors that don't display in Excel don't print from the ReportViewer either... looks like Excel isn't the main culprit.</p>
http://stackoverflow.com/questions/1901999/how-to-format-ssrs-2008-pie-charts-legend-into-table0How to format SSRS 2008 Pie Chart's Legend into Table?Ferry Meidianto2009-12-14T16:40:53Z2009-12-14T16:51:00Z
<p>I have a DataSet with 4 fields.
For example: FieldA, FieldB, FieldC, FieldD</p>
<p>FieldA is the data field, and FieldB is the category field.</p>
<p>Normally the Legend will display the category field.
By applying custom format in the Series Properties --> Legend --> Custom legend text, I could format it like this: FieldB - FieldC - FieldD</p>
<p>Because the length of the data in the FieldB, FieldC, and FieldD are not uniform, it looks not good.</p>
<p>Anyone know how to format it (the legend with FieldB, FieldC, and FieldD) into a table layout?</p>
<p>It's SSRS 2008.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1891059/im-having-trouble-positioning-this-button-nicely3I'm having trouble positioning this button nicely..Justen2009-12-11T21:43:29Z2009-12-14T15:09:40Z
<p>I've been goin at it now for an 1.5hrs and I just can't figure out a way to make it the way I want. I'm kind of new with all things web, and it takes about as much time (maybe more?) trying to get things where I want and doing it in a way that is elegant.</p>
<p>Anyways, I have two text boxes, with two labels above them and centered over the box. I want to simply put a button in between them and about centered with the textboxes' height.</p>
<p>This is as close as I can make it get to what I want. I would like the left textbox moved over so it lines up with the words "Jump To:, "Customer:," and "Customer #:" and then have the right box be the same distance on the right with the Next button maybe a just 10px higher but still centered as it is. The problem with this picture is that it only works when the text boxes are shown and expanded, if they are hidden, then the panel actually renders half-way above the Customer # part because of how I manipulated the margins I'm guessing.</p>
<p><img src="http://img192.imageshack.us/img192/259/controls.jpg" alt="http://img192.imageshack.us/img192/259/controls.jpg"></p>
<p>Here's my attempt with <code><div></code>s</p>
<pre><code><div style="position:relative; overflow:auto; margin-top:15px; margin-bottom:10px;">
<div style="width:40%; float:left; margin-left:10px;">
<div><asp:Label runat="server" ID="lblInfoDesc" /></div>
<div><asp:TextBox ID="txtInfoDescription" runat="server" TextMode="MultiLine" Rows="3" MaxLength="500" Width="100%" /></div>
</div>
<%--<div style="position:absolute; margin-top:25px; margin-left:-10px;"><asp:Button ID="Button1" runat="server" Text="Next" /></div>--%>
<div style="width:40%; float:right; margin-right:16px;">
<div><asp:Label runat="server" ID="lblInfoData" /></div>
<div><asp:TextBox ID="txtInfoData" runat="server" TextMode="MultiLine" Rows="3" MaxLength="500" Width="100%" /></div>
</div>
</div>
</code></pre>
<p>And here's my attempt with table elements</p>
<pre><code> <div style="margin-bottom:10px;">
<table style="position:relative; width:100%; margin-bottom:15px;">
<tr style="text-align:center";>
<td><asp:Label runat="server" ID="lblInfoDesc" /></td>
<td></td><td></td><td></td><td></td>
<td><asp:Label runat="server" ID="lblInfoData" /></td>
</tr>
<tr>
<td style="margin-left: 0px;"><asp:TextBox ID="txtInfoDescription" runat="server" TextMode="MultiLine" Rows="3" MaxLength="500" Width="80%" /></td>
<td></td><td></td><td></td><td></td>
<td style="margin-right:10px;"><asp:TextBox ID="txtInfoData" runat="server" TextMode="MultiLine" Rows="3" MaxLength="500" Width="80%" /></td>
</tr>
</table>
<div style="position:inherit; text-align:center; margin-top:-55px; margin-bottom:25px;">
<asp:Button ID="Button2" runat="server" Text="Next" />
</div>
</div>
</code></pre>
<p>All of those <code><td></td><td></td><td></code> was to attempt to put spaces between the button and the text boxes because I couldn't get float nor margin to work. Any help would be much appreciated!</p>
<p>And here's the complete page source:</p>
<pre><code><asp:Panel ID="pnlCustomer" runat="server" style="background-color:#ccccff; width:500px; height:90%; position:relative;" BorderColor="DarkBlue" BorderWidth="2px">
<div style="position:relative; margin-top:10px; margin-left:10px;">
<div style="color:#003399; font-size:18px; text-align:left;">Jump To:
<asp:DropDownList ID="ddlCategory" runat="server" AutoPostBack="True"
onselectedindexchanged="ddlCategory_SelectedIndexChanged"
style="margin-left:40px;"/>
</div>
</div>
<div style="position:relative; margin-top:10px; margin-left:10px;">
<div style="color:#003399; font-size:18px; text-align:left;">Customer:
<asp:DropDownList ID="ddlCustomersList" runat="server" AutoPostBack="true"
OnSelectedIndexChanged="ddlCustomersList_SelectedIndexChanged"
style="margin-left:35px;"/>
<asp:Button ID="btnAddCustomer" runat="server" Text="Add" OnClick="btnAddCustomer_Click" OnClientClick="return confirm('Warning: This will redirect you from the page');" />
</div>
</div>
<div style="position:relative; margin-top:10px; margin-left:10px;">
<div style="color:#003399; font-size:18px; text-align:left;">Customer #:
<asp:DropDownList ID="ddlCustomerNumber" runat="server" AutoPostBack="true"
OnSelectedIndexChanged="ddlCustomerNumber_SelectedIndexChanged"
style="margin-left:20px;"/>
<asp:TextBox ID="txtCustomerNumber" runat="server" style="margin-left:20px;" />
<asp:Button ID="btnModify" runat="server" Text="Modify" OnClick="btnModify_Click" />
<asp:Button ID="btnCreateNew" runat="server" Text="Create New" OnClick="btnCreateNew_Click" />
<asp:Button ID="btnUpdate" runat="server" Text="Update" OnClick="btnUpdate_Click" />
<asp:Button ID="btnDelete" runat="server" Text="Delete" OnClick="btnDelete_Click" OnClientClick="return confirm('Do you want to delete the record ?');" />
<asp:Button ID="btnSaveNew" runat="server" Text="Save" OnClick="btnSaveNew_Click" />
<asp:Button ID="btnCancel" runat="server" Text="Cancel" OnClick="btnCancel_Click" />
</div>
</div>
<%-- <div style="margin-bottom:10px;">
<table style="position:relative; width:100%; margin-bottom:15px;">
<tr style="text-align:center";>
<td><asp:Label runat="server" ID="lblInfoDesc" /></td>
<td></td><td></td><td></td><td></td>
<td><asp:Label runat="server" ID="lblInfoData" /></td>
</tr>
<tr>
<td style="margin-left: 0px;"><asp:TextBox ID="txtInfoDescription" runat="server" TextMode="MultiLine" Rows="3" MaxLength="500" Width="80%" /></td>
<td></td><td></td><td></td><td></td>
<td style="margin-right:10px;"><asp:TextBox ID="txtInfoData" runat="server" TextMode="MultiLine" Rows="3" MaxLength="500" Width="80%" /></td>
</tr>
</table>
<div style="position:inherit; text-align:center; margin-top:-55px; margin-bottom:25px;">
<asp:Button ID="Button2" runat="server" Text="Next" />
</div>
</div>--%>
<div style="position:relative; overflow:auto; margin-top:15px; margin-bottom:10px;">
<div style="text-align:center; margin-bottom:-20px; ">
<asp:Button ID="btnNextInfo" runat="server" Text="Next" />
</div>
<div style="width:40%; float:left; margin-left:10px;">
<div><asp:Label runat="server" ID="lblInfoDesc" /></div>
<div><asp:TextBox ID="txtInfoDescription" runat="server" TextMode="MultiLine" Rows="3" MaxLength="500" Width="100%" /></div>
</div>
<div style="width:40%; float:right; margin-right:16px;">
<div><asp:Label runat="server" ID="lblInfoData" /></div>
<div><asp:TextBox ID="txtInfoData" runat="server" TextMode="MultiLine" Rows="3" MaxLength="500" Width="100%" /></div>
</div>
</div>
<div style="margin-top:-20px; position:absolute; font-size:12px;"><asp:Label runat="server" ID="lblErrorMessage" /></div>
</asp:Panel>
</code></pre>
http://stackoverflow.com/questions/275338/java-print-a-2d-string-array-as-a-right-justified-table1Java: Print a 2D String array as a right-justified tableChris Conway2008-11-08T22:53:56Z2009-12-14T11:12:58Z
<p>What is the <em>best</em> way to print the cells of a <code>String[][]</code> array as a right-justified table? For example, the input</p>
<pre><code>{ { "x", "xxx" }, { "yyy", "y" }, { "zz", "zz" } }
</code></pre>
<p>should yield the output</p>
<pre><code> x xxx
yyy y
zz zz
</code></pre>
<p>This seems like something that one <em>should</em> be able to accomplish using <code>java.util.Formatter</code>, but it doesn't seem to allow non-constant field widths. The best answer will use some standard method for padding the table cells, not the manual insertion of space characters.</p>
http://stackoverflow.com/questions/1898343/int-string-format-problem0Int String format problemJonny2009-12-14T00:22:18Z2009-12-14T03:06:54Z
<p>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 number is less than that. For example if I have "32.08" it returns as "32.8". Any ideas ? i know i need an if but i cant think how to write it.</p>
<pre><code>public String toString()
{
return (cents / 100)+ "." + (cents % 100);
}
</code></pre>
http://stackoverflow.com/questions/1390125/in-fortran-95-how-do-i-format-a-print-or-write-statement-to-overwrite-the-curren1In Fortran 95, how do I format a PRINT or WRITE statement to overwrite the current line on the console screen?Geoffrey van Wyk2009-09-07T16:35:00Z2009-12-12T16:10:40Z
<p>I want to display the progress of a calculation done with a DO-loop, on the console screen. I can print out the progress variable to the terminal like this:</p>
<pre><code>PROGRAM TextOverWrite_WithLoop
IMPLICIT NONE
INTEGER :: Number, Maximum = 10
DO Number = 1, MAXIMUM
WRITE(*, 100, ADVANCE='NO') REAL(Number)/REAL(Maximum)*100
100 FORMAT(TL10, F10.2)
! Calcultations on Number
END DO
END PROGRAM TextOverWrite_WithLoop
</code></pre>
<p>The output of the above code on the console screen is:</p>
<p><strong>10.00 20.00 30.00 40.00 50.00 60.00 70.00 80.00
90.00 100.00</strong></p>
<p>All on the same line, wrapped only by the console window.</p>
<p>The <strong>ADVANCE='No'</strong> argument and the <strong>TL10</strong> (tab left so many spaces) edit descriptor works well to overwrite text on the same line, e.g. the output of the following code:</p>
<pre><code>WRITE(*, 100, ADVANCE='NO') 100, 500
100 FORMAT(I3, 1X, TL4, I3)
</code></pre>
<p>Is:</p>
<p><strong>500</strong></p>
<p>Instead of:</p>
<p><strong>100 500</strong></p>
<p>Because of the TL4 edit descriptor.</p>
<p>From these two instances one can conclude that the WRITE statement cannot overwrite what has been written by another WRITE statement or by a previous execution of the same WRITE satement (as in a DO-loop).</p>
<p>Can this be overcome somehow?</p>
<p>I am using the FTN95 compiler on Windows 7 RC1. (The setup program of the G95 compiler bluescreens Windows 7 RC1, even thought it works fine on Vista.)</p>
<p>I know about the question <a href="http://stackoverflow.com/questions/661975/supressing-line-breaks-in-fortran-95-write-statements">Supressing line breaks in Fortran 95 write statements</a>, but it does not work for me, because the answer to that question means new ouput is added to the previous output on the same line; instead of new output overwriting the previous output.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1892390/how-do-i-find-the-div-in-which-my-cursor-is-placed-at-any-moment2How do I find the DIV in which my cursor is placed at any momentSenthil2009-12-12T05:17:42Z2009-12-12T05:24:10Z
<p>How do I find the DIV in which my cursor is placed at any moment, so I can change the formatting of that area. </p>
http://stackoverflow.com/questions/1889775/datagridview-decimal-value-formatting-kosher-way0DataGridView decimal value formatting: kosher way.Captain Comic2009-12-11T17:55:07Z2009-12-11T18:08:50Z
<p>Hi,</p>
<p>I need to display decimal values in DataGridView</p>
<pre><code> if (dgvClients.SelectedRows.Count != 0)
{
DataGridViewRow row = dgvClients.SelectedRows[0];
row.Cells["NetAccountValue"].Value = info.DecimalValue;
}
</code></pre>
<p>I need to format value up to given digits after decimal separator.</p>
<p>The problem is that cell <code>Value</code> property stores reference to decimal in my case. When displayed decimal.ToString() is called and default decimal.ToString() produces unformatted string
with lots of digits.</p>
<p>One way is to create string and use String.FormatString() to achieve desired formatting
and feed it Value instead of decimal.</p>
<p>Is there some other way?</p>
http://stackoverflow.com/questions/659949/data-bound-winforms-form-how-to-format-dates1Data-bound WinForms form - how to format dates?cdonner2009-03-18T20:25:09Z2009-12-09T03:26:22Z
<p>I have a form with a date value in a TextBox control. The form uses data binding with a BindingSource against a DataSet and a SQL 2005 CE database.
Where do I control the formatting of the date? Nowhere in the properties along the way did I see a possibility to strip out the time part, for instance.</p>
<p>I could of course do it in the database and pass a string instead of a DateTime, but that's workaround and not a solution.</p>
http://stackoverflow.com/questions/1870435/recognizing-newline-characters-in-python0Recognizing newline characters in PythonMitciv2009-12-08T22:47:10Z2009-12-08T22:54:01Z
<p>So I would like to grab stdout from a subprocess and then write the output to a file using python. </p>
<p>The problem I'm having is the stdout from the subprocess loses the formatting, it contains \n's where there are newlines. I would like to write the output to a file with formatting intact, meaning instead of one line containg \n's, the file contains newlines where there are \n's.</p>
<p>Here is my existing code:</p>
<pre><code>import os, subprocess
from cStringIO import StringIO
proc = subprocess.Popen('foo.exe', shell=True, stdout=subprocess.PIPE,)
stdout_value = proc.communicate()[0]
f=open('fooOut.txt', 'w')
f.write(str(repr(stdout_value)))
f.close()
</code></pre>
<p>Current File Text: abbbb\nabbbb\naaaaab</p>
<p>What I would like:</p>
<p>abbbb</p>
<p>bbbb</p>
<p>aaaaab</p>
http://stackoverflow.com/questions/1037288/visual-studio-2008-formats-asp-tags-to-lowercase1Visual Studio 2008 formats asp tags to lowercaseTommy2009-06-24T09:20:32Z2009-12-08T15:35:34Z
<p>Recently, my Visual Studio 2008(with Resharper 4.5) has started to reformat asp tags into lowercase.</p>
<p>Example: </p>
<pre><code><asp:Repeater runat="server" id="rp">
</code></pre>
<p>becomes</p>
<pre><code><asp:repeater runat="server" id="rp">
</code></pre>
<p>and I can't find a way to make it not do this. I use Ctrl-k Ctrl-d to reformat.</p>
<p>I've tried resetting the Visual Studio settings, turning off Resharper. Nothing seems to bite.</p>
<p>I did delete a huge Reflected something folder in my Documents and Settings folder last week, could this be the reason?</p>
http://stackoverflow.com/questions/1865748/date-input-validator-dd-mmm-yy-client-side-asp-net-3-5-maskededitvalidator0Date Input Validator (dd-MMM-yy, client side) ASP.NET 3.5 + MaskedEditValidatornailitdown2009-12-08T09:22:23Z2009-12-08T10:33:09Z
<p>I need a client-side date validator on a text box.</p>
<p>BAM - Custom Validator. Operator="DataTypeCheck", Type="Date". Boo-ya.</p>
<p>Golden, except that all dates get input in the format dd-MMM-yy. This method works fine for "12/12/2009" but fails on "12-Dec-09".</p>
<p>So, how do I get client side validation of dates in whatever format I choose to enter them?</p>
<p>Culture is currently en-AU if that helps at all.</p>
<p>Any ideas appreciated, cheers.</p>
<p><strong>Update</strong></p>
<p>OK I've now got this:</p>
<pre><code><asp:TextBox ID="txtDate" Columns="10" runat="server"></asp:TextBox>
<asp:MaskedEditExtender ID="txtDate_MaskedEditExtender" runat="server"
CultureAMPMPlaceholder="" CultureCurrencySymbolPlaceholder="$"
CultureDateFormat="ddMMMyy" Mask="99-LLL-99" CultureDatePlaceholder="-" CultureDecimalPlaceholder="."
CultureThousandsPlaceholder="" CultureTimePlaceholder="" Enabled="True" ClearMaskOnLostFocus="false"
TargetControlID="txtDate">
</asp:MaskedEditExtender>
<asp:CalendarExtender ID="txtDate_CalendarExtender" PopupPosition="TopLeft" runat="server" Enabled="True" TargetControlID="txtDate" Animated="false" Format="dd-MMM-yy"></asp:CalendarExtender>
<asp:MaskedEditValidator ID="MaskedEditValidator1" runat="server"
ControlExtender="txtDate_MaskedEditExtender" ControlToValidate="txtDate"
ErrorMessage="Invalid Date" Display="Dynamic" Text="*" IsValidEmpty="true" EmptyValueMessage="*" EmptyValueBlurredText="*">*</asp:MaskedEditValidator>
</code></pre>
<p>But my masked edit validator is doing nothing.</p>
<p>Any ideas ?</p>
http://stackoverflow.com/questions/1863446/winforms-control-showing-text-and-supporting-individual-line-coloring1Winforms control showing text and supporting individual line coloringkay.herzam2009-12-07T22:44:11Z2009-12-08T01:15:48Z
<p>For a Winforms application, I'm looking for a control which is able to show text and supports individual line colors (fore and background colors per line).</p>
<p>For instance, I'd like to have line 1 with a green background color and line 4 with red.</p>