I'm using this code to create a right-click menu for my Datasheet form (Access 2007). This code runs in the datasheet subform on the Open event:
Dim sMenuName As String
sMenuName = "DatasheetRightClickMenu"
On Error Resume Next
CommandBars(sMenuName).Delete
If Err.Number <> 0 Then Err.Clear
On Error GoTo 0
Dim cmb As Office.CommandBar
Dim cmbItem
Set cmb = CommandBars.Add(sMenuName, _
msoBarPopup, False, False)
Set cmbItem = cmb.Controls.Add(msoControlButton, , , , True)
With cmbItem
.Caption = "Open"
.OnAction = "=OpenDetails()"
End With
Me.ShortcutMenu = True
Me.ShortcutMenuBar = sMenuName
I can't figure out how to pass the current record's ID to the OpenDetails function. I'd be happy if I could just figure out how to pass in the form or recordset variable/reference but I can't seem to figure out how to do that either.
What's the trick to passing "real-time" arguments or parameters from a right-click menu to a custom function? Do you have to build the right-click menu when the user clicks? Or is there a better way of doing this?
Edit1:
Here's what I have got working so far:
Private Sub Form_Current()
Call CreateRightClickMenu
End Sub
Private Sub CreateRightClickMenu()
Dim sMenuName As String
sMenuName = Me.Name & "RClickMenu"
On Error Resume Next
CommandBars(sMenuName).Delete
If Err.Number <> 0 Then Err.Clear
On Error GoTo 0
Dim cmb As Office.CommandBar
Dim cmbItem
Set cmb = CommandBars.Add(sMenuName, _
msoBarPopup, False, False)
Dim s1() As String, s2 As String
If Nz(Me.txtitemdesc, "") <> "" Then
s2 = Me.txtitemdesc & " "
s2 = Replace(s2, ",", " ")
s1 = Split(s2, " ")
s2 = s1(0)
End If
Set cmbItem = cmb.Controls.Add(msoControlButton, , , , True)
With cmbItem
.Caption = "Open " & Replace(Me.txtitemdesc, "&", "&&")
.Parameter = Me!ItemID
.OnAction = "OpenFromDatasheetRightClick"
End With
Set cmbItem = cmb.Controls.Add(msoControlButton, , , , True)
With cmbItem
.FaceId = 640
.Caption = "Filter = '" & s2 & "'"
.Parameter = s2
.OnAction = "FilterAllItemsDatasheet"
End With
If Me.FilterOn = True And Me.Filter <> "" Then
Set cmbItem = cmb.Controls.Add(msoControlButton, , , , True)
With cmbItem
.Caption = "Clear Filter"
.Parameter = ""
.OnAction = "FilterAllItemsDatasheet"
End With
End If
Me.ShortcutMenu = True
Me.ShortcutMenuBar = sMenuName
End Sub
It seems that my callback functions have to be in a a public module, not a form module.
Public Sub FilterAllItemsDatasheet()
Dim cbar As CommandBarControl
Set cbar = CommandBars.ActionControl
If cbar Is Nothing Then
Debug.Print "CBar is nothing"
Exit Sub
End If
Dim s1
s1 = cbar.Parameter
If s1 = "" Then
Call Forms("frmAllItemsDatasheet").ClearFilter
Else
Forms("frmAllItemsDatasheet").cboSearch = s1
Call Forms("frmAllItemsDatasheet").UpdateSubform
End If
End Sub
Public Sub OpenFromDatasheetRightClick()
Dim cbar As CommandBarControl
Set cbar = CommandBars.ActionControl
If cbar Is Nothing Then
Debug.Print "CBar is nothing"
Exit Sub
End If
Dim s1
s1 = cbar.Parameter
Call OpenItemDetailForm(s1)
Forms("frmAllItemsDatasheet").SetFocus
End Sub