0
聲明此行後,我收到此編譯錯誤:Expected: End of Statement
。有人能幫我嗎?預計:聲明結束
Dim file2 As Stream : file2 = New FileStream(modGeneral.pdfPath, FileMode.Open, FileAccess.Read, FileShare.Read)
聲明此行後,我收到此編譯錯誤:Expected: End of Statement
。有人能幫我嗎?預計:聲明結束
Dim file2 As Stream : file2 = New FileStream(modGeneral.pdfPath, FileMode.Open, FileAccess.Read, FileShare.Read)
您的問題是:
file2 = New FileStream...
有沒有這樣的對象在VB6 FileStream
。看起來你已經將VB.NET與VB6混合了。
它看起來像vb.net。你用什麼語言編程 –