I am looking to find out how to add code to my VBA script for when a picture button is clicked
I have a series of picture buttons which, if I click any one of them runs through a script to confirm or deny access
What I now need to do is:
If the access is granted to the picture button clicked, it take them to the required page
There are 8 picture buttons: i.e. Emma_Summary, Alex_Summary etc and they would click their button to access their page
The code that checks their access works to the Success Message and it is there that I need to add that whichever picture button was clicked it opens that page
Thanks for looking
I have a series of picture buttons which, if I click any one of them runs through a script to confirm or deny access
What I now need to do is:
If the access is granted to the picture button clicked, it take them to the required page
There are 8 picture buttons: i.e. Emma_Summary, Alex_Summary etc and they would click their button to access their page
The code that checks their access works to the Success Message and it is there that I need to add that whichever picture button was clicked it opens that page
Rich (BB code):
Sub shape_click()
Dim selName As String
Dim foundUser As Range
Dim userRow As Long
Dim userCol As Long
selName = Mid(Application.Caller, 1, InStr(1, Application.Caller, "_") - 1)
userRow = Sheets("Admin").Range("B5").Value
Set foundUser = Sheets("Admin").Range("D1:V1").Find(selName)
If foundUser Is Nothing Then
MsgBox "User not found!"
Exit Sub
End If
userCol = foundUser.Column
If selName = Sheets("Admin").Range("B2") Or Sheets("Admin").Cells(userRow, userCol).Value = "Ð" Then
MsgBox "Success!" -THIS IS WHERE I NEED THE CODE
Else
MsgBox "You do not have access to this page!!"
End If
End If
End Sub
Thanks for looking
Last edited: