active questions tagged conversion - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T05:33:11Zhttp://stackoverflow.com/feeds/tag/conversionhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1816176/how-to-convert-seconds-to-hhmmss-with-the-djangos-date-template-tag0How to convert seconds to hh:mm:ss with the Django's date template tag ?pierre-guillaume-degans2009-11-29T17:46:02Z2009-11-29T20:44:22Z
<p>Hello,</p>
<p>Edit : is there a way to easily convert <code>{{ value|date:"Z" }}</code> to one of the +hh:mm or -hh:mm formats (because date:"Z" returns xxxx or -xxxx seconds).</p>
<p>Show <a href="http://dev.w3.org/html5/spec/Overview.html#valid-global-date-and-time-string" rel="nofollow">this</a> for more explanations about the needed format.</p>
<p>Thank you and sorry for my ugly english. ;)</p>
http://stackoverflow.com/questions/887943/cannot-convert-type-string-to-int-via-a-reference-conversion-boxing-convers0cannot convert type 'string' to 'int?' via a reference conversion, boxing conversion, unboxing conversion, wrapping conversion or null type conversionJuan Carlos Blanco Martínez2009-05-20T13:36:29Z2009-11-29T10:42:30Z
<p>Hi,</p>
<p>I'm going to try to make myself clearer. Why does C# accept the following:</p>
<pre><code>object o = "hello";
int? i = o as int?;
if (i == null) {
// o was not a boxed int
}
else {
// Can use i.Value to recover the original boxed value
}
</code></pre>
<p>and not</p>
<pre><code>String = "hello";
int? i = o as int?;
if (i == null) {
// o was not a boxed int
}
else {
// Can use i.Value to recover the original boxed value
}
</code></pre>
<p>I'm NOT trying to find a way to convert a string into an int. I already know how to reach it. I'm just wondering about the behaviour of the keyword as in C# </p>
<p>String inherits from System.Object, so why does the first conversion work but not the second one? </p>
http://stackoverflow.com/questions/317854/easiest-way-or-best-tools-to-convert-word-text-to-clean-xhtml2Easiest way or Best tools to convert word text to clean (X)HTMLSalt Packets2008-11-25T16:03:42Z2009-11-28T21:19:39Z
<p>This might have been asked in another way. I am not doing it on the fly however. Once in a while we get pieces of content in word files that have em dashes, bold, italic text and block quotes. Is there a good tool to convert this into a clean html code. </p>
<p>Otherwise what other approaches people take. </p>
http://stackoverflow.com/questions/1812725/how-convert-byte-to-decimal-1How convert byte to decimal?Mohd Rizal2009-11-28T15:07:36Z2009-11-28T17:05:04Z
<p>Hi...</p>
<p>Please guide me how make convert that input to decimal.tq.</p>
<pre><code>BF C2 FF 12
65 E4 EE
17 BF C2 64 F2 41 84 11
C1 C4 38 41 14 10 C1 04 10 49 04 18 41 06 72 B5 FF
17 BF C2 64 72
41 84 11 C1 85 19 C1 07 17 7D C2 5F 3D 5E FD DE 57 FD 10 E1 94 30 B5 FF
17 BF C2 FF 12
65 CC 76
17 BF C2 FF 12
69 FC 77
</code></pre>
http://stackoverflow.com/questions/1356600/pdf-doc-and-execl-to-image-conversion-tool-for-web-application0PDF, DOC and Execl to image conversion tool for web applicationharendra2009-08-31T09:16:42Z2009-11-28T13:00:01Z
<p>Hi all
can you please suggest some web tool (will provide DLL) to convert doc, excel and PDF to image at minimum cost. i m a dot.net developer and need to implement these feature in my web application....</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1810073/sql-server-convertnumeric18-0-fails-but-convertint-succeeds0SQL Server CONVERT(NUMERIC(18,0), '') fails but CONVERT(INT, '') succeeds?Dr. Zim2009-11-27T18:17:56Z2009-11-28T12:33:40Z
<p><code>PRINT CONVERT(NUMERIC(18,0), '') </code> </p>
<p>produces <code>Error converting data type varchar to numeric.</code></p>
<p>However,</p>
<p><code>PRINT CONVERT(INT, '')</code> </p>
<p>produces <code>0</code> without error...</p>
<p>Question: Is there some SQL Server flag for this or will I need to do case statements for every varchar to numeric conversion? (aside from the obvious why?)</p>
http://stackoverflow.com/questions/1805101/svg-elliptical-arcs-with-java0SVG Elliptical Arcs with JavaPierre2009-11-26T18:30:17Z2009-11-28T06:44:35Z
<p>I recently wrote a java <a href="http://plindenbaum.blogspot.com/2009/11/tool-converting-svg-to-canvas%5F22.html" rel="nofollow">program</a> transforming a <strong>SVG</strong> document to HTML/<strong>Canvas</strong>: It was easy to translate a path such as </p>
<pre><code>d="M 0 0 L 100 100 z"
</code></pre>
<p>to something like</p>
<pre><code>GeneralPath L= new GeneralPath();
L.moveTo(0,0);
L.lineTo(100,100);
L.closePath();
</code></pre>
<p>However I don't know how to translate the <strong>Elliptical Arc</strong> command to Java/GeneralPath. For example, does anyone know how I should translate the following command to Java/GeneralPath ? </p>
<pre><code>d = "M 750 200 a 100 50 135 1 1 250 50"
</code></pre>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1809468/algorithm-to-convert-infinitely-long-base-232-number-to-printable-base-101Algorithm to convert infinitely long base 2^32 number to printable base 10.Rich2009-11-27T15:51:28Z2009-11-27T17:28:55Z
<p>I'm representing an infinitely precise integer as an array of unsigned ints for processing on a GPU. For debugging purposes I'd like to print the base 10 representation of one of these numbers, but am having difficulty wrapping my head around it. Here's what I'd like to do:</p>
<pre><code>//the number 4*(2^32)^2+5*(2^32)^1+6*(2^32)^0
unsigned int aNumber[3] = {4,5,6};
char base10TextRepresentation[50];
convertBase2To32ToBase10Text(aNumber,base10TextRepresentation);
</code></pre>
<p>Any suggestions on how to approach this problem?</p>
<p><strong>Edit: Here's a complete implementation thanks to drhirsch</strong></p>
<pre><code>#include <string.h>
#include <stdio.h>
#include <stdint.h>
#define SIZE 4
uint32_t divideBy10(uint32_t * number) {
uint32_t r = 0;
uint32_t d;
for (int i=0; i<SIZE; ++i) {
d = (number[i] + r*0x100000000) / 10;
r = (number[i] + r*0x100000000) % 10;
number[i] = d;
}
return r;
}
int zero(uint32_t* number) {
for (int i=0; i<SIZE; ++i) {
if (number[i] != 0) {
return 0;
}
}
return 1;
}
void swap(char *a, char *b) {
char tmp = *a;
*a = *b;
*b = tmp;
}
void reverse(char *str) {
int x = strlen(str);
for (int y = 0; y < x/2; y++) {
swap(&str[y],&str[x-y-1]);
}
}
void convertTo10Text(uint32_t* number, char* buf) {
int n = 0;
do {
int digit = divideBy10(number);
buf[n++] = digit + '0';
} while(!zero(number));
buf[n] = '\0';
reverse(buf);
}
int main(int argc, char** argv) {
uint32_t aNumber[SIZE] = {0,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF};
uint32_t bNumber[4] = {1,0,0,0};
char base10TextRepresentation[50];
convertTo10Text(aNumber, base10TextRepresentation);
printf("%s\n",base10TextRepresentation);
convertTo10Text(bNumber, base10TextRepresentation);
printf("%s\n",base10TextRepresentation);
}
</code></pre>
http://stackoverflow.com/questions/1806617/using-silverlight-to-display-images-from-a-network-server1Using Silverlight to display images from a network server. Edward2009-11-27T03:34:47Z2009-11-27T07:34:03Z
<p>I need to display images from a network server that generates tiff images. I would like to use silverlight 3 to display these images. I would like to stream the jpeg to the client. Is this possible if the images "live" on a server other than the web server? </p>
http://stackoverflow.com/questions/1796410/conversion-deadlock-problem-please-help1Conversion Deadlock problem, please help!Defdaz2009-11-25T11:40:15Z2009-11-26T14:51:25Z
<p>Hi all, really hope you can help.</p>
<p>We've got a problem with conversion deadlocking going on within one environment (the same proc + trigger works in at least four other environments). </p>
<p>The stored proc in question inserts a row into a table (cmsreceipt) that has a trigger which updates another table (cmsreceiptarchive). To try and prevent deadlocks a select on the cmsreceiptarchive table with xlock, rowlock is done before the insert to get a lock on the table that the trigger updates. This works in four versions of the db but not in this one environment (sql 2005).</p>
<p>I'll copy the deadlock graph below but to me it seems as though we're getting table scans that are taking to long to complete on table CmsReceipt and this allows another SPID running the same proc to get a shared lock on the table too and then they both try and get IX locks once they're ready to do the update on CmsReceipt.</p>
<p>I've checked the indexes (a clustered index and two non-clustered) and they match the other databases that work fine so I don't know why we're getting table scans on this db but not in the others. </p>
<p>I've tried all sorts of hints (both in the main process and the trigger) but to no avail.</p>
<p>Help! Thanks in advance for any help.</p>
<pre><code><deadlock-list>
<deadlock victim="process76d5708">
<process-list>
<process id="process76d5708" taskpriority="0" logused="0" waitresource="OBJECT: 7:1550628567:0 " waittime="4776" ownerId="34034594" transactionguid="0x4e9e61bf45eed2429a05ad44fa09ec50" transactionname="user_transaction" lasttranstarted="2009-11-24T15:51:12.280" XDES="0x1e0ca5970" lockMode="IX" schedulerid="8" kpid="14340" status="suspended" spid="57" sbid="2" ecid="0" priority="0" trancount="3" lastbatchstarted="2009-11-24T15:51:17.513" lastbatchcompleted="2009-11-24T15:49:54.807" clientapp=".Net SqlClient Data Provider" hostname="XXX" hostpid="4804" loginname="XXXX" isolationlevel="serializable (4)" xactid="34034594" currentdb="1" lockTimeout="4294967295" clientoption1="673185824" clientoption2="128056">
<executionStack>
<frame procname="XXX.dbo.Main_InsertCmsReceipt" line="43" stmtstart="2388" stmtend="3096" sqlhandle="0x03000700d7b7b271d2daf900cb9c00000100000000000000">
insert into CmsReceipt with (updlock) (
CmsReceiptId,
ModifiedAt,
ModifiedBy,
CmsMessageId,
Status,
Details,
ReceiptTimestamp,
SenderName,
SenderId
)
values (
@New_CmsReceiptId,
@New_ModifiedAt,
@New_ModifiedBy,
@New_CmsMessageId,
@New_Status,
@New_Details,
@New_ReceiptTimestamp,
@New_SenderName,
@New_SenderId
) </frame>
</executionStack>
<inputbuf>
Proc [Database Id = 7 Object Id = 1907537879] </inputbuf>
</process>
<process id="process70a1dc8" taskpriority="0" logused="0" waitresource="OBJECT: 7:1550628567:0 " waittime="4498" ownerId="34034604" transactionguid="0x6719e8b21f633a48bf47c77a62f2af2c" transactionname="user_transaction" lasttranstarted="2009-11-24T15:51:12.483" XDES="0x1e1a77970" lockMode="IX" schedulerid="6" kpid="13632" status="suspended" spid="69" sbid="2" ecid="0" priority="0" trancount="3" lastbatchstarted="2009-11-24T15:51:17.780" lastbatchcompleted="2009-11-24T15:49:54.807" clientapp=".Net SqlClient Data Provider" hostname="XXXX" hostpid="4804" loginname="XXXXXX" isolationlevel="serializable (4)" xactid="34034604" currentdb="1" lockTimeout="4294967295" clientoption1="673185824" clientoption2="128056">
<executionStack>
<frame procname="XXX.dbo.Main_InsertCmsReceipt" line="43" stmtstart="2388" stmtend="3096" sqlhandle="0x03000700d7b7b271d2daf900cb9c00000100000000000000">
insert into CmsReceipt with (updlock) (
CmsReceiptId,
ModifiedAt,
ModifiedBy,
CmsMessageId,
Status,
Details,
ReceiptTimestamp,
SenderName,
SenderId
)
values (
@New_CmsReceiptId,
@New_ModifiedAt,
@New_ModifiedBy,
@New_CmsMessageId,
@New_Status,
@New_Details,
@New_ReceiptTimestamp,
@New_SenderName,
@New_SenderId
) </frame>
</executionStack>
<inputbuf>
Proc [Database Id = 7 Object Id = 1907537879] </inputbuf>
</process>
</process-list>
<resource-list>
<objectlock lockPartition="0" objid="1550628567" subresource="FULL" dbid="7" objectname="XXX.dbo.CmsReceipt" id="lock9c4eec80" mode="S" associatedObjectId="1550628567">
<owner-list>
<owner id="process70a1dc8" mode="S"/>
</owner-list>
<waiter-list>
<waiter id="process76d5708" mode="IX" requestType="convert"/>
</waiter-list>
</objectlock>
<objectlock lockPartition="0" objid="1550628567" subresource="FULL" dbid="7" objectname="XXX.dbo.CmsReceipt" id="lock9c4eec80" mode="S" associatedObjectId="1550628567">
<owner-list>
<owner id="process76d5708" mode="S"/>
</owner-list>
<waiter-list>
<waiter id="process70a1dc8" mode="IX" requestType="convert"/>
</waiter-list>
</objectlock>
</code></pre>
<p>PS Is there an easier way than 4 spaces at the start of each line to get the xml to show?</p>
http://stackoverflow.com/questions/1797806/parsing-a-hex-formated-dec-32-bit-single-precision-floating-point-value-in-python1Parsing a hex formated DEC 32 bit single precision floating point value in pythonKristofer2009-11-25T15:43:56Z2009-11-26T11:46:14Z
<p>I'm having problems parsing a hex formatted DEC 32bit single precision floating point value in python, the value I'm parsing is represented as D44393DB in hex. The original floating point value is ~108, read from a display of the sending unit.</p>
<p>The format is specified as:
1bit sign + 8bit exponent + 23bit mantissa.
Byte 2 contains the sign bit + the 7 most significant bits of the exponent
Byte 1 contains the least significant bit of the exponent + the starting most significant bits of the mantissa.</p>
<p>The only thing I have found that differs in the two formats is the bias of the exponent which is 128 in DEC32 and 127 in IEEE-754 (<a href="http://www.irig106.org/docs/106-07/appendixO.pdf" rel="nofollow">http://www.irig106.org/docs/106-07/appendixO.pdf</a>)</p>
<p>Using <a href="http://babbage.cs.qc.edu/IEEE-754/32bit.html" rel="nofollow">http://babbage.cs.qc.edu/IEEE-754/32bit.html</a> does not give the expected result.</p>
<p>/Kristofer</p>
http://stackoverflow.com/questions/1795854/empty-main-form-in-gui-app-converted-from-delphi-to-lazarus1Empty main form in GUI app converted from Delphi to LazarusMichal Niklas2009-11-25T09:58:22Z2009-11-26T07:38:36Z
<p>I have converted my 2 GUI apps from Delphi to Lazarus.
Both apps compile for Win32 platform, i386 and with GUI.
Main form were converted using Lazarus tool and can be edited from IDE.
But when I run such application main form does not appear, only blank form without any controls.</p>
<p>I tried to debug this. It runs all code in initialization sections,
and runs code from .lpr project, but something wrong happens in CreateForm() because
it doesn't run code in the main form OnCreate event. In event log I can see all
texts I write to it with <code>'<App.Run'</code> appearing after I close this empty form.</p>
<p>Code in .lpr project:</p>
<pre><code> Application.Initialize;
AddToEventLogInfo('App.CreateForm');
Application.CreateForm(TfrmTst, frmTst);
AddToEventLogInfo('App.Run>');
Application.Run;
AddToEventLogInfo('<App.Run');
</code></pre>
<p>I checked that I am able to create simple GUI apps from the Lazarus, but both converted GUI
apps do not work as expected. What can be wrong? Have I missed something?
Maybe one of many warnings and hints Lazarus write is important?</p>
<p>When I run my app Lazarus writes this:</p>
<pre><code> windres: warning: 14: "MAINICON": 1045: duplicate value
windres: warning: 16: 1: 1045: duplicate value
Project "Tst_fpc" successfully built. :)
</code></pre>
<p><strong>EDIT:</strong></p>
<p>Lazarus conversion tool converted .dfm -> .lfm, but has some problems with .pas file. I had to manually:</p>
<ol>
<li><p>add Lazarus units to uses:</p>
<p>uses
{$IFDEF FPC}
LCLIntf, LResources,
{$ENDIF}</p></li>
<li><p>Conditional compile Delphi form {$R *.dfm}:</p>
<p>{$IFNDEF FPC}
{$R *.dfm}
{$ENDIF}</p></li>
<li><p>Add .lrs resource in initialization code:</p>
<p>initialization
{$IFDEF FPC} {$i myunit.lrs} {$ENDIF}</p></li>
</ol>
http://stackoverflow.com/questions/1801197/how-to-convert-nsnumber-objects-for-computational-purposes1How to convert NSNumber objects for computational purposes?John R Doner2009-11-26T02:11:43Z2009-11-26T02:16:07Z
<p>I an developing some code in which I use a scanner to get to NSNumbers from a string, say x and y.</p>
<p>Now I want to compute something simple from x and y, say, z = 10.0/(x + y/60.0)/60.0). I can't do this directly, since the compiler doesn't like ordinary arithmetic symbology applied to number objects.</p>
<p>So, I tried defining xD and yD, of type double, and then tried a type conversion</p>
<p>xD = (double) x;
yD = (double) y;</p>
<p>but that also gives a compile error. Just how does one get NSNumber objects converted to be used in ordinary arithmetic expressions? I did considerable browsing of the literature, and didn't find the answer.</p>
<p>Thanks in advance for any help.</p>
<p>John Doner</p>
http://stackoverflow.com/questions/1800875/convert-single-char-to-int0Convert single char to intRaptrex2009-11-26T00:18:08Z2009-11-26T01:22:58Z
<p>How can I convert char a[0] into int b[0] where b is a empty dynamically allocated int array</p>
<p>I have tried</p>
<pre><code>char a[] = "4x^0";
int *b;
b = new int[10];
char temp = a[0];
int temp2 = temp - 0;
b[0] = temp2;
</code></pre>
<p>I want 4 but it gives me ascii value 52</p>
<p>Also doing</p>
<pre><code>a[0] = aoti(temp);
</code></pre>
<p>gives me
error: invalid conversion from ‘char’ to ‘const char*’
initializing argument 1 of ‘int atoi(const char*)’</p>
http://stackoverflow.com/questions/1794241/mac-file-name-conversion0Mac File Name Conversionddyer2009-11-25T02:11:33Z2009-11-25T02:11:33Z
<p>I'm looking for the officially sanctioned algorithm to convert from mac
FSSpec to a HFS full path name (ie: one with colons) that includes the volume.
Preferably expressed in C</p>
http://stackoverflow.com/questions/1606878/converting-binary-to-decimal-in-ocaml0converting binary to decimal in ocamlPolly Hollanger2009-10-22T12:30:02Z2009-11-24T15:07:18Z
<p>How could I convert binary to decimal in ocaml in the following,
If I am representing binary numbers like the following 01 is [False; True] which equals 2? I want to write a method to return the double of the number in decimal form. For example in this case the method will take in [False; True] and return [False; False, True] which is 4.</p>
http://stackoverflow.com/questions/977105/ever-done-a-total-rewrite-of-a-large-c-application-in-c12Ever done a total rewrite of a large C++ application in C#?Dana Holt2009-06-10T17:38:02Z2009-11-24T08:05:49Z
<p>I know <a href="http://www.joelonsoftware.com/articles/fog0000000069.html" rel="nofollow">Joel says to never do it</a>, and I agree with this in most cases. I do think there are cases where it is justified.</p>
<p>We have a large C++ application (around 250,000 total lines of code) that uses a MFC front end and a Windows service as the core components. We are thinking about moving the project to C#.</p>
<p>The reasons we are thinking about rewriting are:</p>
<ol>
<li>Faster development time</li>
<li>Use of WCF and other .NET built-in features</li>
<li>More consistent operation on various
systems</li>
<li>Easier 64 bit support</li>
<li>Many nice .NET libraries and
components out there</li>
</ol>
<p>Anyone done a rewrite like this? Was it successful?</p>
<p><hr /></p>
<p><strong>EDIT:</strong></p>
<p>The project is almost 10 years old now, and we are getting to the point that adding new features we want would be writing significant functionality that .NET already has built-in. </p>
http://stackoverflow.com/questions/1787881/convert-any-file-to-csv-formate-2convert any file to .csv formate [closed]Lalit Dhake2009-11-24T04:55:08Z2009-11-24T05:01:25Z
<p>Hi all,</p>
<p>I have many files, each have different extensions. I want to convert those into .csv format, using C#. What code I have to write?</p>
http://stackoverflow.com/questions/1785582/best-way-to-convert-pdf-to-powerpoint-serverside-in-net0Best way to convert PDF to PowerPoint serverside in .NETdiadem2009-11-23T20:03:40Z2009-11-23T20:15:22Z
<p>I have a PDF file that I want to convert to PowerPoint using .NET. What is the best tool for the job? The most important part of the conversion is that it looks as similar to the source as possible. Well, that and it can be done programmaticly.</p>
http://stackoverflow.com/questions/332030/when-should-staticcast-dynamiccast-and-reinterpretcast-be-used25When should static_cast, dynamic_cast and reinterpret_cast be used?eJames2008-12-01T20:11:07Z2009-11-23T08:36:32Z
<p>I am reasonably proficient in C++, but I do not have a lot of experience using the cast operators to convert pointers of one type to another. I am familiar with the risks and benefits of pointer casting, as well as the evils of using C-style casts. What I am looking for is a primer on the proper ways to use the various cast operators in C++.</p>
<p>What are the proper uses of <code>static_cast</code>, <code>dynamic_cast</code> and <code>reinterpret_cast</code>, and how does one decide which one to use in a specific case?</p>
http://stackoverflow.com/questions/1781688/culture-conversion-in-c-with-datetime0Culture-conversion in C# with DateTimeApoY2k2009-11-23T07:58:17Z2009-11-23T08:11:55Z
<p>I'm having trouble getting my ASPX-App to work on the productive server. As my local environment is german but the server is english and my whole code didn't provide culture-support, I'm currently implementing that throughout the script.</p>
<p>As you might think, as I'm writing this in here, it doesn't quite work the way I want it to.</p>
<p>The App uses a MSSQL-Database for gathering information that is based on dateranges. So, I use the user-selected daterange for calculation using <code>Date BETWEEN x AND y</code>.</p>
<p>The dates are set by the user and parsed in the script to datetime-values to be able to handle them:</p>
<pre><code>_DateRangeStart = DateTime.Parse(DateStart + " 00:00:00", _Culture);
_DateRangeEnd = DateTime.Parse(DateEnd + " 23:59:59", _Culture);
</code></pre>
<p>Where <code>_Culture</code> is defined as following:</p>
<pre><code>public CultureInfo _Culture = CultureInfo.GetCultureInfo("de-DE");
</code></pre>
<p>and <code>_DateRangeStart</code> (and <code>End</code>) are the user-input from text-fields.</p>
<p>So, as I look into the skript, it shows me that the user input is transformed from <code>1.11.2009</code> (which is a correct german formatted date) to <code>11/1/2009 00:00:00 AM</code>, which should be <code>1.11.2009 00:00:00</code> (for _DateRangeStart).</p>
<p>This value cannot be read by the SQL and it gives me an error that converting a char to a valid datetime was not possible.</p>
<p>Why is the conversion not done correctly?</p>
http://stackoverflow.com/questions/1779385/convert-java-syntax-to-actionscript0Convert java syntax to actionscriptsharvey2009-11-22T17:43:48Z2009-11-22T17:51:12Z
<p>I'm porting an existing java library to actionscript and since they are both realy similar, 95% of the work is simply flipping variable and function definition around.</p>
<pre><code>public int foo(int bar) {}
//converts to
public function foo(bar:int):void {}
</code></pre>
<p>Boring stuff.</p>
<p>Is there a tool to automate the transition between java syntax and actionscript? I'm not looking to compile java to swf, just transform the source code to be (often nonworking) actionscript.</p>
http://stackoverflow.com/questions/1775859/how-to-convert-a-unichar-value-to-an-nsstring-in-objective-c2How to convert a unichar value to an NSString in Objective-C? Terry2009-11-21T15:57:21Z2009-11-21T20:28:26Z
<p>Hi there,</p>
<p>I've got an international character stored in a unichar variable. This character does not come from a file or url. The variable itself only stores an unsigned short(0xce91) which is in UTF-8 format and translates to the greek capital letter 'A'. I'm trying to put that character into an NSString variable but i fail miserably.</p>
<p>I've tried 2 different ways both of which unsuccessful:</p>
<pre><code>unichar greekAlpha = 0xce91; //could have written greekAlpha = 'Α' instead.
NSString *theString = [NSString stringWithFormat:@"Greek Alpha: %C", greekAlpha];
</code></pre>
<p>No good. I get some weird chinese characters. As a sidenote this works perfectly with english characters.</p>
<p>Then I also tried this:</p>
<pre><code>NSString *byteString = [[NSString alloc] initWithBytes:&greekAlpha
length:sizeof(unichar)
encoding:NSUTF8StringEncoding];
</code></pre>
<p>But this doesn't work either.
I'm obviously doing something terribly wrong, but I don't know what.
Can someone help me please ?
Thanks!</p>
http://stackoverflow.com/questions/1766208/unix-timestamp-to-net-datetime0Unix timestamp to .net DateTimeNicolas Cadilhac2009-11-19T20:15:00Z2009-11-20T01:31:37Z
<p>I must be doing an obvious mistake but I can't figure it out.</p>
<p>I am importing a date stored in a mysql database (it is stored by the ExpressionEngine CMS). It is a unix timestamp, i.e. seconds since 1/1/1970 00:00.</p>
<p>So I'm doing something like this:</p>
<pre><code>DateTime dateTime = new System.DateTime(1970, 1, 1, 0, 0, 0, 0);
dateTime = dateTime.AddSeconds(orderdate /* int read from the database */);
</code></pre>
<p>Unfortunately I don't get the right result. Here is an example:</p>
<p>Value read from the DB: <strong>1258598728</strong> (this is an order date)</p>
<p>Paypal sent an email establishing the order at <strong>Nov 18, 2009 12:45:20 PST</strong></p>
<p>The php web site that reads this value in the DB and knows how to display this date correctly displays it as <strong>2009-11-18 03:45 PM</strong> (which seems correct since I’m hosted at a server on the east coast)</p>
<p>My code above gives <strong>11/19/2009 2:45:28 AM</strong> !! (UTC which gives 11/18/2009 9:45 PM east time, i.e. 6 hours difference with what is expected)</p>
<p>I get the same result if using DateTimeOffset taking care of putting the right timezone.</p>
<p>Any idea what I'm doing wrong?</p>
http://stackoverflow.com/questions/1766124/reading-to-get-back-into-java-development0Reading to get back into Java development?jasonh2009-11-19T19:58:42Z2009-11-19T23:52:42Z
<p>I haven't done much Java development in about six years or so. I may have the need soon to port a C# application to Java so as to make it run on both Windows and the company standard flavor of Linux (for reasons I can't discuss). The thing I want to know is, what is the best reading material to brush up on changes to Java since then, so I can make the port as smooth as possible. </p>
<p>I'm currently running on the .NET Framework 3.5 and making use of lambdas, extension methods and LINQ. This is a client side application with no web service calls or database calls. I do use various network protocols to talk to other machines, but I am already researching components to replace the ones we're using now (Dart Telnet, SharpSSH, etc.)</p>
<p>Mostly I'm looking for what has changed in the Java language and BCL since then. I don't recall generics, <code>foreach</code> loops, and boxing and unboxing was a PITA. Is there any equivalent for extension methods, lambdas and LINQ?</p>
http://stackoverflow.com/questions/1764102/expression-constantvalue-type-type-is-unknown-how-to-define-the-type1Expression.Constant(value, type) type is unknown. How to define the typeMiau2009-11-19T15:29:20Z2009-11-19T15:37:56Z
<p>Hi there:</p>
<p>So the problem is
I have the following line wehre <strong>value</strong> is a string</p>
<pre>
var filterValue = Expression.Constant(value, property.Type);
</pre>
<p>if property.Type is a string everything is fine however the type really could be anything, like a <strong>decimal?</strong></p>
<p>I dont know how to make this work for all different types
I have this function</p>
<pre>
private static T Parse (string value)
{
return (T)TypeDescriptor.GetConverter(typeof(T)).ConvertFromString(value);
}
</pre>
<p>using that I can do this:</p>
<pre>
var newValue = Parse(value);
var filterValue = Expression.Constant(newValue, property.Type);
</pre>
<p>however I would have to know in advance the type , I tried</p>
<pre>
var newValue = Parse(value);
</pre>
<p>but that doesnt work</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1763428/wmf-emf-file-format-conversion-c0WMF / EMF File Format conversion C#FlaCracker2009-11-19T13:51:16Z2009-11-19T13:51:16Z
<p>In my program, I have a requirement to "playback" or "parse" windows metafiles (WMF and EMF). I have dug through MSDN and Google, and the closest I have come is the Graphics. EnumerateMetafile method. I can get it to work, in that my EnumerateMetafileProc callback is called, and I can then call PlayRecord. What is missing, is how to get usefull data out of that callback.</p>
<p>Example I looked at: <a href="http://msdn.microsoft.com/en-us/library/ms142060.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms142060.aspx</a></p>
<p>The callback has a recordType parameter, which is an ENUM. Well this looks useful, except their seems to be no way to cast the data into any useful type.</p>
<p>My goal is to play back the creation of the WMF/EMF, so that I can make function calls to a specialized graphics class which has methods like (DrawLine, DrawPoint, DrawArc). In a sense, I am re-creating the WMF/EMF drawing in a completely different format (Converting).</p>
<p>Any help in this is extremely appreciated.</p>
http://stackoverflow.com/questions/1236805/cannot-convert-object-recieved-from-ajax-call-into-a-long0Cannot convert object, recieved from ajax call, into a longMatt2009-08-06T03:15:08Z2009-11-18T19:34:51Z
<p>I'm using Asp.Net-Mvc, I have this method in my controller:</p>
<pre><code> [AcceptVerbs(HttpVerbs.Post)]
public ActionResult LinkAccount(string site, object id)
{
return this.Json(id);
}
</code></pre>
<p>Here's the ajax method that calls it:</p>
<pre><code>$.post("/Account/LinkAccount", { site: "Facebook",
id: FB.Facebook.apiClient.get_session().uid },
function(result) {
alert(result);
}, "json"
);
</code></pre>
<p>returning this.Json(id); makes the alert work... it alerts 7128383 (something similar to that).</p>
<p>but if I change <code>this.Json(id)</code> to <code>this.Json(Conver.ToInt64(id));</code> the alert does not fire...</p>
<p>Any idea of why I can't convert an object received from an object to a long?</p>
<p><em>I already know changing the <code>LinkAccount</code> method to accept a long instead works just fine. It's just I need it as an object because some other sites I'm linking up have strings for id's rather than longs.</em></p>
<p><strong>UPDATE:</strong> I tried running the code on localhost so I could set a breakpoint. First I changed the line <code>return this.Json(Convert.ToInt64(id));</code> to <code>long idAsLong = Convert.ToInt64(id));</code>. Here's what the debugger is telling me:</p>
<ul>
<li><p>When I hover over id it says: "<strong>id | {string[1]}</strong>"<br/>
and when I press the plus button is shows: "<strong>[0] | '7128383'</strong>"</p></li>
<li><p>When I hover over idAsLong, it says: "<strong>idAsLong | 0</strong>"</p></li>
</ul>
<p>Why isn't it converting it properly?</p>
http://stackoverflow.com/questions/1756860/implicit-conversion-from-void-to-xmldocument1Implicit conversion from void to XmlDocumentApoY2k2009-11-18T15:39:19Z2009-11-18T15:44:34Z
<p>Probably a stupid question, but I'm quite new to the whole "get-and-set-property"-kind of programming;</p>
<p>I keep getting a compiling-error on this part of my code;</p>
<pre><code>private string _File = "Session.xml";
private XmlDocument XmlDoc
{
get
{
XmlDocument _Doc = new XmlDocument();
return _Doc.LoadXml(_File);
}
}
private XmlElement XmlRoot
{
get
{
return XmlDoc.DocumentElement;
}
}
</code></pre>
<p>How come? I can't explain that to myself as I don't even see any implicit conversions...</p>
http://stackoverflow.com/questions/243853/converting-doc-files-to-pdf3Converting .doc files to .pdfngn2008-10-28T16:03:58Z2009-11-18T12:34:32Z
<p>Anybody aware of a piece of software which could do MS Office .doc to .pdf conversion for me?</p>
<p>I already tried OpenOffice but it appeared to be rather slow and resource-hungry for large documents.</p>