Properties panel does not show. (1 Viewer)

valeryk2000

Registered User.
Local time
Today, 16:36
Joined
Apr 7, 2009
Messages
157
Question: usually if I open form in design mode, right click a control and select Properties, a panel popups with the properties of the control. However lately this property panel is not visible anymore. Any database. Please advice how to bring it back?
I'm running Access 365 accdb
 

theDBguy

I’m here to help
Staff member
Local time
Today, 13:36
Joined
Oct 29, 2018
Messages
21,474
If you're using multiple screens, perhaps the properties window is in another screen.
 

isladogs

MVP / VIP
Local time
Today, 21:36
Joined
Jan 14, 2017
Messages
18,229
It can still get moved off screen.
Although it should get docked when moved to the left or right of the Access window, it can be moved off the top or bottom.
Try changing the resolution temporarily, then change it back. That usually fixes the issue
 

valeryk2000

Registered User.
Local time
Today, 16:36
Joined
Apr 7, 2009
Messages
157
Well ... I'm working remotely via Citrix/Remote Desktop and cannot change the resolution. Just one thing: two months ago, the Properties panel was there. It disappeared after Microsoft patches (?) were installed ...
 

isladogs

MVP / VIP
Local time
Today, 21:36
Joined
Jan 14, 2017
Messages
18,229
I very much doubt it’s due to any MS updates as there would have been other reports if that was the case.
An Office repair might fix it but even on Remote Desktop I thought you could access Windows display settings
 

Gasman

Enthusiastic Amateur
Local time
Today, 21:36
Joined
Sep 21, 2011
Messages
14,310
Did you do this at all?
 

valeryk2000

Registered User.
Local time
Today, 16:36
Joined
Apr 7, 2009
Messages
157
Exactly my problem. I did it many times trying to find check related to the property sheet ...
This code did not help either:
Private Sub ShowToolBars()
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = True
Next i
End Sub
 

Josef P.

Well-known member
Local time
Today, 22:36
Joined
Feb 2, 2023
Messages
826
Have you already tried to attach the toolbar on the right?
Code:
With Application.CommandBars("Property Sheet")
   Debug.Print "Top, Left, Width, Height:", .Top, .Left, .Width, .Height
   Debug.Print "current position:", .Position
   .Position = msoBarRight
End With
 

isladogs

MVP / VIP
Local time
Today, 21:36
Joined
Jan 14, 2017
Messages
18,229
Excellent code snippet Josef!
After testing its effects, I deliberately messed up the property sheet by sending it to a different monitor / off screen / minimizing its size etc
Your code fixed all those issues
 

valeryk2000

Registered User.
Local time
Today, 16:36
Joined
Apr 7, 2009
Messages
157
Guys, thank you for discussion - I found property sheets - the panel was hiding to the left of the form view panel.
Thank you!
 

Users who are viewing this thread

Top Bottom