gpt4 book ai didi

vba - 在文本字段中生成随机字符串

转载 作者:行者123 更新时间:2023-12-04 13:39:36 25 4
gpt4 key购买 nike

我们公司中有使用Microsoft Access运行的旧软件(由多年前的第一批员工生产)。老板要求我在单击的特定文本框中添加随机字符串生成,但是我不知道该怎么做。我没有任何Microsoft Access编程经验,所以我要您帮助。

到目前为止,我设法创建了按钮和文本字段。那就是它停止的地方。我还设法 Access 了按钮操作的代码:

Private Sub command133_Click()

End Sub

最佳答案

这是一种方法,可以在Access VBA中使用(这是比vb.net更旧的基础)。它将生成一个包含字母和数字的字符串。

Sub test()

Dim s As String * 8 'fixed length string with 8 characters
Dim n As Integer
Dim ch As Integer 'the character
For n = 1 To Len(s) 'don't hardcode the length twice
Do
ch = Rnd() * 127 'This could be more efficient.
'48 is '0', 57 is '9', 65 is 'A', 90 is 'Z', 97 is 'a', 122 is 'z'.
Loop While ch < 48 Or ch > 57 And ch < 65 Or ch > 90 And ch < 97 Or ch > 122
Mid(s, n, 1) = Chr(ch) 'bit more efficient than concatenation
Next

Debug.Print s

End Sub

关于vba - 在文本字段中生成随机字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22630264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com