Autoeng
Why me?
- Local time
- Today, 07:38
- Joined
- Aug 13, 2002
- Messages
- 1,302
I used to be able to right click on my continuous form and change to datasheet view which made copy and paste much simpler however I was worried about an autonumber column that was visable in datasheet view so I disabled it. I decided to fool around with the design a bit more to see if I could get the column to hide and stay hidden but can't get the right click to work anymore.
I have form Default View set to Continuous Forms and Views Allowed set to Both but still can't get the right click to change to datasheet view.
What am I overlooking?
OK found what I was overlooking but now how to get around it. I have code (courtesy GHudson) that hides the command bar. When the menu bar is hidden you cannot right click.
I don't want to display the command bar. Is there anyway to allow right click and not display the command bar?
Autoeng
I have form Default View set to Continuous Forms and Views Allowed set to Both but still can't get the right click to change to datasheet view.
What am I overlooking?
OK found what I was overlooking but now how to get around it. I have code (courtesy GHudson) that hides the command bar. When the menu bar is hidden you cannot right click.
Code:
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = False
Next i
I don't want to display the command bar. Is there anyway to allow right click and not display the command bar?
Autoeng
Last edited: