I need to know the code for spacing

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Amir
    New Member
    • Apr 2014
    • 1

    #1

    I need to know the code for spacing

    I need to know how to put a space between two strings in the same label, my example is:

    Me.lblTime.Text = intTime (i need the code for space here) intHour
  • Justair07
    New Member
    • Apr 2014
    • 10

    #2
    I believe you can simply put

    Code:
    Me.lblTime.Text = intTime & " " & intHour
    Hope this helps,

    Justin

    Comment

    • MKamran
      New Member
      • Apr 2014
      • 1

      #3
      you can use command

      space(n) i.e. space(10)

      it will add ten spaces

      Comment

      Working...