With help from some of the other memebers, I've got my database set up so that when a certain form opens, it displays the computer name in a label. Can someone help me out with some VBA code that will increase/increment the computer name by 1 letter or number? For example, if the computer name is "RJ123" then I want "SK234" to display in the label instead of the actual computer name. ("Z" should return a value of "A" and "9" should return a value of "1")
This is what I am using to get the computer name:
Private Sub Form_Open(Cancel As Interger)
ComputerNameLabel.Caption = Environ("ComputerName")
End Sub
Thanks!!
This is what I am using to get the computer name:
Private Sub Form_Open(Cancel As Interger)
ComputerNameLabel.Caption = Environ("ComputerName")
End Sub
Thanks!!