0
votes
4answers
101 views
Reading to get back into Java development?
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 standa …
0
votes
3answers
63 views
Unix timestamp to .net DateTime
I must be doing an obvious mistake but I can't figure it out.
I am importing a date stored in a mysql database (it is stored by the ExpressionEngine CMS). It is a unix timestamp, …
1
vote
1answer
27 views
Expression.Constant(value, type) type is unknown. How to define the type
Hi there:
So the problem is
I have the following line wehre value is a string
var filterValue = Expression.Constant(value, property.Type);
if property.Type is a string everyt …
0
votes
0answers
31 views
WMF / EMF File Format conversion C#
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. Enume …
0
votes
4answers
114 views
How to convert a date String into the right format in Java?
Can somebody please explain to me how I can convert
2009-10-27 14:36:59.580250
into
27.10.2009, 14:36 ?
The first date is available as a string and the second one should be a …
1
vote
3answers
14 views
Implicit conversion from void to XmlDocument
Probably a stupid question, but I'm quite new to the whole "get-and-set-property"-kind of programming;
I keep getting a compiling-error on this part of my code;
private string _F …
1
vote
3answers
59 views
problem with valueOf(), converting a char to Character in Java
Hello, I'm trying to convert a char to Character before it gets pushed on a stack but get a "cannot find symbol error", I don't see what the problem might be. This is how I pass th …
0
votes
2answers
28 views
VB.NET Conversion problem when trying to convert from base class to subclass (BC30311: “Value of type ‘<type1>’ cannot be converted to ‘<type2>’”)
Hello!
Please take a look at the following code:
Public Sub Method(Of TEntity As EntityObject)(ByVal entity As TEntity)
If TypeOf entity Is Contact Then
Dim contact …
1
vote
3answers
232 views
Converting between C++ std::vector and C array without copying
I would like to be able to convert between std::vector and its underlying C array int* without explicitly copying the data.
Does std::vector provide access to the underlying C ar …
1
vote
1answer
37 views
Is there javascript (prefer jquery) library that automatically maps form elements to JSON?
Background: This is something I have been looking for since before even JSON was known as JSON.
Suppose you have the following javascript variable inside your code:
jsonroot =
…
1
vote
1answer
14 views
PHP Integer base timestamp importing to Java Long base timestamp
I get Integer timestamp from PHP program, but in Java timestamps are ing Long format. So how can I convert this PHP Integer timestamp to Java Long format and convert that long form …
1
vote
4answers
49 views
Convert typed-in Text to lowercase
I've got an index.jsp with
[snip]
<%
String name = request.getParameter("name");
String pass = request.getParameter("pass");
String globalname = "webeng";
String glob …
-1
votes
3answers
48 views
Validating a Timezone String and Returning it as Minutes
I I have a timezone taken from a user that must be converted into total minutes to be stored in the database. I have the following code and it looks pretty ugly. I am new to C# and …
1
vote
1answer
32 views
OLEVariant to .Net byte[]
I have an OLEVariant disguised as a .Net object that I recieve from a client-side component over the net. I know that the contents are an array of bytes, but I don't know how to co …
0
votes
1answer
29 views
String to Unicode conversion with VB.NET
How could i convert a Greek string, to Unicode with VB.NET, without knowing the source encoding?
