1
vote
1answer
45 views
Is there a way to control which implicit conversion will be the default used?
Suppose I have this:
class String2(val x:String) {
def *(times:Int) : String = {
val builder = new StringBuilder()
for( i <- 0 until times) {
builder.append(x)
…
2
votes
4answers
133 views
How to convert Javascript to C#
I have got some javascript code and I'd like to convert this to C#. I have no idea of the best way to structure this or if there is an easy way to convert the code.
A sample of this code is shown …
1
vote
0answers
19 views
SWF reading/rendering (outside of Flash Player)?
I would like to use SWF files as source video data within a tool chain I am developing. The problem is, I can't seem to find a consistent way to convert them, and I'm concerned about the loss of …
0
votes
3answers
52 views
C# TypeConverters and IsValid
I am trying to use System.ComponentModel.TypeConverter to cast a bunch of System.Strings to different types. These Strings may or may not be in a valid format for the TypeConverter, so I'd like to …
1
vote
3answers
60 views
C#- How to handle string terminator in the conversion
I have a binary array. In the process of conversion it into string,due to some data my string gets terminated. and it ignores next data.Have a look on my code. Is there is any mistake??
str += …
0
votes
2answers
85 views
Java:Convert long to String?
Hello friends,
I am absolutely new to Java and Blackberry development. I've started learning Java and Blackberry development. I just created sample BB app, which can allow to choose the date.
…
0
votes
1answer
20 views
How to determine UTC offset from server timezone?
I've found many examples about UTC tables and php date methods to convert it, but I still miss a simple way after got server date, to converting it into an user timezone selection on my web page.
On …
1
vote
4answers
83 views
time convert in javascript
How does one convert the following to seconds in JavaScript?
mm:ss.sss ?
What is the .sss?
0
votes
3answers
30 views
Converting Generic Dictionnary<> to ICollection<> problem
Here is an exemple of the situation:
public class ScheduleArea : IArea<Schedule>
{
//....
private Dictionary<int, ScheduleArea> subArea;
//....
#region IArea<Schedule> Members
…
0
votes
1answer
44 views
Running hg convert on Linux
I would like to convert a remote Perforce repository into a Mercurial repository on Linux.
So I have installed Python and Mercurial on a Linux box.
Then I test few hg (Mercurial's drive program) …
0
votes
2answers
52 views
What is the easiest way to convert a char array to a WCHAR array?
In my code, I receive a const char array like the following:
const char * myString = someFunction();
Now I want to postprocess it as a wchar array since the functions I use afterwards don't handle …
1
vote
4answers
104 views
Convert a video to MP4 (H.264/AAC) with ffmpeg
Hi everybody,
If I don't make a mistake, Safari currently need MP4 (H.264/AAC) video encoded for the HTML5 <video> element.
So I tried to convert a video to this format with ffmpeg. However …
0
votes
2answers
91 views
Convert unsigned char * to int * in Objective-C
I am trying to convert a unsigned char* to int * on in Objective-C on the iPhone. Is there any API that can help with the conversion?
Here's my best attempt:
-(BOOL)MyFunc:Version:(int *)nVer
{
…
0
votes
3answers
110 views
How To Remove Characters?
I'm start(really starting) an Assembly tool, at the time it only converts a decimal to a hexadecimal, but I want to remove the zeros from the result. Here is the code:
// HexConvert.cpp
#include …
0
votes
4answers
44 views
Using PHP to Convert ASCII Character to Decimal Equivalent
Can someone suggest a (preferably) graceful way to convert an ASCII character to its decimal equivalent using PHP?
