Search results

  1. 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.
  2. E

    Access product catalogue website style

    I think the link doesn't work.
  3. 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...
  4. 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...
  5. E

    Access product catalogue website style

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

    Access product catalogue website style

    Attach a txt file with the link or post a screenshot.
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. 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.
  15. 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...
  16. 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...
  17. 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: -...
  18. 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...
  19. E

    Dynamic/reusable forms

    Install OBS, it's free. Run it. Add "display capture". Click "start recording". Show what you want to show. Click "stop recording". Go to youtube. Click upload. Choose the video you just recorded. By default, the video is in your videos folder. Done.
  20. E

    Slow downloads using ODBC driver to connect to Shopify

    You could continue troubleshooting this by using another computer and seeing if the same happens there while you get answers from both Shopify and the 3rd party app.
Back
Top Bottom