Thread: chr$
View Single Post
  #12   Report Post  
Posted to microsoft.public.excel.programming
JLatham JLatham is offline
external usenet poster
 
Posts: 2,203
Default chr$

Naaaahhhh...
Boring would have been telling him that the second loop is going to output
hey:
A
followed by
hey:
B
followed by
hey:
C
ad nauseum, or until sleep overcomes one of us!
<g

"JLGWhiz" wrote:

This has apparently been a very boring Saturday. <vbg


"kylefoley2000" wrote in message
...
what does chr$ mean in this code

Sub rick()
Dim strabc(1 To 26) As String
Dim i As Integer
Dim strprompt As String
For i = 1 To 26
strabc(i) = Chr$(i + 64)
Next i
strprompt = "hey:" & vbCrLf
For i = 1 To 26
strprompt = strprompt & strabc(i)
Next i
MsgBox strprompt


End Sub



.