Wednesday, January 26, 2011

Converting a number variable into a string

To convert a number variable to a string in VB, there are two ways. This way is the faster, simpler way:


 Dim txtBox as Integer
  
  txtBox.Text = CStr(txtBox)
  

No comments:

Post a Comment