unction product_alphabet(num As Integer)
Dim alphabet As String
Dim S As Integer
Dim str As Integer
Dim C As String
S = Int(Rnd() * 24 + 1)
C = Mid("A0B1C2D3E4F5G6H7I8J9KLMNOPQRSTUVWXYZ", S, 2)
product_alphabet = C
End Function

Function product_mac(str As String)
Dim i As Integer
Dim mac As String

If str = "" Or str = "无" Then
mac = "00"
For i = 1 To 5
mac = mac & "-" & product_alphabet(2)
Next
str = mac
End If
product_mac = str
End Function

Function product_masksub(str As String)
product_mask = ""
End Function

 

 

相关文章:

  • 2022-12-23
  • 2021-08-19
  • 2022-02-28
  • 2021-07-03
  • 2022-01-16
  • 2022-12-23
  • 2021-09-18
  • 2021-07-17
猜你喜欢
  • 2022-02-07
  • 2021-11-28
  • 2022-12-23
  • 2022-02-07
  • 2022-02-07
  • 2022-12-23
  • 2022-01-17
相关资源
相似解决方案