Question:

Using Visual Basic how do you dim?

by Guest58367  |  earlier

0 LIKES UnLike

When using VB how do you dim a letter and a number together?

Example: Airline seat ------ a-3

Hope someone can help.

Thank you

 Tags:

   Report

3 ANSWERS


  1. Dim a_3 as Integer 'Or whatever you want it to be


  2. Dim S as String = "Airline Seat ----" & CType(ANumber, String)

  3. Dim A, a3 As Integer

    Dim A, a3 As String

    Dim A, a3 As Decimal...

    Hope this helps!!

    : )

Question Stats

Latest activity: earlier.
This question has 3 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.