Search results

  1. E

    Sub Forms

    The best thing that you can do is learn to use any control from the toolbox from scratch. Subform controls will only ask you for these 3 things: 1. Source Object: the form or report to display 2. Link Master Fields: the field(s) in the parent form that exists in the source object of the subform...
  2. E

    benefit of GPT

    Yes, many times I end up doing it myself, but it's a handy tool. In general, before I submit my prompt, I ask myself how can they use this prompt against me later?
  3. E

    Access product catalogue website style

    Something's wrong. I can see the name of the file, but it does not let me download it and that error message shows up. I suggest you use another service, like Google Drive or even Dropbox.
  4. E

    Access product catalogue website style

    I think the link doesn't work.
  5. E

    Access product catalogue website style

    Thank you for the compliment. I see that you're using the ActiveX browser control in your solution, I believe the same approach can be followed to add events to your sample, just give your tags some id attribute that is unique. For example, images could have the format "image_" & rs!id, ratings...
  6. E

    Access product catalogue website style

    I modified the file. This version does not require registry key changes. It is using the default browser, which is IE6, I think. That means the only thing we can hover over with CSS are links (but can be done with JS), we also can't scale or animate things (but can be done with JS). We don't...
  7. E

    Access product catalogue website style

    This is your link. https://limewire.com/d/792096ca-64f5-4a2a-959c-6291f5071363#YDG0valBnCTMUUe6p0nVKRYiFIPjwQH5jpL-QwBgG7o
  8. E

    Access product catalogue website style

    Attach a txt file with the link or post a screenshot.
  9. E

    Access product catalogue website style

    Thanks. Please read posts #12, #19 or #20 for context, where I'm writing that you need to enable IE11 emulation. The library allows it but the browser being used by your legacy browser control does not support that feature. You need to make the browser control emulate IE11 by modifying the...
  10. E

    Access product catalogue website style

    Just edit the link, for example, instead of google.com, you can write google dot com Internet browsers are really complex programs that must support old and new things and that is really hard to accomplish. Therefore, as most things, they have been evolving consistently and some things have...
  11. E

    Access product catalogue website style

    Thanks. It seems the document wasn't set up correctly in your environment. This might be due to the Access version you're using, but I'm really curious to find out the exact cause. Could you download the attached file and see if you get the same behavior? If you still get the same behavior...
  12. E

    Access product catalogue website style

    You can use the browser control to show something like this: Doing that requires browser emulation set to IE11, which requires you to add a DWORD key with value 11001 to the path: HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION You could...
  13. E

    In stock or Not in stock

    Visiting a few products in that website, I see getElementsByName("Quantity") finds multiple elements and the first element is always the main product. The rest of the elements are related products. Therefore, getElementsByName("Quantity")(0) is always the main product. So why are you checking if...
  14. E

    Dynamic/reusable forms

    What sort of sub are you talking about? a sub routine, a sub form? What do you mean by item here? Also, I prefer to see how the metadata looks in your Access file, can you take a screenshot or paste here a few examples of the whole definition that will be processed by your code? It's really...
  15. E

    Problem Posting a table

    Testing a bookmarklet CityIDCityNameCountryID 1New York1 2Toronto2 3California1 cities It seems to work. You can use a bookmarklet to let you post your tables properly while the devs fix the parsing issue. Here's how to add the bookmarklet: 1. Add a bookmark to your browser 2. Name...
  16. E

    Problem Posting a table

    I edited the table markups from here Then I removed the header each cell's alignment markups, and And it shows correctly, but it takes the entire screen, I don't know if that's intentional.
  17. E

    Problem Posting a table

    Normal paste: task_status TaskStatusID Status 1 Status 1 2 Status 2 Only rows, no formatting: task_status TaskStatusID Status 1 Status 1 2 Status 2 Now without color markups task_status TaskStatusID Status 1 Status 1 2 Status 2 Now without font markups task_status...
  18. E

    Dynamic/reusable forms

    @Imb I think I understand what you're doing. Basically, your framework lets you write the control definitions to a table and after that everything is handled by the forms. So, what is the source object of the 20 subform controls? Is it the same form or different forms? How does the control...
  19. E

    Helpful Language Comparisons (maybe)

    Well, Access is not a language. VBA would be the point of comparison and these are a few of the things that should be evaluated for that document, I'll try with VBA. Popularity: - Bad reputation - Young developers avoid it - It's widely available because it comes with MS Office Community: -...
  20. E

    Dynamic/reusable forms

    @Imb I must confess I have no idea of what this thread is about, but based on the first few posts, it seems you're trying to get ideas or contributions that help you scale your currently 50MB+ code base. But instead of scaling your app, what scaled is the heat in this thread in terms of the...
Back
Top Bottom