Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
403 views

How to convert a double to a C# decimal in C++?

Given the reprensentation of decimal I have --you can find it here for instance--, I tried to convert a double this way: explicit Decimal(double n) { DoubleAsQWord doubleAsQWord; ...
5
votes
9answers
11k views

std::string to float or double

i'm trying to convert std::string to float/double. I tried: std::string num = "0.6"; double temp = (double)atof(num.c_str()); But it always returns zero. Any another ways? You could see debugger ...
5
votes
2answers
9k views

Parser Error Message: The file '/TestSite/Default.aspx.cs' does not exist

Short story. This site was created by a friend of mine, who did not know that much C# or asp. And was firstly created in VS 2k3. When i converted it to VS 2k8 these errors started to crop up, there ...
4
votes
6answers
241 views

What is the best way of converting a number to a alphabet string?

What is the best way of converting a multi-digit number to a alphabet string in C#. For example, if I have a number say, int digits = 1234567890 I want this to be converted to a string ...
4
votes
3answers
205 views

Help C++ifying this C style code

Hey I'm used to developing in C and I would like to use C++ in a project. Can anyone give me an example of how I would translate this C-style code into C++ code. I know it should compile in a c++ ...
3
votes
1answer
45 views

Convert row in Excel to custom entity

In order to read data from an Excel sheet I'm using a third-party dll that has one method GetCell and its return type is Object. One row in the Excel sheet contains multiple columns so after reading ...
3
votes
3answers
159 views

How to express VB .NET “Aggregate Into” in C#?

I have a code in VB .NET: Aggregate item In items Into Sum(item.Value) Could someone help me to convert it to C#?
3
votes
3answers
237 views

String to System.Windows.Input.Key

I need a function that takes a String as an argument, and returns a System.Windows.Input.Key. E.G: var x = StringToKey("enter"); // Returns Key.Enter var y = StringToKey("a"); // Returns Key.A Is ...
3
votes
4answers
197 views

How to convert time format?

My Windows date format is Month/Date/Year. If I want set StartTime with format "yyyy/MM/dd HH:mm:ss", How can I do that. I try the following code. DateTime StartTime = DateTime.ParseExact("2011/01/04 ...
3
votes
2answers
58 views

Alphabet convertion in php

Is there a way i can change the spanish word which i have typed in the textbox to its english word in php. Is there any way to do this in php. Please help me Thanks
3
votes
1answer
1k views

convertPoint:toView: Doesn't seem to be working

I have a TableView with custom TableCellViews that has UILabels and UIButtons on it. when one of the buttons is taped I want to show a "tooltip" describing the text of the button. Most everything is ...
3
votes
1answer
2k views

After VS2008 to VS2010 project upgrade getting “manifest signing certificate” error

I created a test project with VS2008 C# Express on computer 1 (Vista). I converted it to VS2010 C# Express on computer 2 (Windows 7). The converted project gives me this error: Unable to find ...
2
votes
2answers
40 views

Converting date to a String

I've faced with converting Date to String by using date() function in php. Simply, I just want to print this '17th of January 2012' by using format character. print date("jS of F Y"); However, ...
2
votes
2answers
53 views

QBitArray to QByteArray

When we create a text file with this text "ali ata bak", and we use this file as input for the program. The code is running normally. But when we enter "1111111111111111111111" this text in the ...
2
votes
1answer
99 views

Convert delphi's System.Copy to .net

This is the Delphi code I'm trying to convert to .net: s1 := Copy ( s1 , 1,x - 1) + Copy(s1, x + 1,Length(s1)); I tried: s1 = s1.Substring(x - 1, 1) + s1.Substring(s1.Length, x + 1) But I ...
2
votes
2answers
87 views

Converting String to the Hexadecimal-value it represents

this has been driving me nuts because i know theres a simple solution but i cant find it... I have a edittext field that askes for an Hexadecimal number, the textfield is restricted to only receiving ...
2
votes
1answer
68 views

Representation/Encoding error after converting project from VS2008 to Vs2010

Today I switched from VS2008 to VS2010. Due to this I converted one of my projects to use it in VS2010. In this project I use korean characters. In VS2008 the characters were shown correctly on ...
2
votes
2answers
384 views

how to convert this date:2011-02-10T07:18:04+0000 to unix timestamp in Qt

Im using Facebook Graph Api , and the in the paging parameter it returns this string after i decode it from 2011-02-10T06%3A52%3A02%2B0000 to 2011-02-10T07:18:04+0000 and now i like to convert the ...
2
votes
0answers
103 views

Parsing and converting 4Test to Perl

I want to convert 4Test scripts to Perl. I have been using the Parse::RecDescent in Perl, but am still overwhelmed at the task. Here is an example. An example of 4Test is something like: ...
2
votes
1answer
340 views

Convert UTF-8 bytes to some other encoding in Python

I need to do in Python 2.4 (yes, 2.4 :-( ). I've got a plain string object, which represents some text encoded with UTF-8. It comes from an external library, which can't be modified. So, what I ...
2
votes
3answers
3k views

Convert XmlDocument object into an XmlNode object - C#?

How do I convert an XmlDocument to a XmlNode in C#? I need to send the entire XmlDocument object to as an input parameter to a .NET web service.
2
votes
3answers
1k views

how to convert a value type to byte[] in C#?

I want to do the equivalent of this: byte[] byteArray; enum commands : byte {one, two}; commands content = one; byteArray = (byte*)&content; yes, it's a byte now, but consider I want to change ...
1
vote
4answers
65 views

Storing html values in xml

Trying to figure out a way to strip out specific information(name,description,id,etc) from an html file leaving behind the un-wanted information and storing it in an xml file. I thought of trying ...
1
vote
2answers
111 views

Convert HTML to Plain Text while preserving P, BR, UL, OL?

During exporting from an HTML text to an Excel sheet, I'm trying to preserve basic formattings like HTML line breaks (<br>, <p>), lists (<ol>, <ul>) etc. Example input: ...
1
vote
3answers
89 views

Converting C++ to C# program [closed]

I have the mission of converting an unmanaged C++ program into C# (managed). I searched the site and notice people asked for something specific to convert. Is there a tool for doing that ? maybe a ...
1
vote
4answers
124 views

C# - Unexpected results when converting a string to double

I have a string with value "20.616378139" and when i try to convert using Convert.ToDouble or Double.Parse i get 20616378139.0 insted of the right value. Why is this happening and how should I fix ...
1
vote
1answer
94 views

Convert jQuery to Prototype (small code)? [closed]

I have a site that runs n Vivvo CMS. It is based mainly on Prototype. I would like to implement on site this function, but is jQuery based. Allthough i use jQuery.noconflict, it still doesn't run. I ...
1
vote
1answer
223 views

how to add a text stream (subtitle) into a .mp4 or .m4v

I use ffmpeg to convert video using H264 for video encoding, and FAAC for audio encoding. The output should be .mp4 or m4v in order to play on both Android and iPhone. I want to add a subtitle STREAM ...
1
vote
1answer
529 views

Byte Array to UIImage Objective-C

I have a Bytearray unsigned char *outputData = (unsigned char *)malloc(sizeof(unsigned char) * w * h * 4); outputData[y * h * 4 + x * 4 + 0] = all; //alpha value outputData[y * h * 4 + x * ...
1
vote
2answers
105 views

Converting to and from CENTS

So I know there have been multiple questions regarding Money and converting to and from cents. Heck I have even asked another one, but I want to make a slightly different question so I hope there are ...
1
vote
1answer
88 views

I am trying to convert numbers to currency and add numbers with 2 decimal points

I have a simple form that users input number values into (though the fields are text fields). I am trying to do 2 things: The first is convert a number string (123456 or 123456.75) into a dollar ...
1
vote
4answers
219 views

Convert number to rank - Java

Does anyone know of a way to convert numbers into their corresponding ranks in Java? For example: 1 => first 2 => second 11 => eleventh 37 => thirty-seventh etc..
1
vote
5answers
318 views

Convert Double to String: Culture specific

Let's say my method has a argument of type Double. but sometimes what I pass is an int like 7 and not a double like 7.0 , so if I use ToString method then 7 will be "7" , but I want it to be "7.0", ...
1
vote
1answer
77 views

greyscalevalue in colorvalue

I get from a camera greyscale values for each pixel in the format 23453... (16 bit values) And I set the pixelcolor for my .bmp with image.SetPixel(cols, rows, color); but how can I get my ...
1
vote
1answer
252 views

Converting Timestamps in Python to UNIX Timestamps

from time import time time() # Gives me 1298046251.375916 I need to convert 01/01/2011 01:48:36.157 to a similar timestamp and am rather unfamiliar with Pythons date / time library. What is the ...
1
vote
2answers
680 views

Convert a string containing a number in scientific notation to a double in PHP

I need help converting a string that contains a number in scientific notation to a double. Example strings: "1.8281e-009" "2.3562e-007" "0.911348" I was thinking about just breaking the number into ...
1
vote
3answers
917 views

C# byte* to VB.NET BitmapData scanline

how do I convert C# code bmd is BitmapData byte* scanline = (byte*)bmd.Scan0 + (y * bmd.Stride); to VB.NET? Online C# to VB.net converter gave me this line Dim scanline As Pointer(Of Byte) = ...
1
vote
4answers
732 views

VB.Net Converting from string to double

I have a bad bug in my program where if a user presses the check(calculate) button when there is no input in the textbox the program displays this error: "Conversion from string "" to type 'Double' is ...
1
vote
1answer
101 views

Converting `NSDecimalNumber` to `SInt64` without precision loss. (within range of SInt64, iOS)

Currently, [NSDecimalNumber longLongValue] created with string @"9999999999999999" returns 10000000000000000. This means the class converts it's value to double first, and re-converts into ...
1
vote
3answers
380 views

Converting a number of bytes into a file size in C

I want to convert a single number of bytes, into a file size (that has .KB, .MB and .GB). If the number is 0, I don't want to have any unit. If the number is exactly divisible by a multiple of 1024 ...
1
vote
2answers
59 views

oo javascript with properties from server, methods from cache, best practice?

I'm converting procedural JS to OO and would appreciate any help. In a nutshell, what I have is a html-page containing: <script type="text/javascript"> var serverTime='11:32:20'; //time ...
1
vote
3answers
398 views

EmptyListToVisibilityConverter

I'm trying to do an "empty list to visibility converter" for WPF. This is an IValueConverter that takes an object ( that should be a list ) and if the list is empty (or if the passed object is null ) ...
1
vote
1answer
543 views

How to convert .po to .mo files on mac?

I have tried using poedit 1.4.6>save as, but .mo is not an option.
1
vote
2answers
181 views

How to convert from string to a number, and vice-versa in C++?

DEAR All I'm new to the C++, so maybe someone can say what the proper way to write a function that gets a string char (represents number) and converts it to the integer number. For example : input ...
1
vote
1answer
317 views

Is it possible to use the Spring MVC on JBoss App server?

Is it possible to use Spring MVC on JBoss App server? If so, how? Used the Spring MVC with Tomcat Apache server, but now i have to move my project to a JBoss app server. But i'm getting an error, ...
1
vote
1answer
1k views

How to convert non-Latin-based encoded text into UTF-8, or make them coexist on same page?

Good day, I have a script that scrapes the title/description of remote pages and prints those values into a corresponding charset=UTF-8 encoded page. Here is the problem, whenever a remote page is ...
1
vote
2answers
4k views

Convert NSMutableArray to string and back

in my current project I'm facing the following problem: The app needs to exchange data with my server, which are stored inside a NSMutableArray on the iPhone. The array holds NSString, NSData and ...
1
vote
2answers
3k views

How to convert a byte[] into datetime in C#?

I have a field of type TimeStamp in database, which is converted in byte[] in c# code, and i need to convert it to DateTime value. So i want to convert from an array of bytes into DateTime. Already ...
1
vote
0answers
542 views

Convert from Oracle VARCHAR2 to MySQL TEXT

How to do correct conversion of data from Oracle VARCHAR2 type to MySQL TEXT type? I want insert it into mysql table in field with TEXT type through DBLink.
1
vote
3answers
337 views

Making a simple assembly emulator

I am working on project that is detecting unknown Viruses, so i am going to build my small emulator that emulates the assembly code of the executable so i can detect whether it is a virus or not by ...

1 2 3