Private Sub Form_Load()
  Dim str As String
  Dim ii As Integer
  Open App.Path & "\sys.ini" For Input As #1
  ii = LOF(1)
  str = StrConv(Input(ii, 1), vbUnicode)
  Close #1
End Sub我想从sys.ini文件中读出数据,但是老是出错,错误是“input past end of file " ,请问是为什么?