Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
10answers
4k views

C#'s equivalent to VB.Net's DirectCast?

This has probably been asked before, but if it has, I can't find it. Does C# have an equivalent to VB.Net's DirectCast? I am aware that it has () casts and the 'as' keyword, but those line up to CType ...
10
votes
3answers
4k views

Casting DataTypes with DirectCast, CType, TryCast

Ever since I moved from VB6 to VB.NET somewhere in 2005, I've been using CType to do casting from one data type to another. I do this because it is simply faster to type, used to exist in VB6 and I do ...
9
votes
1answer
197 views

Convert vs. CType

I am somewhat confused about presence of two seemingly identical VB.NET functions: CType(args) and Convert.ToType(args). I'm fairly new to .NET and VB in general, so I'm not quite sure whether one of ...
6
votes
2answers
2k views

Difference between DirectCast() and CType() in VB.Net

I am an experienced C/C++/C# programmer who has just gotten into VB.NET. I generally use CType (and CInt, CBool, CStr) for casts because it is less characters and was the first way of casting which I ...
5
votes
3answers
144 views

PHP - How to allow underscore and dash with ctype_alnum?

How can I add the exception of _ and - as valid characters when using ctype_alnum ? I have the following code: if ( ctype_alnum ($username) ) { return true; } elseif ...
4
votes
5answers
2k views

Casting in VB.Net

I would like to be able to cast a value dynamically where the type is known only on runtime. something like this myvalue = ctype (value, "String, Integer or Boolean") the string that contains the ...
3
votes
2answers
54 views

How can I do C style casting in VB.NET?

I have a object type variable (control .Tag) that I need to cast to a structured type, and change a member in. This is a contrived but representative example: Public Structure struct_COLOURS Dim ...
2
votes
1answer
272 views

Python Wrapper to a C Callback

Trying to create a python callback which needs to be invoked while calling the C callback from a dll in Windows environment. Please review the code below to understand the issue. from ctypes import ...
2
votes
1answer
524 views

What does set_locale(LC_CTYPE, 'C'); actually do?

When my PHP script is run with UTF-8 encoding, using non-ascii characters, some PHP functions like strtolower() don't work. I could use mb_strtolower, but this script can be run on all sorts of ...
2
votes
2answers
259 views

How to return a function pointer from CPython to Python then call a C function with ctypes?

I have CPython function: void my_cfunc(int arg) { printf("Hello from C; arg=%d\n", arg); } PyObject *get_fptr(PyObject * /*self*/, PyObject * /*args*/) { return PyCObject_FromVoidPtr(my_cfunc, ...
2
votes
1answer
219 views

ctype and strings and containers

Is there any reason that the ctype facet functions (is,scan_is,scan_not only support plain char pointer, and not iterator based containers, like std::string or even a std::vector... then one could ...
2
votes
1answer
684 views

Directcast & Ctype differences with enums

Public Enum Fruit Red_Apple = 1 Oranges Ripe_Banana End Enum Private Sub InitCombosRegular() Dim d1 As New Dictionary(Of Int16, String) For Each e In ...
2
votes
3answers
1k views

C++ ctype facet for UTF-8 in mingw

In a project all internal strings are kept in utf-8 encoding. The project is ported to Linux and Windows. There is a need for a to_lower functionality now. On POSIX OS I could use ...
1
vote
3answers
139 views

Invalid Types in VB.NET

I have a function which returns a list of products and a page which displays then, but when I try to load the list on the page, I get a cryptic error: [A]System.Collections.Generic.List`1[Product] ...
1
vote
1answer
65 views

Dealing with ctype.h integer overflow

What is the proper way to deal with character values which when casted to an unsigned char fall between {INT_MAX + 1 ... UCHAR_MAX} where UCHAR_MAX is greater than INT_MAX. int is_digit(char c) { ...
0
votes
1answer
75 views

CTYPE issue during building dame

I am trying to build DAME. Environment details: GCC - gcc version 4.4.2 (GCC) ANTLR - ANTLR Parser Generator Version 2.7.2 when i am trying to compile the following code snippet: #include ...
0
votes
1answer
95 views

MSDN COLORREF structure macros, Python

I'm attempting to use the SetLayeredWindowAttributes function to change the windows transparency color. I made a structure using the ctypes module. I'm pretty sure I have to use the COLORREF RGB macro ...
0
votes
0answers
98 views

aubio usage in python

I am new to python I want to detect pitch in portion of some sound there are pretty good tutorials for ctype but I can't find any document for "aubio" library my platform is windows xp sp3 I want ...
0
votes
1answer
121 views

PHP ctype_print - different behavior on Windows and Linux?

I just experienced a weird problem today: On my windows machine, ctype_print("äöütest") returned true. But when I was on my linux machine (debian), it returned false. In the php.net documentation I ...
0
votes
1answer
261 views

How can I convert DataRowView type to integer type?

How can I convert DataRowView type to integer type?
0
votes
1answer
324 views

asp.net access user control in vb class

i have a usercontrol named filebox (which wraps a fileupload and some related stuff) in a certain .net class i have need to use this type as a ctype but i cant seem to call ctype(aobject,filebox) ...
0
votes
1answer
798 views

What is the C# equivalent of CType in VB.NET?

I am trying to convert the example provided in this MSDN article (http://msdn.microsoft.com/en-us/library/aa479330.aspx) to C#, but am stuck at the following code: CType(dq, ...
0
votes
1answer
306 views

ctypes and PySide

I'm building an app with PySide, there's some image manipulation that needs to be done and using Python code for this is way too slow. Therefore I hacked out a .dll file that will do it for me. The ...
0
votes
1answer
111 views

charlower with gcc

I am trying to convert the following code from msvc to gcc #define ltolower(ch) CharLower((LPSTR)(UCHAR)(ch)) char * aStr; * aStr = (char)ltolower(*aStr); This code is giving a compiler ...
0
votes
3answers
650 views

Beginner: Fastest way to cast/copy byte() into single()

I've got a byte() array returned as result of directx sound capture, but for other parts of my program I want to treat the results as single(). Is trundling down the array item by item the fastest way ...
-1
votes
0answers
18 views

How do vb.net implement directcast and ctype

It looks like directcast require actual implementation or inheritance and success. It looks to me the way it is implemented is that vb.net will simply change the pointer type without bother changing ...
-1
votes
1answer
44 views

Ctype casting to Decimal returning negative value

I am wondering if this is a bug. Can't understand why would CType work this way...!
-1
votes
1answer
133 views

How to define a C struct which contain a struct inside a Ctype python

Hi I am learning python and using ctype to embedd 'C' in python. My query is- How to use C stru which again calling a stru inside into cytpe/python. typedef struct { struct *i, *j; BOOLEAN ...