I have a program that I'm troubleshooting, and I have a bunch of strings that are as follows:

bungcords = vbCrLf & "__ bungcords"
Also, I have a few parts like this:
If CheckBox1.Checked = True Then
Input1 = vbCrLf & "__ " & txtInput1.Text
End If
Is that the proper syntax to be using? I'm not sure with this debugging stuff, because the program will run on my computer, but not on any others (with the Framework installed, of course). Thanks.