Link to home
Start Free TrialLog in
Avatar of VBdotnet2005
VBdotnet2005Flag for United States of America

asked on

Conversions

What is the different bettwen implicit conversions & explicit conversions?  Also, could you give a good example on CType function?
Avatar of Mikal613
Mikal613
Flag of United States of America image

ctype example

Me.PictureBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer)
Avatar of VBdotnet2005

ASKER

great. Last thing, could you show me how to use parse? Thank you in advance
ASKER CERTIFIED SOLUTION
Avatar of Mikal613
Mikal613
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial

Thanks :)