Search results

  1. E

    Solved Navigation tabs left side and top side controls

    You should have changed the navigation form that has both left and top buttons with one that has ONLY left buttons. Then, make another navigation form with ONLY top buttons for command1 and another navigation form with ONLY top buttons for command2 as well. Can you show a screenshot of what you...
  2. E

    Solved Navigation tabs left side and top side controls

    Yes, the setup that I described would have that effect, but with navigation forms. Can you show what you have or describe the problem that you're having?
  3. E

    Solved Navigation tabs left side and top side controls

    Opt for vertical left. Then: For the top button on the left, make another navigation form to appear, this time with horizontal tabs. For the 2nd button on the left side, make yet another navigation form to appear, also with horizontal tabs and completely different names. If some button on the...
  4. E

    CSV or Excel daily data

    Suggestion: Request both CSV and Excel files, then test them to determine which is easier to work with. Ideally, build the export mechanism yourself for better consistency, but if you can't, then test the two to make an informed decision. If the comparison calculations are the same each time...
  5. E

    Setting on click event of a control in VBA

    @ziad Creating controls on the fly will eventually render your form useless, I suggest you create a new thread for that because it's a very different topic. Moved by UG
  6. E

    Why is speech to text in Access slower than in Word?

    Let's suppose OP only has one input tag in the Edge Browser Control, then why not: MsgBox BrowserCtl.RetrieveJavascriptValue("document.getElementsByTagName('input')[0].value")
  7. E

    Why is speech to text in Access slower than in Word?

    Ah, sorry. I speed read the post.
  8. E

    Why is speech to text in Access slower than in Word?

    Something like this reads the content of a textbox with no issue from my computer. Private Sub MyButton_Click() CreateObject("sapi.spvoice").speak Me.MyTextbox End Sub Now, since you say you managed to make an HTML input read out loud its contents, I assume you're using...
  9. E

    Importing Specific Field Names From Excel into Access Table

    You need VBA code there 1. Open Excel 2. Open Workbook 3. Find the data by referencing the sheet and range 4. Import what you need 5. Quit Excel
  10. E

    Emmanuel Katto Dubai : How to Create Professional Form Styles in Access

    I believe the answer is going to be in what you consider a professional form style. The example you provide is going to tell you what you have to do. We could assist in letting you know how hard it can be.
  11. E

    Is this a normal behavior in Access?

    I tested what you're doing with A2016 and it's the same. I don't see this as a new thing. For instance, when you write code with variables that aren't tied to a specific type, which we refer to as "late binding", the compiler overlooks those details and allows you to continue writing your code...
  12. E

    How to distribute an Access app?

    Test your accde file and make sure you have good error handling I would worry more about the previous point, add some login form to serve as the only security before making things more complicated, once you see the product is viable and will grant you sales, migrate it to a secure platform if...
  13. E

    Emmanuel Katto Dubai : Help Needed with Generating Unique Customer Codes in Access

    I think the OP has posted 4 threads already and has not replied to any.
  14. E

    Create your own music hits with AI - amazing!

    I like udio too https://www.udio.com/songs/qtZrU73ehZvvj3m35gRfuR
  15. E

    What will happen If I decide to ditch the database?

    Well, it depends on the customer, right? some of them are very impressionable while others are knowledgeable. Some of them might want to create proprietary stuff and others don't give a damn. There are all kinds of situations but I do agree it's not wise to do everything yourself. I personally...
  16. E

    Is 32768 the maximum number of objects in a MS Access database?

    Thanks. I didn't know it would do such a thing but it would help explain other side effects like the slowness for such a mundane task. I'll check it out.
  17. E

    Emmanuel Katto Dubai : Suggestions Needed for Creating a Search Text Box

    Do you have any functionality in mind? Here's a basic example of a search text box that responds as you type and filters the results with the added benefit of displaying an image when no results are found...
  18. E

    Is 32768 the maximum number of objects in a MS Access database?

    I tried that once, I also went way beyond the 40k forms. It worried me when I tried to rename them to a consecutive number according to their order of appearance in the AllForms collection with a For Each loop: it skipped some forms. I would guess it becomes erratic when you have that many...
  19. E

    How to make a large project?

    Testing has been mentioned multiple times. Here's what ISTQB, an authority in the subject, says about that: 1. Testing shows the presence, not the absence of defects. Testing can show that defects are present in the test object, but cannot prove that there are no defects (Buxton 1970). Testing...
  20. E

    Solved Excel too smart for me

    I personally prefer: Data tab > Get External Data group > From Text button
Back
Top Bottom