Search results

  1. speakers_86

    How to provide navigation

    That sounds complicated. How are you letting users resize subforms? I have a method but it is tedious for me and the end user. I'd like an easier way.
  2. speakers_86

    How to provide navigation

    I am aware of the switchboard. I would sooner make one myself though. Essentially that is what I'm thinking of doing, I just like the look of custom ribbons. Slapping some buttons on a form just wont look as good as using the built in idMso images.
  3. speakers_86

    How to provide navigation

    What means do you provide to your end users to navigate around your database? I used to use the ribbon, but I want to stop since it is cumbersome and there is a registry key that disallows custom ribbons. I'm not sure how to do it and make it look good. My idea now is to have all forms be...
  4. speakers_86

    Shared Drive Woes on the Backend

    I have code in either the sample databases or code repository that tests if the backend location is connected. You could try that as a fail safe, not a fix. All it does it try and write a text file to the path of the backend and then delete it. If it fails, the we can assume the backend path...
  5. speakers_86

    Apache MySQL, PHP

    Oh, I missed where you said you got the initial problem fixed. Sorry. I use WAMP, too.
  6. speakers_86

    Apache MySQL, PHP

    Instead of the php file, create index.html. Place it where the folder, and try to navigate to your website. <html> <body> test </body> </html>
  7. speakers_86

    Apache MySQL, PHP

    First things first, can you get the server to return html?
  8. speakers_86

    Calling all Humans! HELLO!!!

    Once you understand the syntax it's all down hill from there.
  9. speakers_86

    Problem: Screen Refreshing in Access 2007

    Certainly sounds like a timer is running to me. Look at your form's properties and set the timer interval to 0.
  10. speakers_86

    Add immediate window ouptut (debug.print) to text box

    Of course you can. Just create an unbound text box and update it's value as needed. So instead of debug.print "text" you would say me.txtYourControlName = me.txtYourControl Name & vbcrlf & "text". Keep in mind that there is a limit to how much a control can hold, so eventually, you will have...
  11. speakers_86

    Ribbon Issue

    It is enabled on mine, but probably not the clients. Thanks, I'll try that, though I don't expect it to return anything.
  12. speakers_86

    Ribbon Issue

    I have a custom ribbon that works fine for me, but on the client's computer it only seems to partially work. Below is a snippet of code that toggles the visibility of all groups in the ribbon. It is just a fail safe that I put in a hidden form the end user doesn't really have access to. This...
  13. speakers_86

    Me.Page is wrong

    me.page returns the page of the last formatted page, not the page currently on the screen. I don't think I can get the page number of whats on the screen accurately.
  14. speakers_86

    Me.Page is wrong

    This even happens when using screen.activereport. This is frustrating. I can see the proper page number on the screen, but I don't see a way to get it in vba. The code below works until you get to the end of the report and start to back track. Public Sub a() On Error GoTo err Dim ctl...
  15. speakers_86

    Me.Page is wrong

    In a report, how can I reliably get the page number I am currently looking at? If I am looking at a three page report and scroll to page three, then back to any other page, Me.page returns 3. Basically, it is correct until the end user gets to the end and then backs up.
  16. speakers_86

    Property Problem

    I think I like your color scheme.
  17. speakers_86

    Opening accdb files in various Access versions

    You never know! Once you begin using a more recent version, you might not be able to go back very easily. I only use mdb, and I don't feel like I'm missing anything.
  18. speakers_86

    Opening accdb files in various Access versions

    I recommend using an mdb file, not an accdb, while developing.
  19. speakers_86

    Access Application Icon in the Windows 10 taskbar

    Maybe different updates on Office or Windows?
  20. speakers_86

    Query to store similar fields from two tables in one field

    Queries do not 'store' data. They bring data from multiple sources together. It sounds like you miiiiigghttt be asking for a Union query, but I'm not sure. If you have two different tables that both have a field called 'customerName', first of all, read up on normalization. There can be...
Back
Top Bottom