Question:

Do you know how to convert integer to string by convert it to ascii first in VB 6.0?

by  |  earlier

0 LIKES UnLike

i need to know the procedures of function cast or toStr.

 Tags:

   Report

2 ANSWERS


  1. try CStr, as in

    Dim N As Long, strN As String

    N = 1234

    strN = CStr(N)

    strN will be "1234"


  2. suppose integer is i

    int i=0;

    string str = Convert.ToString(i);

    Simple...

Question Stats

Latest activity: earlier.
This question has 2 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.