How to Hide Ribbon Menu with VBA : MS Access 2010

  Рет қаралды 75,400

T Golden Eye

T Golden Eye

Күн бұрын

Пікірлер: 50
@jtflypegasus
@jtflypegasus 6 жыл бұрын
I appreciate you sharing your expertise in VBA access. Thank you!
@scotsbhoy5144
@scotsbhoy5144 9 жыл бұрын
Thanks - just what I was searching for! Well explained and clear instruction.
@charlenelaing3623
@charlenelaing3623 7 жыл бұрын
Love It! Just what I needed. Thanks for Sharing
@mariafavereaux782
@mariafavereaux782 8 жыл бұрын
Just wanted to say Thank you!
@jayblasi2454
@jayblasi2454 7 жыл бұрын
Really appreciate thee tips!
@danielweber4961
@danielweber4961 7 жыл бұрын
Perfect! Thanks a bunch!
@syedabbas201
@syedabbas201 2 жыл бұрын
Thanks dear I was Seeking This kind video..u solve my Problem
@ashokanselliah9571
@ashokanselliah9571 4 жыл бұрын
Thank you very much! Very much useful for learner like me...
@nedrarussell8772
@nedrarussell8772 3 жыл бұрын
game changer!!! Thank you!
@HauntHours
@HauntHours 6 жыл бұрын
thanks bro, i appreciate
@eddypoppe2600
@eddypoppe2600 3 жыл бұрын
Thank you very much !
@123cookies4life345
@123cookies4life345 9 жыл бұрын
Hey Tewan, I'm a huge fan! Haha, I built a database today and your videos have helped me out a lot! Just wanna say thanks dude, awesome job
@29884840
@29884840 7 жыл бұрын
Thanks a lot SIR!!!!!!
@pervez51
@pervez51 2 жыл бұрын
Excellent Thanks
@MauricioNelson
@MauricioNelson 3 жыл бұрын
Genius ;)
@serdip
@serdip 10 жыл бұрын
Hi. Great tutorial that teaches me just what I wanted to know: how to hid the Ribbon. But I think you should put the DoCmd statement in the Navigation Form's OnActivate event instead of its OnLoad event. That way, whenever the Navigation Form gets focus, it will hide the Ribbon automatically. The technique demonstrated in your video will require the developer to add code to the OnClose event of each report or form launched from the Navigation Form, which is not necessary, I believe. Thanks for the great videos!
@austin72406
@austin72406 10 жыл бұрын
it's good method. I will try it. Thank you for sharing.
@DBDesignAndCode
@DBDesignAndCode 10 жыл бұрын
If you set this code on a login dialog box then you should not have this problem. Is that right Sir Austin72406?
@erickb7753
@erickb7753 7 жыл бұрын
Thank you for your videos. Just wanted to know how not to hide the minimize/maximize/close box within the Tables that are maximized with a hidden Ribbon bar. The problem that I'm showing is that once a table is maximized I can't close the table to go back to view other tables besides closing the whole database.
@ehteshamshah
@ehteshamshah 8 жыл бұрын
How to create our own customized Ribbon in Access like we did (Menu Bar) in Access 2003
@imranward4092
@imranward4092 9 жыл бұрын
you have been amazingly healpful thus far. I wanted to ask how do you disable one tab on the ribbon through vba?
@austin72406
@austin72406 9 жыл бұрын
if name of your navigation button is AdminPage then you can put this code under the On Load Event on Form. Private Sub Form_Load() Me.AdminPage.Enabled = False End Sub
@amirahsyuhada8559
@amirahsyuhada8559 8 жыл бұрын
Hello sir. Im doing a project at ms access. i would like to hide the prompt "type mismatch" because all the data that i want already appear. How to hide the prompt? Thankyou.
@michaelschweiger9772
@michaelschweiger9772 9 жыл бұрын
Hi Tewan, your video is really great! Thank you for sharing your helpful knowledge. “After putting “DoCmd.ShowToolBar "Ribbon” acToolbarNo” in my FORM, the Ribbon disappeared as supposed to be. But I still get the Toolbar (upper left corner) displayed. How did you get rid of the Toolbar in your Video? Could you please give me / us an advice what we have to do, to get rid of the Toolbar while displaying the Print Preview Screen. I really would appreciate your help! Best regards, Mike
@imtiyazshaikh544
@imtiyazshaikh544 8 жыл бұрын
Hello Sir, thank for such a wonderful video & it is helpful. But how this works in MS Excel 2010.
@isackagble-clinton7792
@isackagble-clinton7792 Жыл бұрын
You saved me
@syedabbas201
@syedabbas201 2 жыл бұрын
I need one more Help About FIFO
@javisu1975
@javisu1975 10 жыл бұрын
Hi Tewan The command DoCmd.ShowToolBar "Ribbon" acToolbarNo/Yes hides and shows the Ribbon. Is there a vba command with which it is possible to hide or show the navigation pane ?? instead of clicking Option and unchecking the check boxes
@austin72406
@austin72406 10 жыл бұрын
Hide with SetProperties "StartUpShowDBWindow", dbBoolean, falseyou need a SetProperties function which is shown on my video.it will take effect after program reopens. Show with SetProperties "StartUpShowDBWindow", dbBoolean, True
@FareyFerrai
@FareyFerrai 9 жыл бұрын
Hi how to show this only on print preview? In my case i want show reports in report view as default. But i want show the ribbon when i change to print preview.
@austin72406
@austin72406 9 жыл бұрын
display Print Preview toolbar when report is loaded. Private Sub Report_Load() On Error Resume Next DoCmd.ShowToolbar "Ribbon", acToolbarYes End Sub Private Sub Report_Close() On Error Resume Next DoCmd.ShowToolbar "Ribbon", acToolbarNo End Sub
@mirbektursunbekov6713
@mirbektursunbekov6713 9 жыл бұрын
HI Austin, thx to your video. I need your support for resolving this problem... it works when I'm opening my DB with SHIFT key, when I open my DB with just mouse double click, this method doesn't work... how to be in this case(when db is open with double click)?
@FallenHoot
@FallenHoot 8 жыл бұрын
+Mirbek Tursunbekov Right click and say Open well holding the "shift key"
@EppBre
@EppBre 9 жыл бұрын
Hey Tewan, I followed your instructions and everything works like in your video! But when I open a Report and the Navigation bar is open in the background, I can easily click on the Navigation bar and the Ribbon is there... :( [When I close the Report the Ribbon on the Navigation bar disappears how it is supposed to work!] Do you know a code to avoid this? it should be something like: when report oben, no ribbon active ...its not possible to put something like when report oben, no acces to navigationbar, because it might be necessary to oben more reports in the same time! Thanks a lot!
@austin72406
@austin72406 9 жыл бұрын
you can do like .. when open report make the form invisible (on click event of button, Put code as me.visible = false)then make form visible when report close (on close event of report, put code like forms!formname.visible = true)
@EppBre
@EppBre 9 жыл бұрын
austin72406 thanks for your answer! The problem is that the navigation bar needs to be visible to open if more than one Report... Do you know a code like "when Report open, noRibbon on navigationform"... I think that code should come on the NavigationForm Properties.. Thanks!
@ApexRailAutomation
@ApexRailAutomation 8 жыл бұрын
Tewan, I have watched this video and "Hide database window, Hide menu, Disable shortcut menu, Disable Special Keys : MS Access". They are a HUGE help. Thank you very much. Many thanks I have a question. If I was to hide the Ribbon, database window, Hide menu, Disable shortcut menu, Disable Special Keys...How can I then get them back for editing the database? I'm scared to implement all this at once and lock myself out of the back end. Thank you for your time and help.
@austin72406
@austin72406 8 жыл бұрын
FIRST you have to make a copy of your database for testing. You already show you how to bring back all on the video. if you use password then don't forget password.
@ApexRailAutomation
@ApexRailAutomation 8 жыл бұрын
+austin72406 Thank you, I will have to watch the video again. I also thought if creating a hidden button that is very small and the same color as the background. This would turn the ribbon back on.
@jamsgh5076
@jamsgh5076 9 жыл бұрын
Hi thanks for your videos it's very useful. Can u please tell me how to do the same code in Access 2013. specially to hide navigation panel (Tables, form ...)
@austin72406
@austin72406 9 жыл бұрын
it should work with 2013.
@jamsgh5076
@jamsgh5076 9 жыл бұрын
No. Not for the navigation tab(table, forms...)
@FallenHoot
@FallenHoot 8 жыл бұрын
+jamal sghayron You have to go to File --> Options --> Current Database --> Uncheck Display Navigation pane. That is how you do it.
@jamsgh5076
@jamsgh5076 8 жыл бұрын
+FallenHoot ok thanks
@abbasmuhamad3305
@abbasmuhamad3305 9 жыл бұрын
Hi Tewan thanks a lot for your videos it's very useful for me I would like to be my friend on Facebook and I need you for tell me more about access 2010 and VBA. Really I need you.. thank you again....
@austin72406
@austin72406 9 жыл бұрын
sorry Abbas I don't have Facebook
@DBDesignAndCode
@DBDesignAndCode 10 жыл бұрын
Austin72406 your tutorials are DA BOMB I originally posted this question on your iaccess website: www.iaccessworld.com/how-to-disable-properties/ Is there any way to integrate the enable/disable form views [design/layout] in the same functions for disabling ribbon menu? I do not want to user to be able to wander into the form layout. Also...I have a memo field in one form that I would like the user to be able to change color on the rich text. Can I conditionally enable just the ribbon for font size/color when that form is open? I had also read that key commands can be linked to a font color change like Ctrl+Shift+M for example. Also I do not like the input box because there does not seem to be a way to have a password mask . I made a new form with password mask on text box. Same concept with the password: correct value calls the enable properties. I could not get a message box to count the attempts without giving the user a chance to alter the input on the form. The loop code just loops through 3 attempts if you go my route...as of now....so I just do not use that part of the code. I like the idea though of showing the user their attempts left and desire more sophistication than what I have now..
@imtiyazshaikh544
@imtiyazshaikh544 8 жыл бұрын
Hello Sir, thank for such a wonderful video & it is helpful. But how this works in MS Excel 2010.
@imtiyazshaikh544
@imtiyazshaikh544 8 жыл бұрын
Hello Sir, thank for such a wonderful video & it is helpful. But how this works in MS Excel 2010.
@austin72406
@austin72406 8 жыл бұрын
it should work the same as Access. Put hide Ribbon code under the Open file procedure
Function Greeting User on Open : MS Access 2010
12:21
T Golden Eye
Рет қаралды 36 М.
50 YouTubers Fight For $1,000,000
41:27
MrBeast
Рет қаралды 126 МЛН
Heartwarming moment as priest rescues ceremony with kindness #shorts
00:33
Fabiosa Best Lifehacks
Рет қаралды 8 МЛН
Happy 4th of July 😂
00:12
Pink Shirt Girl
Рет қаралды 61 МЛН
custom shortcut menu VBA Access (English)
7:39
askfarouk
Рет қаралды 10 М.
Access Tutorial - Hiding the ribbon
9:59
LinkedIn Learning
Рет қаралды 37 М.
5 Ways to PROTECT Ms Access Database
9:36
Edcelle John Gulfan
Рет қаралды 12 М.
ribbon, navigation pane, document tabs show hide in access
11:25
Ms Access Dynamic Menu
27:49
Sissoko M. Prodev
Рет қаралды 156 М.
VBA Print Button MS Access
6:37
James Fowler
Рет қаралды 8 М.
Search Keyword using VBA Part 1
16:41
T Golden Eye
Рет қаралды 152 М.
Крючок застрял в пальце - что делать? 😬
0:19
СПОРУ НЕТ!
Рет қаралды 3 МЛН
Best father #shorts by Secret Vlog
0:18
Secret Vlog
Рет қаралды 21 МЛН
Loop? ❤️ #behindthescenes ?
0:11
The Quinetto's
Рет қаралды 2 МЛН
HAPPY BIRTHDAY @mozabrick 🎉 #cat #funny
0:36
SOFIADELMONSTRO
Рет қаралды 14 МЛН
小天使和小丑离家出走#short #angel #clown
0:36
Super Beauty team
Рет қаралды 30 МЛН
коллекционировали попрыгунчики?😭
0:59