0
votes
6answers
51 views
How to calculate difference in hours (decimal) between two dates in SQL Server?
I have to calculate the difference in hours (decimal type) between two dates in SQL Server 2008.
I couldn't find any useful technique to convert datetime to decimal with 'CONVERT' …
1
vote
2answers
31 views
How do I convert a MySQL function result to tinyint(1)
Here's the problem. In MySQL's Connector/NET a TINYINT(1) field properly translates back and forth into a .NET bool value. If I select from a table with a TINYINT(1) column, everyt …
0
votes
3answers
46 views
Converting from prototype to jQuery - javascript / ajax
I'm looking for some help converting this from prototype to jQuery. I'm doing some free work for a charity and updating a system they use to track and assign volunteers. I've manag …
2
votes
2answers
88 views
How to convert NSInteger to int
hi,
e.g. NSInteger called a
[a value] is a EXC_BAD_ACCESS
how to convert NSInteger to int ?
(only small numbers < 32 are used)
0
votes
2answers
67 views
Convert Seconds Integer To HH:MM, iPhone
Hi there,
I am struggling with this. I have a value in seconds that I want to display in a label in HH:MM format. I have searched the internet for ages and found some answers, but …
0
votes
0answers
31 views
Condensing Stock Data
I have a data set that is composed as such:
2009,11,01,17,00,23,1.471700,1.472000
2009,11,01,17,01,04,1.471600,1.471900
2009,11,01,17,01,09,1.471900,1.472100
2009,11,01,17,01,1 …
0
votes
1answer
21 views
Get video dimension in C#
I'm working on asp.net using C#. My problem is I can use command line program to convert those video but I don't know how to get the dimension of the video to decide the bitrate of …
0
votes
2answers
29 views
How to convert MySQL field types?
I have already come across the convert funtion. As I understand it, the basic syntax is:
select convert(columnName, targetFieldType) as newColumnName from table;
Running this co …
0
votes
1answer
27 views
convert currency from xml + php
Hi friends,
I have an xml source for daily currency
http://www.tcmb.gov.tr/kurlar/today.xml
and i need to make a currency optional search for a portal. how can I get a specific …
2
votes
2answers
122 views
How to determine whether an object can be convert to meaningful string in C#
Hi all, I need to determine whether the ToString() method of an object will return a meaningful string instead of its class name. For example, bool, int, float, Enum, etc. returns …
1
vote
5answers
148 views
What is the best way to convert Bytes to Cardinal and vice versa
I have The following code for now.
type
TByte4 = array[0..3] of Byte; // 32-bit
function CardinalToBytes(const Data: Cardinal): TByte4;
begin
Result[0] := (Data shr 24) and 2 …
2
votes
3answers
199 views
How to convert numbers to words in Erlang?
I found this interesting question about converting numbers into "words":
http://stackoverflow.com/questions/309884/code-golf-number-to-words
I would really like to see how you wo …
0
votes
2answers
63 views
Mysql: latin1-> utf8. Convert characters to their multibyte equivalents
There was a table in latin1 and site in cp1252
I want to have table in utf8 and site in utf-8
I've done:
1) on web page: Content-Type: text/html;charset=utf-8
2) Mysql: ALTER T …
1
vote
2answers
59 views
converting java projects to c# with visual studio 2010
hello,
i remember that previous versions of visual studio contained a converter, that automatically attempt to convert java projects to the corresponding c# code.
however in visu …
0
votes
3answers
81 views
HTML > PDF with PHP?
How can i convert a html page (via $curl or something) to a pdf file?
