how can change direction custom shortcut menu from leftToReight to RightToLeft (1 Viewer)

Abo Abd_Allah

New member
Local time
Today, 02:35
Joined
Sep 23, 2016
Messages
16
Hi All
i make my custom shortcut menu by use commandbar element
i try now change it's direction to right to left
are this possible?!
thaks
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 07:35
Joined
May 7, 2009
Messages
19,237
maybe change the Form's Orientation property:

Dim frm As Form
On Error Resume Next
Set frm = Screen.ActiveForm
If Not frm Is Nothing Then
'0 = left-to-right
'1 = right-to-left
'we just Toggle it here
frm.Orientation = Not frm.Orientation
End If
 

Abo Abd_Allah

New member
Local time
Today, 02:35
Joined
Sep 23, 2016
Messages
16
thank you arnelgp your code work good in change Form's Orientation but it's not change shortcut menu Orientation
i asked if shortcut menu has Orientation property? or we can make this property and give it to shortcut somehow!
any idea
 

Kayleigh

Member
Local time
Today, 00:35
Joined
Sep 24, 2020
Messages
706
Can this be due to language settings in your DB?
 

Users who are viewing this thread

Top Bottom