Tagged Questions
The formating tag has no wiki summary.
5
votes
11answers
617 views
separating php and html… why?
So I have seen some comments on various web sites, pages, and questions I have asked about separating php and html.
I assume this means doing this:
<?php
myPhpStuff();
?>
<html>
...
3
votes
6answers
125 views
How do I format numbers differently based on their value in C#?
I have an integer that I will store in a string according to the following rules:
If the number is less then 10, then it should have a 0 before it.
If it larger than 10, store it without a leading ...
3
votes
1answer
437 views
Oracle Date Formating Null date as 00/00/0000
How can I format the Null Dates in my Oracle SQL to 00/00/0000.
I am using NVL function but it doesn't recognize the 00/00/0000 as the date format.
Is there any Date Formating available in Orcle SQL ...
3
votes
4answers
505 views
Convert Money to Text in PHP
I need to convert say $89.50 to Eighty-Nine Dollars and Fifty Cents using PHP. Is there a function I'm missing somewhere?
2
votes
1answer
3k views
How set image to data grid view cell after data binding?
I have problem with adding image to DGV cell after data binding.
this is my code:
DataTable tab = conn.searchData(searchTmp);
bindingSource1.DataSource = tab;
...
2
votes
1answer
219 views
silverlight quote character in textblock
I am trying to create a textblock with oversized quotes at the start and end of some text, which I've managed to do with the following xaml:
<StackPanel Orientation="Horizontal">
...
2
votes
3answers
1k views
Changing date format to “%d/%m/%Y”
Would like to change the date format in R. My data frame is shown below and would like to change all the date formats to "%d/%m/%Y" .Any help would be appreciated!
df:
id bdate wdate ...
2
votes
1answer
135 views
how to format a transaction Id?
What is the best way to format a transaction id?
Conditions
Max 15 characters: XXXXXXXXXXXXXXX
-All transaction must be unique
-Can contain both numerical and alphabetical characters
...
2
votes
2answers
151 views
How to format the money using asian format
In India and other Asian countries money is formatted as following:
The first three digits grouped in three then all other digits are grouped in pair of two.
eg : 2,54,255.12 5,22,54,255.12 etc
...
2
votes
6answers
196 views
HTML/CSS Formating question
Im just messing around with Ruby on Rails and HTML. This question isn't about RoR, but HTML and CSS. When I center my body, I get this:
How can i get the bullets to be centered next to the text as ...
1
vote
1answer
82 views
aptana custom auto-formatting?
Using Aptana Studio 3 for php, curious if I can customize how the auto-format formats (pressing CRTL-SHIFT-F formats the current file for you)
I'd like to change something rather small, make it so ...
1
vote
3answers
69 views
Python - short way to unpack list for string formating operator?
Variations of the * or ** operators don't seem to work, unfortunately:
lstData = [1,2,3,4]
str = 'The %s are %d, %d, %d, and %d' % ('numbers', *lstData)
Is there an easy way?
1
vote
2answers
63 views
Format Double as string with Posative / Negative symbol
I'm outputting a Double that can be either (+) or negative (-). If the number is a negative the symbol (-) is included automatically, is there a way to do this for positive numbers as well?
The only ...
1
vote
2answers
51 views
eclipse, how to change method call without the addition of new brackets?
Is it posible, with eclipse, to change the called method name using of auto completion (ctrl + space) but without creating a new brackets. Otherwise I have double brackets:
person.hello()();
and ...
1
vote
3answers
77 views
SQL Server string to date conversion
I have the following query:
SELECT o.OrderNumber,
cast(o.DateOrdered as datetime),
cast(oi.Category as varchar(max))
FROM Orders o
LEFT OUTER JOIN OrderItems oi ON oi.OrderID = o.uid
...
1
vote
2answers
272 views
How do you format a number into a string with padded zeros?
Very simply in SQL Server T-SQL parlance, how do you conver the number 9 to the string N'00009'?
1
vote
1answer
304 views
Formating text in RichtextBox WPF
I try formating text in richTextBox, something like in skype chat.
1.column-"Nick" 2.column-"Text of Messange" 3.column-"DateTime"
I want alling 1. column max left and 3. ...
1
vote
1answer
426 views
Formatting Parameters section of the report in SSRS
I have several parameters on an SSRS report. There are two groups of these parameters. One group is report specific, the other group is data specific. I would like to be able to seperate these two ...
1
vote
1answer
2k views
Printf and hex values
So, I have a value of type __be16 (2 bytes). In hex, the value is represented as 0x0800 or 2048 in decimal. (16^2 * 8)
So, when I printf this; I do this:
printf("%04X", value); //__be16 value;
...
1
vote
1answer
294 views
Java DecimalFormat include all digits to the left
I'm trying to format an arbitrary length decimal so all of the numbers to the left of the decimal point are displayed but a maximum of 2 to the right are displayed (if they are non-zero). How can I ...
1
vote
6answers
1k views
Removing nonnumerical data out of a number + SQL
I'm trying find the best way to remove nonnumerical data from a varchar in SQL e.g.
'(082) 000-0000' to '0820000000' or
'+2782 000 0000' to '0820000000'
The difficulty is i'm not always sure what ...
1
vote
3answers
158 views
Emacs function to wrap text with printfs
Some lanaguages, like Perl, support printing preformatted code:
print <<EOL
a line
another line
and another.
EOL
Some languages don't.
For the ones that don't, I'd like to be able to ...
1
vote
7answers
2k views
In editor XML formatting
Hi Anyone know of a simple system of getting xml formatted inside an editor. I mainly use textpad so that would be my main interest. What I'm really asking is that when I paste an xml string from a ...
0
votes
1answer
59 views
How to 'format' text box values in WPF
Is there an easy way to have a text box display a format in a text box and remove it when editing ?
Example : I want to ask for a money value. When the user finished entering the value 5.5, it ...
0
votes
0answers
86 views
C++ Dot separation of large numbers with cout [closed]
Possible Duplicate:
Thousand separator in C++
i have some large Number as "unsigned long long" like:
1431498243532
1544355634442
845545342344
5284493424
and I want them printed by cout ...
0
votes
0answers
79 views
Decimal numbers using CarlosAg.ExcelXmlWriter
I would appreciate an answer how to solve the following problem.
I use CarlosAg.ExcelXmlWriter and I have a problem with formatting decimal numbers in Excel.
Example: I have SQL field TestField, ...
0
votes
2answers
133 views
GWT - Convert Date formating
I have following method:
public static String formatDate(Date date) {
Calendar calendar = Calendar.getInstance();
calendar.setTime(date);
Calendar today = Calendar.getInstance();
...
0
votes
0answers
91 views
C++ ofstream is changing output format randomly?
I have a function that is writing to a .txt file.
ofstream fichier("C:\\users\\me\\Desktop\\test.txt", ios::app);
then :
fichier << "some text here";
The text i'm writing is a log file ...
0
votes
1answer
40 views
CSS text formatting wrong
i have a page at this link and im trying to get the test to stay in a line stright downa dn now wrap underneath the avatar and buttons here is the HTML:
<li class="comment-item">
<a ...
0
votes
3answers
73 views
Conditional Formating in Html?
I am writing a website and I am currently working on the sign up page. I have a drop down box and I want to have that drop down box open different sign up information for each one. For example: If ...
0
votes
1answer
58 views
Parse xml and apply formating to text
I am storing some text in a XML file and want to display it in my application by applying the formating to the text in a RichTextBox or something similar (maybe it would be better to have it as a ...
0
votes
1answer
384 views
LaTeX ignoring tabs in verbatim
I need to write a whole bunch of pseudo code and I got annoyed using all the "\ >\=" with the \begin{tabbing} command, so I decided to use \begin{verbatim} instead. This was working fine for me until ...
0
votes
1answer
261 views
using javascript for format html string
I need format html string. Just like in some html editor (Netbean with Alt-Shift-F). Anyone know any js function or lib can do this?
0
votes
1answer
64 views
Modified asp button: how to prevent any change on click?
I am modifying a button and I can't figure out how to prevent it from changing
(the text moves a bit) when clicked. Any suggestions?
0
votes
1answer
172 views
Keeping the format of pasted text in a textarea without visible mark-up info
I had a case where i copied bold text from a web page into a textarea of another page. On paste, the text area kept the text's bold format. When i pasted the same text into a text file i could see ...
0
votes
2answers
484 views
Format Text Field While User Enters Data
so here is what I am trying to do. I have a birth date text field, while the user in puts text i want the field to automatically put it in the form YYYY-MM-DD. Basically while the user types it ...
0
votes
1answer
44 views
Are there any good descriptions of scientific notation formatting using printf
Please no general printf descriptions.
0
votes
2answers
64 views
Tools\addin's for formating or cleaning up xaml?
I'm guessing these don't exist since I searched around for these but I'm looking for a few tools:
1) A tool that cleans up my xaml so that the properties of elements are consistent through a file. I ...
0
votes
2answers
615 views
vb.net what is a good way of displaying a decimal with a given maximum length
I am writing a custom totaling method for a grid view. I am totaling fairly large numbers so I'd like to use a decimal to get the total. The problem is I need to control the maximum length of the ...
0
votes
1answer
140 views
C# Grid Cell Formating
IS There Any Event In C# Winform For Formating The Last Cell Or Last Row After Complete DataBinding.
0
votes
2answers
147 views
PHP text formating: Detecting several symbols in a row
I have a kind of strange thing that I really nead for my text formating. Don't ask me please why I did this strange thing! ;-)
So, my PHP script replaces all line foldings "\n" with one of the ...
0
votes
2answers
237 views
How get hours:minutes
I have a script here (not my own) which calculates the length of a movie in my satreceiver. It displays the length in minutes:seconds
I want to have that in hours:minutes
What changes do I have to ...
0
votes
1answer
416 views
Excel formating using JXL
I generating a excel sheet using jxl, a number of the columns have data that is
preceeded by a hidden apostrophe. The apostrophe can only be seen when you
click on the cell. I have looked and can't ...
0
votes
2answers
675 views
Zend_form rendering problem
I need a zend_form which will contain mostly checkboxes. I need to group them and also display a title for each group. e.g.
Heading 1
Label1 Check1
Label2 Check2
Label3 Check3
Heading 2
Label4 ...