Search results

  1. isladogs

    Microsoft Access: Edge Browser Control is finally here :)

    Your comment implied that the anonymous contribution was inappropriate. From the site owner's comments, he received a complaint from YKW which caused him to close the two threads and delete all references to that person. That was clear enough. In the circumstances, none of us here have the...
  2. isladogs

    Microsoft Access: Edge Browser Control is finally here :)

    It had absolutely nothing to do with the thread being closed. You raised it as being inappropriate - I responded to that comment. If you want to post a thread to the Code Repository or Sample Databases, then go ahead. Not sure I see the relevance to the now closed threads
  3. isladogs

    Microsoft Access: Edge Browser Control is finally here :)

    The person who sent me the database from the deleted article at "You Know Who's" website said they would prefer to remain anonymous when I asked if I could thank them publicly (in line with my standard practice). That was his/her personal preference which I respected. Absolutely nothing...
  4. isladogs

    Webbrowser in Form without Control !!!! Years to late....

    OK I've now tested ******** ******** code on 3 machines - all running 64-bit A365 New Win 11 laptop with 64GB RAM - PowerShell initially opens as an external app with a taskbar icon and then moves to load inside Access after about 3 seconds at which point the taskbar icon disappears. Changed...
  5. isladogs

    Local file in new webbrowser control

    I don't have A2024 but I've just re-checked and it still works for me in A365 using .ControlSource The prefix should be https://msaccess before the file path Today, I'm having issues with .Navigate though that also worked in the past. Have you tried both setting the local file address using...
  6. isladogs

    Webbrowser in Form without Control !!!! Years to late....

    Another AWF member who prefers to remain anonymous was kind enough to forward ******** original example which I just tried. The splash screen opened in the Access form but PowerShell itself then opened as an external app with its own taskbar icon. This is also what I saw with various other apps...
  7. isladogs

    Webbrowser in Form without Control !!!! Years to late....

    @Jason Lee Hayes ******** now deleted article suggested that he was opening external apps within Access (rather than from Access as in my own example app). I assume your example is a modified version of what ******** published and was able to use it to open a number of external apps including...
  8. isladogs

    Webbrowser in Form without Control !!!! Years to late....

    I went to download ******** code this morning and found that he had deleted the page. Using Jason's example, I tried 4 different apps and was able to load 3 of them successfully. However, like others I'm also wondering what the practical value of doing this actually is - that is beyond the...
  9. isladogs

    Solved Key Events - Ctrl-Delete UnDetected

    Sorry but I still do not understand what you are referring to here The built-in VBA library has been based on different versions of the VBE.dll file for as long as I can remember In Access 2000, it is the first item in this list of references: REFERENCES...
  10. isladogs

    Updating Image Controls In Real-Time

    I also use the Picture property in my Folder Image Viewer example app: https://isladogs.co.uk/folder-image-viewer/index.html This automatically rotates or flips the image horizontally or vertically as appropriate, together with an option to save the modified version. For example
  11. isladogs

    Solved Key Events - Ctrl-Delete UnDetected

    The VBA Library is still built-in and cannot be removed. That has always been the case since Access 95
  12. isladogs

    Solved Key Events - Ctrl-Delete UnDetected

    @dalski Just tried Arnel's code. It detects Ctrl+Delete in both the form and subform but only undoes that action in the subform. In the main form, it triggers the message about undoing changes but doesn't actually do so in my tests. All characters to the right of the cursor are deleted in the...
  13. isladogs

    Solved Key Events - Ctrl-Delete UnDetected

    I find KeyDown works better than KeyUp and use the descriptors rather than the value The following works but the KeyUp equivalent didn't fire for me either: Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) Select Case Shift Case acCtrlMask 'Control pressed...
  14. isladogs

    Webbrowser in Form without Control !!!! Years to late....

    @MsAccessNL How soon do you expect to post your solution or video?
  15. isladogs

    Best approach for temporary A2003 installation

    Personally I would do this using a VM such as Virtual Box if you only need to use A2003 to convert some old pre-2000 format MDBs. However, if you need to use A2003 more extensively, then a dual installation may be useful. As you already have 64-bit A2019 installed, it should be possible to add...
  16. isladogs

    Solved Disable Multiple Record Selection On Subform

    I used a listbox for the move/resize columns example but as its not multiselect, that could also be done using a combobox just as well. I already use a combobox for restoring hidden columns as that takes up less space. Alternatively it could be done using a custom right click context menu. In...
  17. isladogs

    Solved Disable Multiple Record Selection On Subform

    Whilst datasheet forms have the functionality to hide / freeze / move / reorder columns already built-in, the same features can all be added to continuous forms. See the various links in my summary article: https://www.isladogs.co.uk/add-features-forms/index.html
  18. isladogs

    Code Repository Essentials

    Old threads are closed in moderated areas of the forum (sample databases and the code repository). There is no block on posting new threads but remember such posts have be approved by moderators before they are visible to all.
  19. isladogs

    How to give a fancied DBA read only version of the tables.

    I’ve only skim read the thread but it’s easy enough to make the tables read only as suggested in the thread title. You need to assign the dbSystemObject property. My database analyzer has similar functionality to the FMS TAA app. Suggest you look at the detailed descriptions of both tools...
  20. isladogs

    How to register library/reference from vba code?

    Perhaps my articles will help? https://isladogs.co.uk/references-code/ https://isladogs.co.uk/reference-list-locations/index.html Its unlikely you will need to register a missing reference library before adding it, but to do so, you would use regsvr32 from a command prompt
Back
Top Bottom