If objFSO.GetFile(tempFolder & "\list2.txt").Size > 0 Then
contents = objFSO.OpenTextFile(tempFolder & "\list2.txt", 1, False).ReadAll
Select Case MsgBox ("Link" & contents & "",vbYesNoCancel+vbExclamation+vbSystemModal,"Wassup?")
This up here is my vbs code. I have list2.txt and I have multiple lines in it between min3 max8 lines. And as you can see I am showing list.txt inside of my MsgBox.
My Question is I want to hide 2nd line inside the MsgBox. I can't delete it because I need it.
So how can I hide line2 and read the other lines?