Search results

  1. speakers_86

    How to hide built in ribbons

    I think so. The xml code you posted should work. Worst case scenario you can startFromScratch=true. You can hide buttons, menus, and tabs. Just use the getVisible callback. I can test it when I get home. This computer wont let me use custom UIs.
  2. speakers_86

    How to hide built in ribbons

    Its hardly new! What are you trying to hide, and when should that happen? Most objects have a getVisible property. edit- If you are only trying to hide the home tab, you posted the xml for that yourself. I'm confuses as to what exactly you are having trouble with.
  3. speakers_86

    How to hide built in ribbons

    You can use the LoadCustomUI method to load the xml file from a string, and then you simply set the database property to set the ribbon. I believe the property name is RibbonName stored as text. The first time you set the property, a restart of Access is required. I don't think the file button...
  4. speakers_86

    Autosize

    If you're using a datasheet, you set the width to -2(I think its 2). If it is a standard form, you can anchor the control so it stretches across the screen in Access 2007 and up, but that doesn't really answer your question. If you want to go through the trouble, you can test the length of the...
  5. speakers_86

    Can I use my shared drive

    Is there no way for me to tell the difference?
  6. speakers_86

    copy form and subform details

    Yes. In the button's click event, you would do something like: Forms![orders].YourFieldName = me.YourFieldName Before that, make sure the orders form is open, and move to the appropriate record. Before you get carried away, look into naming conventions. You don't want spaces in your form...
  7. speakers_86

    How to hide built in ribbons

    Check out the application.LoadCustomUI method.
  8. speakers_86

    Can I use my shared drive

    Of course I can, but I'm asking because I don't know the network topology. Basically, I don't know how far away the shared drive is. The backend should not be stored on a WAN, or so I've read. I've had issues before doing this that would cause Access to get hung up. I tried a traceroute, but...
  9. speakers_86

    Database Cannot be opened error

    You should do the steps David Fenton describes here once every day or so. Also, make backups frequently. Especially anytime you make large changes, whether it be to code or to objects (such as deleting a form!). Also, email yourself all necessary files regularly.
  10. speakers_86

    Can I use my shared drive

    I have a shared drive at work, but I don't know the network topology. I do know there is no wireless involved. How can I determine if it is okay to use to store the backend? Can I tell simply by pinging it and checking the response time? Should I build a test that writes a new record over...
  11. speakers_86

    Linked Tables read-only

    If I understand correctly, it sounds like a permissions issue. Make sure the user has both read and write access to the backend directory.
  12. speakers_86

    Shortcut Menu

    Here is what I am using just for cut/copy/paste. I think all of this was derived from ChrisO's work. The first part creates the menu object in the database. You can run this from the immediate window first: Public Sub CopyCutPaste() Dim cmbRC As CommandBar Dim cmbButtonCopy As...
  13. speakers_86

    Shortcut Menu

    I think his code can be trimmed down a lot. What's nice about it is you can use tables to control how the menu is.
  14. speakers_86

    Shortcut Menu

    Ahhh...Here it is.
  15. speakers_86

    Shortcut Menu

    There is a really good sample here somewhere. I think it was by ChrisO. I'll take a look for it.
  16. speakers_86

    Programatically Installing Add-In's within Access

    So when you say unmanaged, you're not talking about C, you're talking about the mda file itself? It sounds like you could do the same thing I did and write a managed addin to install the mde and provide a custom ribbon interface. Edit-When I say install, I really mean placing the mde in a...
  17. speakers_86

    Programatically Installing Add-In's within Access

    So this addin is an mda file that you currently access using the addin drop down? What part is unmanaged? What I did was create the mda and then I wrote managed code that modifies the ribbon to give me my user interface for my mda. I don't need to use the addin drop down at all. Does that...
  18. speakers_86

    Programatically Installing Add-In's within Access

    Were you not able to make a managed version of this?
  19. speakers_86

    Programatically Installing Add-In's within Access

    Maybe I'm not getting something, but I don't understand what you're having trouble with. I've created managed addins in Visual Studio, and VS creates an installer. All I have to do is open it and click next three times and it is ready to go. Why do you need to automate that? My site is in my...
  20. speakers_86

    Form record navigation out of sync with back end tables

    I like to make the autonumber visible but enabled set to false so it is grayed out. This way it is there for reference.
Back
Top Bottom