quote:
Originally posted by Mike2
Its hard to switch from vb to C/C++...
what is hard is not switch from vb to c, but just start with c (doesn't matter from which language you come from). Understanding things like 
code:
while(*dst++=*src++);/*just an example with pointers and unary operators*/
 that is really the hard part. Thinking about 
what you have to do * to solve a problem is the same in all languages and that can be learnt in vb
* -> note the difference between 
what you have to do and 
what you have to type