Thanks ALOT for the help, appreciate it!
Here are the codes:
__________________________________________________ _______________
Sub ShowMessage()
MsgBox ("ARFCN : 79 (E-GSM)" _
& vbCr & "L2 Pseudo Length : 18" _
& vbCr & "Skip indicator : 0" _
& vbCr & "Protocol discriminator : (6) Radio resources management messages" _
& vbCr & "Message type : 27")
End Sub
__________________________________________________ _______________
Sub Open_One_Or_Many_Files()
Dim vaFiles As Variant
Dim i As Long
vaFiles = Application.GetOpenFilename _
(FileFilter:="Text files (*.txt),*.txt", _
Title:="Open File(s)", MultiSelect:=True)
If Not IsArray(vaFiles) Then Exit Sub
With Application
.ScreenUpdating = False
For i = 1 To UBound(vaFiles)
Workbooks.Open vaFiles(i)
Next i
.ScreenUpdating = True
End With
End Sub
__________________________________________________ _______________
The 2nd part, it allows me to open whichever text file that I would like to open, but how can edit the codes to let it open in a messagebox rather than a new Excel workbook?
And also, running the 2 parts together, my original messagebox is gone haha. Why is it so?
Sorry if it's too long or draggy, I'm new to Excel VBA
