Tagged Questions

0
votes
2answers
25 views

Convert Session Object to IOrderedQueryable<T>

I need to convert a Session object to an IOrderedQueryable and came up blank. I've thought of creating a wrapper, but its not working properly. Basically, I am pulling a Linq query …
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
2answers
61 views

How do I convert a c++ string to a .NET String^ ?

I've been trying to figure out how to convert a string to a String in Visual Studio 2005 with no luck. Here is the relevant code: #include <string> using namespace std; #us …
0
votes
2answers
128 views

String in scientific notation C++ to double conversion

Hi, I've got a database filled up with doubles like the following one: 1.60000000000000000000000000000000000e+01 Does anybody know how to convert a number like that to a double …
0
votes
2answers
29 views

WPF binding with explicit conversion.

Hello everyone, My question may be a repeat of other conversion question but I feel mine is different. Here goes... [simplified example]. public class DataWrapper<T> { …
2
votes
2answers
152 views

Linq to SQL Int16 Gets Converted as Int32 In SQL Command

With the method parameter Int16? id And the Linq to SQL where clause where !id.HasValue || m.Id == id The resulting command text for the condition in the data context is Fro …
0
votes
1answer
60 views

Cast function for Hibernate

Hi, all I have tried to cast to float numbers from string in the database fields to compare with another numbers. The field in the database was String type. I have tried to use BE …
4
votes
2answers
227 views

C++ conversion statements

What is the difference between (type)value and type(value) in C++?
5
votes
4answers
135 views

Most succinct way to convert ListBox.items to a generic list

I am using C# and targeting the .NET Framework 3.5. I'm looking for a small, succinct and efficient piece of code to copy all of the items in a ListBox to a List<String> (Gen …
-1
votes
2answers
54 views

Converting an int representing number of cents to money

Like this question, except T-SQL instead of php. 206275947 = 2062759.47 etc. The problem I'm running into is that an attempt to SUM the values in this column is overflowing the …
0
votes
2answers
77 views

How to convert long to LPCWSTR?

Hi, how can I convert long to LPCWSTR in C++? I need function similar to this one: LPCWSTR ToString(long num) { wchar_t snum; swprintf_s( &snum, 8, L"%l", num); st …
0
votes
5answers
109 views

Confusing type conversion - 2 Bytes to Double

I was recently asked to take over a project in which waveform data is sampled from a power converter and sent to an intelligent agent where calculations are done and the appropriat …
4
votes
3answers
398 views

C++ difference between automatic type conversion to std::string and char*

As a learning exercise, I have been looking at how automatic type conversion works in C++. I know that automatic type conversion should generally be avoided, but I'd like to incre …
0
votes
4answers
97 views

Multiplying long values?

class Main { public static void main (String[] args){ long value = 1024 * 1024 * 1024 * 80; System.out.println(Long.MAX_VALUE); System.out.println(value); …
1
vote
10answers
172 views

Why is implicit conversion allowed from superclass to subclass?

Can someone tell me why the line with "//Compiles" compiles, and why the line with "//Doesn't Compile" does not? I don't understand why A would be implicitly convertible to B, no …

1 2 3 4 5 6 next
15 30 50 per page