2

我有一些我为 VB.ET 2010 Express Edition 中的简单 Crypter 编写的代码。我尝试构建它,但出现两个我不知道如何修复的错误。这是代码

Public Class MainWindow 'Class Name
Dim infectedfile, stub As String

Private Property Cryptfile As String

Private Sub MainWindow_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub

我得到的错误是“找不到事件'加载'”这是第二行代码:

Dim btSalt() As Byte = New Byte() (1, 2, 3, 4, 5, 6, 7, 8)

我得到的错误是“初始化数组数组时只能为顶级数组指定边界。”

感谢所有帮助!:)

4

1 回答 1

1

要解决您的第二个错误,您应该像这样声明您的数组:

Dim btSalt() As Byte = New Byte() {1, 2, 3, 4, 5, 6, 7, 8}

至于第一个错误,我们需要更多的上下文。

干杯

编辑:

以下是如何覆盖 OnLoad 方法,该方法优于订阅自己的事件,即表单事件:

Public Class Form1

    Protected Overrides Sub OnLoad(e As EventArgs)
          MyBase.OnLoad(e)

        'Put your code here, code that you would have placed in your event handler
    End Sub

End Class
于 2012-10-20T02:41:32.737 回答