If lj IsNot Nothing Or sc IsNot Nothing Then
Dim s As String = FileSys.ReadAllText(lj)
Dim Values() As String = s.Replace(vbcr,"").Split(vblf) '以回车分割
For i As Integer = 0 To Values.Length - 1
Dim hex As String = HexToDec(Values(i))
FileSys.WriteAllText(sc,hex & vbcrlf,True)
Next
Else
MessageBox.Show("请选择文件位置","提示")
End If