Jump to content

wakillon

Active Members
  • Posts

    3,285
  • Joined

  • Last visited

  • Days Won

    23

wakillon last won the day on June 8 2016

wakillon had the most liked content!

5 Followers

About wakillon

  • Birthday 07/29/1968

Profile Information

  • Location
    Mont Saint Michel

Recent Profile Visitors

5,763 profile views

wakillon's Achievements

  1. Last week I came across enumicons.au3 in the folder C:\Program Files (x86)\AutoIt3\Examples\GUI\Advanced and while testing it, I thought that a small update wouldn't hurt enumicons.au3
  2. Previous version was at the top of screen but as i said, it's annoying for navigation SlidingToolbar1.0.0.5.au3
  3. No need to click for see it, just put your mouse on the left side of your screen Why on the left? Because the taskbar is already crowded, on the right side we scroll, and at the top when we use our browser tab by tab, it's not convenient to have a GUI in the way. You can add Shortcut, InternetShortcut, Files, and Folder by drag and drop on any button (special folders not supported) Right click menu on it for delete item See tray menu for options To exit, click on the InfoBar at the bottom of the GUI or by tray menu SlidingToolbar.7z
  4. Your welcome Some includes are not necessary, and I will declare my local variables before a loop
  5. Hi ioa747 I have tried your code with an autoitscript.com xml file sitemap and it works pretty well 😉 https://www.autoitscript.com/site/page-sitemap.xml And we can see some 404 error messages there 😅
  6. Nicely done UEZ But it's false you can add shortcut to the Win11 taskbar You have just to create it this way Once done, right click on it, and pin to the taskbar 🫡 FileCreateShortcut( 'C:\Windows\explorer.exe', @DesktopDir & '\Desktop.lnk', @WindowsDir, @DesktopDir, '', '', '', 0, @SW_SHOWNORMAL)
  7. I use this UEZ function for set $Scaling and fonts are to a readable size #Include <GDIPlus.au3> $SCALING = _GDIPlus_GraphicsGetDPIRatio() Func _GDIPlus_GraphicsGetDPIRatio($iDPIDef = 96) Local $hGfx = _GDIPlus_GraphicsCreateFromHWND(0) If @error Then Return SetError(1, @extended, 0) Local $aResult = DllCall($__g_hGDIPDll, "int", "GdipGetDpiX", "handle", $hGfx, "float*", 0) If @error Then Return SetError(2, @extended, 0) Local $iDPI = $aResult[2] _GDIPlus_GraphicsDispose($hGfx) Local $aResults[2] = [$iDPIDef / $iDPI, $iDPI / $iDPIDef] Return $aResults EndFunc ;==>_GDIPlus_GraphicsGetDPIRatio
  8. There is a display problem
  9. Nice work, Thanks 😉
  10. Sorry Jos, It's my fault, I had installed version 5.5.5. UEZ just told me about a version 5.5.6 that I didn't notice because there is no version indication (SciTEx86.zip). Files replaced and it works correctly Thanks
  11. I do not have any crashes but some long hangs I do not understand where the problem comes from Despite a fresh installation of Windows 11x64, switching from one tab to another can take some few seconds I have installed VSCodeUserSetup-x64-1.104.1.exe expecting an improvement but no really changes Back to the 4.4.6
  12. No problems, all examples work well The number of barcode types is impressive ! Nice work as usual
  13. Thank you 🫡
×
×
  • Create New...