0
votes
2answers
20 views
Problem getting GUID string value in Linq-To-Entity query
Hi,
I am trying to write a GUID value to a string in a linq select. The code can be seen below (where c.ID is GUID), but I get the following error:
Unable to cast the type 'Syste …
0
votes
2answers
32 views
how to use the toString() method for multiple enum members in same class in Java
I am trying to add more user friendly descriptions for multiple enum members in the same class. Right now I just have each enum returned in lowercase:
public enum Part {
ROTOR …
0
votes
2answers
257 views
Django soaplib error
Hi, I'm trying to make a little "Hello World" webservice with Django following a few tutorials, but I'm hitting the same barrier over and over. I've defined a view.py and soaplib_h …
1
vote
2answers
25 views
How do you put a subclass method into a superclasses JLabel?
So here's the class and the super class, question to follow:
TestDraw:
package project3;
import java.awt.BorderLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
pub …
3
votes
3answers
51 views
How do I implement toString() in a class that is mapped with Hibernate?
I have an instance of a class that I got from a Hibernate session. That session is long gone. Now, I'm calling toString() and I'm getting the expected LazyInitializationException: …
3
votes
10answers
173 views
toString(), equals(), and hashCode() in an interface…
So, I have an interface with a bunch of methods that need to be implemented, the method names are irrelevant.
The objects that implement this interface are often put into collecti …
1
vote
4answers
71 views
Hashtable how to get string value without toString().
How could I get the string value from a hashtable without calling toString() methode?
example: my class:
public class myHashT : Hashtable
{
public myHashT () { }
...
public ov …
0
votes
2answers
39 views
ToStringBuilder append X appendSuper
Hi all...
in my classes when writing the toString() method I always use the ToStringBuilder from org.apache.commons
And when I'm extending other classes I use appendSuper() and t …
1
vote
2answers
48 views
window.toString.call is undefined in IE8
When you run:
window.toString.call("")
everything's fine in FF/CH but in IE8 you get a script error. Investigating a bit more it turned out, that window.toString.call is undefin …
1
vote
3answers
95 views
How to “echo” a class?
This is probably really easy but I can't seem to figure out how to print/echo a class so I can find out some details about it.
I know this doesn't work, but this is what I'm tryin …
0
votes
2answers
32 views
How to return a verbatim string from ConfigurationManager.AppSetting[”settingname”].ToString()
I am using the ConfigurationManager.AppSetting["blah"].ToString() method to get the path to the folder that contains the files I'm needing. But I'm throwing an UnsupportedFormatExc …
1
vote
4answers
235 views
How to convert double to string without the power to 10 representation (E-05)
How to convert double to string without the power to 10 representation (E-05)
double value = 0.000099999999833333343;
string text = value.ToString();
Console.WriteLine(text); // …
0
votes
5answers
211 views
What is the reverse of (ArrayList).toString for a Java ArrayList?
I am using the toString method of ArrayList to store ArrayList data into a String. My question is, how do I go the other way? Is there an existing method that will parse the data …
0
votes
2answers
88 views
conversion from string yyyyMMdd to type integer is not valid
I have a dataset containing a datatable, and I enumerate all rows in that datatable. When trying to format a column in that row, I run into an exception. (Part of) the code is:
Fo …
1
vote
5answers
295 views
C++ array to string
I have a vector<int> container that has integers (e.g. {1,2,3,4}) and I would like to convert to a string of the form
"1,2,3,4"
What is the cleanest way to do that in C++ …
