Search results

  1. speakers_86

    Requering forms automatically

    I am interested in making forms show current data, but I am hesitant to use requery in the timer event. Firstly, I have a huge aversion to the timer event in general. I don't like that I can sometimes tell when it runs. Sometimes the mouse wheel spins. If I am writing code and it runs my...
  2. speakers_86

    hide password

    I don't think so. Just don't use an input box. Use a new form. You will probably want popup and modal set to true.
  3. speakers_86

    How to hide built in ribbons

    A couple of things. Firstly, if you are using the xml I posted, I posted a version for 2007. That version does not have a backstage. Make sure you change the xmlns property. Secondly, your xml shows gethelperText. I'm sure it should be getHelperText. Notice the 'H'. I also noticed you did...
  4. speakers_86

    How to hide built in ribbons

    Run this once from the immediate window: Public Sub CopyCutPaste() Dim cmbRC As CommandBar Dim cmbButtonCopy As CommandBarButton Dim cmbButtonCut As CommandBarButton Dim cmbButtonPaste As CommandBarButton Dim strBarName As String strBarName = "CopyCutPaste" On Error...
  5. speakers_86

    How to hide built in ribbons

    I don't know what you mean by popup menu. You mean the right click?
  6. speakers_86

    How to hide built in ribbons

    The sample I posted is only designed to work with one dynamic object. If you have mulitple dynamic objects, you have to start expanding the code. You are using the booVisible variable for everything. That will cause issues. You need to separate variables to store the visible status of...
  7. speakers_86

    Dynamic Ribbon Example

    This shows you the basics of dynamic ribbons.
  8. speakers_86

    How to hide built in ribbons

    I think the start from scratch command disables qat. I've locked down stuff before and there is nothing harmful in the QAT.
  9. speakers_86

    Digital Signature in Access or Export

    Access allows you to export reports to pdf. PDFs allow you to place signatures anywhere. Just use the Fill & Sign toolbar and click on Place Signature. If you don't see that, you may be using on old version of adobe reader. I'm pretty sure the link MarkE posted uses a reference to Acrobat...
  10. speakers_86

    Datasheet Form: Filter By Multiple Fields

    I'm not sure, but it may not be the best idea to rely on those filters. If there are many different values those filters wont appear.
  11. speakers_86

    Many 1:1 tables? Or...

    What is this subset of unique data? Can you elaborate on that? Depending on your answer, I'm wondering if you can have two tables: tblProjects -ProjectID -Other Stuff tblProjectData -ProjectDataID -ProjectID -Field1Label -Field1 -Field2Label -Field2 Have enough blank fields of various...
  12. speakers_86

    Hide error in textbox

    I'm pretty sure they mostly just wanted you to disclose that you cross posted this. That issue aside, if you are expecting free help on a technical issue, you should treat these volunteers with a bit more respect.
  13. speakers_86

    Hide error in textbox

    Yep, you're going to get a ton of help.
  14. speakers_86

    How to hide built in ribbons

    Check this out. That website is the best resource on the whole internet for ribbon stuff. Also, if you disable all those command in the xml in my sample you can almost lock down most of the things end users don't need access to.
  15. speakers_86

    How to hide built in ribbons

    The get subs are called by the xml. The set subs are called by us via vba. The only thing the set subs do is set a variable and tell the ribbon to invalidate (which forces the get subs to run). Everything about this dynamic ribbon hinges on the variables. Anytime you get error 91 it is...
  16. speakers_86

    How to hide built in ribbons

    Invalidate is our way of telling the ribbon to refresh itself. It is a method of the IRibbonUI object. That is why we have to use the reference. All of those get subs are called by the ribbon interface every time we invalidate. We don't actually call it ourselves.
  17. speakers_86

    How to hide built in ribbons

    Heres going above and beyond...
  18. speakers_86

    How to hide built in ribbons

    Bear with me a few more minutes. I'm almost done.
  19. speakers_86

    Database Cannot be opened error

    I've always seen people recommend against 64. Personally, I don't know one from the other. I've only read that you do NOT want 64.
  20. speakers_86

    Database Cannot be opened error

    Noooooo...you want 32 bit. Get rid of 64.
Back
Top Bottom