Showing posts with label Convert to String. Show all posts
Showing posts with label Convert to String. Show all posts

Tuesday, January 25, 2011

convert a number variable into a string Visual Basic

To convert a number variable into a string in Visual Basic you would use the CStr (Convert to String) command;
1:  Dim NoFrogs as integer 
2: txtBox.text = CStr(NoFrogs)