Search results

  1. A

    Question Loading Ribbons

    Hi Create a button to compact and repair, according to question 16 http://www.ribbons-access.com/ms-access/ribbon-support-faq.asp#inicio To open mode structure of the BD, just hold down the SHIFT key. All the ribbons will appear normally. To set the FILE TAB must use the tag <backstage>...
  2. A

    Advanced Ribbon Functionality

    Hi Create variables for each ribbon. gobjribbon1 gobjribbon2 ... gobjribbon1.Invalidate 'changes the Ribbon1 gobjribbon2.Invalidate 'changes the ribbon2 ...
  3. A

    How does the On_Change event work ( Edit Box on ribbon ) ?

    Hi Follows a small example. Have to use the Enter key to apply the filtering. The application site below has an example of each control. http://www.ribbon01.com/ Many interesting tips in the FAQ http://www.ribbon01.com/tutoriais/faq.asp
  4. A

    Not a Valid Password Error

    Hi Use the compact and repair when restate the links. Access 2010 has a bug that wont fix using the compact and repair.
  5. A

    Question Ribbon showing with RDP Connection

    Try disabling the following path: Access Options> Trust Center> button 'Trust Center Setting "> Add-ins> Select "disable all application add-ins ... "
  6. A

    Custom ribbon always jumps back to first tab

    Hi See Question 7 http://www.ribbons-access.com/ms-access/ribbon-support-faq.asp#inicio Add the onLoad attribute <customUI xmlns = "http://schemas.microsoft.com/office/2009/07/customui" onLoad = "fncRibbon"> In the global module: Option Compare Database Public objRibbon As...
  7. A

    Question Ribbon showing with RDP Connection

    Hi Paste here a "print screen" to see that this is ribbon. What is your version of Access?
  8. A

    toolbars 2007

    Hi Hi You may need to reactivate the Access ribbon, and then activate the ribbon of the report. Private Sub Report_Open(Cancel As Integer) DoCmd.ShowToolbar "ribbon", acToolbarYes Me.RibbonName = "myReport" End Sub
  9. A

    Access 2013

    Hi Another shame and I can not understand is the exposure of the password back-end, the MSysObjects table. This ridiculous failure, will be eternal? The VBA has not been changed by your END is near. Gradually be replaced by MACRO, which is being remodeled and enlarged. My note is ZERO for...
  10. A

    Question Ribbons in package solutions

    Well, here I use Avast and does not present any problems. It may have been a Google ad. As I said, it's OK for me.
  11. A

    Question Ribbons in package solutions

    With these videos I learned very quick! Knew nothing about XML. The assembly program was developed in Access. Well, for me was show! http://www.ribbon01.com
  12. A

    XP Toolbars and MenuBars in Access 2010 .accde instead of ribbon?

    Hi Anthony Enjoy the weekend and check out this site that will answer all your questions. http://www.accessribbon.de/en "Finally - whats the point of ribbons for either a developer, or the end user. Seems I now have a lot of work - just to get back to where I was Already?" See also...
  13. A

    XP Toolbars and MenuBars in Access 2010 .accde instead of ribbon?

    Hi The technique of keeping the menu, out of the add-in only works for MDB extension. If you decide to use the extension ACCDB, the menu will be trapped in the Add-in tab. It is ugly! Why get stuck in the past? Face the change, that is here to stay! There are good sites teaching the...
  14. A

    Rapbrasil intro

    Hi Ravi! Welcome! The best site I know about Access and this is in Portuguese: http://www.usandoaccess.com.br I saw some free apps out there. Regards
  15. A

    Ribbon Combo Box

    HI Croydon! Case resolved ?
  16. A

    Subform total is not working on Main form

    Hi It is not possible sum fields disconnected from the query/table. Try this: Total Cost = Sum([Quantity]*[UnitPrice]*(1-[Discount]/100)) Success!
  17. A

    How to set AllowFullMenus with VBA

    Hi Dim prpNew As Property On Error Resume Next CurrentDb.Properties("AllowFullMenus").Value = true If Err.Number = 3270 Then Set prpNew = CurrentDb.CreateProperty("AllowFullMenus",dbBoolean,true) CurrentDb.Properties.Append prpNew Err.Clear End If Sucess!
  18. A

    Ribbon Combo Box

    Hi The secret is in the use of InvalidateControl 'Rewrites and updates the list of the combobox to a new search. objRibbon.InvalidateControl ("cbx1") Review article code.
  19. A

    Ribbon Combo Box

    Hi This article is an example of how it's done. http://www.ribbon01.com/tutoriais/tuto44eng.asp?id=1#inicio Sucess!
  20. A

    Question Dynamic Serial No in Reports or Queries

    Hi 1) create a new text field in the report 2) open the list of properties of this new field. 3) In the property "source control" set: = 1 4) In the property "Running Sum" set: Total (full) Sucess!
Back
Top Bottom