Search results

  1. Jason Lee Hayes

    Calendar that works in the Edge browser.

    No; JS (JavaScript) for web based protects but at home with C++ as my first preference…… Still remember the good old 6502 processor on the C64; what i blast i had with that…… Showing my age now
  2. Jason Lee Hayes

    Calendar that works in the Edge browser.

    Thanks for sharing; it's definitely useful. Being able to use HTTP, CSS & JAVA within access effectively is the only thing that's pulling me back to access for some small projects.
  3. Jason Lee Hayes

    Adding badges over the Access taskbar icon.

    Loving it; thanks for sharing……
  4. Jason Lee Hayes

    A simple HTML editor to work in the edge browser

    You can simply unzip the package and open it directly in your browser, or use the original CJ‑London upload from post 1 and point your WebBrowser control to the unzipped file. It’s fully compatible with Microsoft Edge WebView2, which means you can inject HTML content straight into the control...
  5. Jason Lee Hayes

    A simple HTML editor to work in the edge browser

    I see; yes - was highlighting the fact that this can be done (Inspect Prevention) really however KitaYama has reminded me that this was posted in the Code Repo in which you need to be able to make use of it. I have posted an older version at the end which has no Obfuscation / AES /...
  6. Jason Lee Hayes

    A simple HTML editor to work in the edge browser

    Yes; good point - been distracted a little and forgot this was in Code Repo...
  7. Jason Lee Hayes

    A simple HTML editor to work in the edge browser

    AI Answer: What Obfuscation Actually Protects: 1. It raises the barrier for casual copying Minifying or obfuscating JS/CSS makes the code harder to read: • Variable names become meaningless ( → ) • Whitespace and structure disappear • Logic becomes harder to follow This stops...
  8. Jason Lee Hayes

    A simple HTML editor to work in the edge browser

    I’m nearly finished now — just adding the top‑level File menu above the toolbars with the usual New, Open, Save, Save As, Close, and so on. I’m also duplicating some of the existing toolbars like Format, Insert, Token, plus a few specialist functions. Everything’s running smoothly. The whole...
  9. Jason Lee Hayes

    Laptop slow to a crawl.

    Remeber: Worth noting: Some USB-C docks average 45W to 65W output! Modern laptops require much more typically 90-140W when running on full performance and charging. I use a DellWD22B4 with an 180W PSU on my gaming laptop and can connect many things and still charges battery! If your dock...
  10. Jason Lee Hayes

    A simple HTML editor to work in the edge browser

    My Sanitizer is only basic but does the job - identifies attributes and tags for Access, Email, & Telegram A Strict Mode aswell however its too strict so will need to relax this and introduce a soft/hard strict. Sanitizer is important for me especially when working with Telegram API to support...
  11. Jason Lee Hayes

    Solved Form "Losing colours" - nVidia Card Installed

    Ideally we need to know exactly what change has been done before attempting to change any settings BUT if we don't know then: Right‑click the desktop → Properties Go to Settings Look for Color quality Make sure it’s set to Highest (32 bit) If it’s at 16‑bit or lower, Access will lose colour...
  12. Jason Lee Hayes

    Solved Form "Losing colours" - nVidia Card Installed

    To resolve this issue we need to know the following from the outset otherwise you will be chasing your tail. Specific display card make & model (Are you referring to Nvidea as the make or chipset) (Many Rebranded) The current driver version and where from (From MS or NVidia direct) How are you...
  13. Jason Lee Hayes

    Date Pickers, Calendar Controls, and Calendar resources

    Updated to allow range selection & added [Today]; add time T/F aswell.. The beauty of HTML is you can easily modify to your specific requirement. you could add seconds, AM PM, Preset Buttons (Last Month, Last 7 Days etc) or add multiple month views and layout format/color with basic HTML/CSS...
  14. Jason Lee Hayes

    Date Pickers, Calendar Controls, and Calendar resources

    Sorry; only just tested; that may not appear as expected (You may see an overlap issue)... Use the following which is what i believe you requested: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1">...
  15. Jason Lee Hayes

    Date Pickers, Calendar Controls, and Calendar resources

    Hi arnelgp; i save script & style the tabe the same way. So i understand it you want the calendar never closes automatically, not on date selection, not on outside click, not on blur. It behaves like a permanently‑open selector panel unless you explicitly hide it yourself? Just need to override...
  16. Jason Lee Hayes

    Date Pickers, Calendar Controls, and Calendar resources

    My Access/WebView 2 Date Picker Ideally replace jQuery UI Datepicker with FDatepicker which would be lighter, more modern, & dependency‑free ; perfect for MS Access Forms) <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width...
  17. Jason Lee Hayes

    Solved How to print underscores instead of a field value, in a report

    Loving the rectangle look - all 3 shapes are very useful - Thanks for sharing……
  18. Jason Lee Hayes

    A simple HTML editor to work in the edge browser

    If you need Base64 Paste Support: Suggest: add auto resize and compression to better the function. // PASTE HANDLER WITH BASE64 IMAGE + AUTO-RESIZE editorEl.addEventListener('paste', function (e) { e.preventDefault(); const clipboard = e.clipboardData || window.clipboardData; if...
  19. Jason Lee Hayes

    Send messages from Access to Telegram

    Nearly ready for thorough testing. 32/64bit compatible…… Telegram API is outstanding!
  20. Jason Lee Hayes

    A simple HTML editor to work in the edge browser

    I found it very useful when editing/creating my HTML driven switchboard from withing access....
Back
Top Bottom