我正在使用 VS 2012。
我不知道如何在我的代码运行时动态声明变量。我正在尝试编写一个程序,从网站上提取 EMS 调度的数据。该网站每隔几秒钟更新一次,并且发布的每个呼叫都有一个唯一的 ID 号。我想使用每个调度的唯一 ID 号,并使用该唯一 ID 号声明一个新的事件变量,并将其添加到活动调度的集合中。我唯一想不通的部分是,如何在发布时为每个调度声明一个变量,并用其唯一的 ID 号命名?
就像是:
Structure Incident
Dim id As Integer
Dim numer As String
Dim date1 As String
Dim time As String
Dim box As String
Dim type As String
Dim street As String
Dim crosstreet As String
Dim location As String
Dim announced As Boolean
Dim complete As Boolean
End Structure
UniqueIDstringfromwebsite = "1234"
Dim (code to get variable declared with unique ID as variable name) as incident
这是我的第一篇文章,我不能完全让代码示例在帖子中正常工作。