Hey guys,
does anybody know how I can add a series of strings together (for example record lines from another file that have been assigned to a string array) into one string and assign that string to be the caption of a text box such that it would appear line by line the way it was taken out of the original file? When I do this, the lines connect end to end to make one really long line.

second question,
I am using this format to play a midi in a game I am writing :
Private Declare Function mciSendString Lib "winmm.dll" Alias _
"mciSendStringA" (ByVal lpstrCommand As String, _
ByVal lpstrReturnString As String, ByVal uReturnLength As Long, _
ByVal hwndCallback As Long) As Long
Dim ret As Long
Private Const SND_ASYNC = &H1
Private Const SND_NODEFAULT = &H2

ret = mciSendString("open e:\vb5cce\dance.rmi type sequencer alias myfile", 0&, 0, 0)
ret = mciSendString("play myfile wait", 0&, 0, 0)
ret = mciSendString("close myfile", 0&, 0, 0)

Question is how can I get this midi (rmi) in the background so that the game can go on. Currently it stops to play the entire midi . also, I would like for the midi to loop.

Any thoughts?