how can change direction custom shortcut menu from leftToReight to RightToLeft

Abo Abd_Allah

New member
Local time
Today, 10:22
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
 
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
 
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
 
Can this be due to language settings in your DB?
 

Users who are viewing this thread

Back
Top Bottom