我正在尝试按照 Branah Unicode Converter 的方式制作一些东西来解码这样的行,例如:[99,97,108,108,32,99]。http://www.branah.com/unicode-converter。我找到了这个。我猜这个表单有一个文本框和 2 个按钮。一种是使用 Asc 获取文本框的 ASCII 码,另一种是使用 Chr 将文本框中的 ASCII 码转换为字符。
所以,上次我发布这个时,它被关闭了,因为它不是“一个真正的问题”。让我直言不讳。我不知道如何让这个工作。事物的标签非常混乱。我应该将 Text1、Text2、Text3 和 Label 6 声明为什么,因为它给了我未声明它们的错误?我还收到一个错误,即 TextBox1 无法从此行转换为整数:Text2 = Text2 + Chr(TextBox1)。我该如何解决?我不是在进口我应该进口的东西吗?
Private Sub EncodeButton_Click()
'Code the character
TextBox1 = Asc(Text1)
'clears text box
Text1 = ""
' adds the coded character to the textbox (Textbox1)
LABEL6 = LABEL6 + "," + TextBox1
' set focus to textbox
Text1.SetFocus
'decodes the coded character
Text2 = Text2 + Chr(TextBox1)
End Sub
Private Sub DecodeButton_Click()
'this part decodes the coded number
TextBox1 = Text3
Text3 = ""
LABEL6 = LABEL6 + "," + TextBox1
Text2 = Text2 + Chr(TextBox1)
Text3.SetFocus
End Sub