What is the cast expression equivalent of VB.NET's CType in Visual Basic 6?
|
1
|
|||||
|
|
|
There are a number of them depending on the type you are casting to
It also has implicit casting so you can do this myString=myInt |
||||||
|
|
|
Ctype() I believe. The C* (CDate(), CStr(), etc) are holdovers for the most part. |
||||
|
|
|
The casts already mentioned are correct, but if the type is an Object then you have to use "Set" in VB6, such as:
That, of course, depends on the type you are casting to. Almost all user classes are objects as well as Collection, Dictionary, and many others. The built-in types such as long, integer, boolean, etc. are obviously not objects. |
||||||
|
|
|
Let's say you have an object of ChildClass (child) that you want to cast to BaseClass. You do this:
Because of the way VB6 handles compile-time type safety, you can just do that without any extra syntax. Note: Given that everyone else seems to have mentioned |
||||
|
|
|
Quite a few posters seem to have misread the question, so I will try to set things straight by rephrasing the question and summarizing the correct answers given so far. Problem
SolutionAs you may have discovered, VB6 does not have a
Built-in type conversion functions in VB6Below is a complete list of the built-in conversion functions available in VB6, taken directly from the VB6 Help file.
|
|||
|
|
|
|
Conversions are not "casts" at all. For example try:
The result is -1, not 3. This is because those are conversion functions, not casts. Language is important! |
||
|
