我的网站上有一个文本文件,其中仅包含字符串“1.15”(用于我正在编写的应用程序的版本)。在初始化用户表单时,我想从其 URL 读取该文件并返回字符串“1.15”,以便我可以根据应用程序的版本(存储为 const 字符串)检查它。
这是我想要的格式...
Const version As String = "1.14"
Const currentVersionURL As String = "http://mywebsite.com/currentversion.txt"
Sub UserForm_Initialize()
If version <> GetCurrentVersionNumber() Then
MsgBox "Please update the application."
End If
End Sub
Function GetCurrentVersionNumber() As String
' What do I put here? :(
End Function
我知道该Workbooks.OpenText
方法,但我不想将字符串写入工作簿。我曾尝试使用ADODB.LoadFromFile
andWinHttp.WinHttpRequest.Open
方法,但两者都无法读取文件。
任何有关填写内容GetCurrentVersionNumber()
的建议将不胜感激。:)