0
votes
3answers
27 views
How to display code in plain text?
What previous result you are
referencing:(Optional)
function getSize() { var myFSO = new
ActiveXObject("Scripting.FileSystemObject");
var filepath =
document.upload.file.value; var
thefile = …
0
votes
1answer
23 views
How can I convert an Image to byte array in J2ME?
My requirement is like this. I need to read a file from the Mobile phone using a file connection, create a thumbnail of that image and post to the server. I am able to read the image using the …
0
votes
2answers
26 views
convert special characters but not tags
I've got some text which needs converting to use HTML entities, but it also contains tags. Here's a sample:
<p>Ofcom issued the warning to Global-owned GWR in Bristol – which is required to …
1
vote
2answers
42 views
NSDate - Convert Date to GMT
Hello,
I need the ability to convert a NSDate value to a GMT Date.
How can I go about converting a NSDate value to a GMT formatted NSDate value, independent of what ever date locale settings the …
0
votes
9answers
149 views
convert integer to array, c++
I would like to convert an integer into an array, so that it looks like the following:
int number = 123456 ;
int array[7] ;
with the result:
array[0] = 1
array[1] = 2
...
array[6] = 6
0
votes
1answer
47 views
Convert String to DateTime?
How can I convert this string, 12:00 AM, into a DateTime?
0
votes
1answer
15 views
Convert TIFF to PostScript
I'm writing .net code (Windows Forms Application) which reads a TIFF image (CMYK) and sends it to printer (using WritePrinter). Before I send it, I need to convert the TIFF image to PostScript. Could …
0
votes
1answer
19 views
Library or code to convert digit in letters
Could you suggest me a code or a library (possibly java) to convert digits (e.g. 24) in letters (e.g. twenty-four)? Obviously I need to change locale (from English to Italian).
Thank you in advance …
0
votes
1answer
45 views
Properly Converting NSString to CGFloat, NSInteger, etc.
I have a question about safely or properly converting an NSString into types such as CGFloat and NSInteger, considering that these are simply wrapper types that Apple created to use different …
0
votes
4answers
109 views
Spell a number in .NET [closed]
Possible Duplicate:
C# Convert Integers into Written Numbers
Hello,
I'm sure this question is already somewhere on this site but couldn't find it, I also know I could 'roll-my-own' but …
1
vote
0answers
27 views
What strategy should be used for converting real world dimensions to WPF units?
We have an application that will be reading real world dimensions from the DB in milimetres, these values will then be presented to the user in WPF. Currently I'm using the following strategy when …
-1
votes
0answers
45 views
How to add glowing outline around object stored in transparent png ? [closed]
I have 32-bit png with transparency. Image contains object on transparent background. Object might be semi transparent.
I want to use ImageMagick to add glowing outline around the object. Color of …
0
votes
2answers
33 views
php convert date to datetime
hi,
i need to convert a date in this format:
November 28, 2009
to a mysql date format:
2009-28-11
what's the best method to convert the date using php?>
thanks.
0
votes
1answer
36 views
PHP Print_r to AS3 Array conversion
I find myself frequently outputting PHP Array data into AS3 applications and I'm always having to do it the hard way - comma delimated, base-64 converted data with custom packers/unpackers on either …
2
votes
4answers
111 views
What is the fool proof way to convert some string (utf-8 or else) to a simple ASCII string in python
Inside my python scrip, I get some string back from a function which I didn't write. The encoding of it varies. I need to convert it to ascii format. Is there some fool-proof way of doing this? I …
