4
votes
5answers
117 views
Accepted practice for converting an Object to and from a String in Java ?
What is the commonly accepted method for converting arbitrary objects to and from their String representations, assuming that the exact class of the object is known ? In other word …
0
votes
3answers
74 views
Conversion from string “” to type ‘Integer’ is not valid.
When I try to run the following code I get a Conversion from string "" to type 'Integer' is not valid. error.
Dim maj = (From c In connect.Courses _
Wher …
0
votes
4answers
182 views
C++ const void* conversion
I'm trying to pass three parameters to my write() function:
write(fd, "C,1,1\r\n", 7);
This works fine. But I would like to take a parameter and pass it to the command portion t …
1
vote
3answers
30 views
Assignment to apparently nonexistent variables in VB.NET
I have some VB.NET (which I don't normally deal with) code which must be converted to C# (which I normally do).
The code happens to be in a Windows Forms app. I notice a couple o …
0
votes
4answers
41 views
How to conduct arithmetic operations in JQuery?
var price = $('#addprice').val();
var pass = $('#pass').val();
var total = $('#totalprice').attr('value')
var left = $('#leftquota').attr('value')
var balance = …
0
votes
1answer
22 views
how to convert programatically powerpoint to xml and back
I need to convert powerpoint file to a text based file such as xml o html programatically and do some proccesses in it and again convert the textbased file top powerpoint. I prefer …
0
votes
3answers
53 views
Translating LOCs
Hi,
Has anybody come across a situation where an existing code-base written (say) in Java and written by (say) French programmers had to be converted to code that English speaking …
4
votes
5answers
126 views
How to add 4 hours to time in PHP/MySQL
I'm working on a blog migration from a custom built blog to Wordpress. One of the fields that Wordpress is looking for in the database is a date/time stamp set to GMT, which is 4 h …
1
vote
2answers
78 views
Best way to convert HTML to plaintext using Python
I'm working on a project that involves converting a large amount of HTML content to plain/text. I have a custom-written module that does the job OK, but I'm wondering if there's so …
1
vote
3answers
38 views
Convert Cobol copybook to XSD
Does anyone know a tool to convert from Cobol Copybook to XSD? Or XML.
1
vote
3answers
128 views
c++ - convert pointer string to integer
I am trying to convert treePtr->item.getInvest() which contains a string to an integer. Is this possible?
1
vote
2answers
54 views
+150
Justified plain text from HTML
I need a plain text representation of an arbitrary HTML file (e.g., a blog post). So far that's not a problem, there are dozens of HTML to txt converters. However, the text in para …
3
votes
4answers
75 views
Convert two-digit year to four-digit year in Ruby
I have strings like "84", "03" etc. that I want to convert to Date objects, but Date.new only takes the expanded 4-digit year as a parameter. I know it's simple to do, but I don't …
2
votes
8answers
153 views
Java Double to String conversion without formatting
I have the number 654987. Its an ID in a database. I want to convert it to a string.
The regular Double.ToString(value) makes it into scientific form, 6.54987E5. Something I dont …
0
votes
5answers
50 views
Converting Byte recieved from the registry to String
Hello, I'm in the process of creating an application which will monitor specific registry key values for changes and write those changes to a text file.
At present I can monitor t …
