0
votes
1answer
32 views
How can I access the values from `Series.Values` (Excel Chart)
I am using the Microsoft.Office.Interop.Excel namespace and I am creating a chart. At a certain moment, I want to retrieve the values of a certain series. On MSDN it says that a Series object has a …
1
vote
3answers
63 views
flex3 type casting
Does anyone know the real difference between the two ways of type casting in Flex 3?
var myObject1:MyObject = variable as MyObject;
var myObject2:MyObject = MyObject(variable);
I prefer to use the …
1
vote
3answers
183 views
Type Casting C++
see the following code:
void simple_dynamic_casts( )
{
AB ab;
B* bp = (B*)&ab; // cast needed to break protection
A* ap = &ab; // public derivation, no cast needed
…
0
votes
2answers
113 views
how can convert LPCSTR string into LPCTSTR string?
i am trying to convert a LPCSTR string into LPCTSTR string. i want to concatenate two string,when i try like this
LPCTSTR str1 = L"Raja"
LPCSTR str2 = "Kumar"
wcscat_s(str1,(LPCTSTR)str2);
i found …
0
votes
8answers
207 views
print the float value in integer in C language
#include<stdio.h>
int main()
{
float a=5;
printf("%d",a);
return 0;
}
This gives the output:
0
Why is the output zero?
2
votes
4answers
114 views
Efficient way to convert strings from split function to ints in Python
I have a string of data with the following format: xpos-ypos-zoom (i.e. 8743-12083-15) that I want to split up and store in the variables xpos, ypos, and zoom. Since I need to do some calculations …
0
votes
4answers
56 views
Typecasting based on a variable
How would I go about the following... I have a control that can be bound to different data types... String, Int, Int32, DateTime, etc... but generically the result is stored into a generic "object" …
0
votes
3answers
70 views
Cast a variable to a type represented by another Type variable?
I'm aware that questions like this have been asked before and I doubt it's possible, but I just wanted to make 100% sure that it isn't.
In VB.net or C# (either language, it doesn't matter), I want to …
0
votes
3answers
69 views
String variable to a DefaultMutableTreeNode object?
Is it possible to convert a String variable to a DefaultMutableTreeNode object?
Please explain.
Context:
String s = new String(outputTagName);
Object s2 = (Object) s;
DefaultMutableTreeNode …
1
vote
1answer
280 views
Flex and Zend_AMF: How do I get a Flex arrayCollection from Flex into PHP?
I currently have an arrayCollection in Flex and I want to sent it to PHP (Zend_AMF). According to the Zend_AMF wiki, sending an arrayCollection over directly will force Zend_AMF to cast the …
0
votes
1answer
101 views
MySQL: Typecasting NULL to 0
Hi all,
Let us suppose the following table (e.g. a result of several inner join statements):
id | column_1 | column_2
------------------------
1 | 1 |
2 | 2 | 2
3 | | 3
…
2
votes
5answers
157 views
dynamic casting?
I need a way to cast an object to a type that is not know at compiler time.
something like this:
object obj;
public (type of obj) Obj
{
get
{
return obj
}
set
{
…
1
vote
6answers
401 views
C#: Convert a string to an object reference.
Basically a button's tag property is the name of an existing combobox which I need to dynamically reference. It's a generic function to handle multiple buttons. Help
private void SQLButton(object …
0
votes
1answer
317 views
JSP Page HttpServletRequest getAttribute Typecasting
Hi There,
Any ideas on the correct method of typecasting an Object out of a getAttribute request from a JSP page HttpServletRequest?
I have googled but it seems that the common solution is just …
0
votes
5answers
204 views
What happens when float pointer is typecasted to char pointer?
int main()
{
float f = 12.2;
char *p1;
p1 = (char *)&f;
printf ("%d", *p1);
}
This outputs 51.
