Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/06/2023 in all areas

  1. I don't have a folder with 10K files in it, but this works with 400 files, providing an array with each file in its own cell. Of course, you have to first select many files using Explorer, then run this code (even uncompiled) and handle the drop at your own pace. _ClipBoard_Open(0) Local $data = _ClipBoard_GetData($CF_HDROP) Local $bin = BinaryMid($data, 21, BinaryLen($data) - 24) Local $c, $s For $i = 1 To BinaryLen($bin) Step 2 $c = BinaryMid($bin, $i, 2) $s &= ($c <> 0 ? ChrW($c) : "|") Next $aFiles = StringSplit($s, "|", 3) _ArrayDisplay($aFiles) ; Close the clipboard _ClipBoard_Close()
    3 points
  2. philpw99

    ISN AutoIt Studio

    Christian, I am so glad that you are here. 🙂 My little suggestions for ISN AutoIt studio: 1. Add some templates. One for regular program, one for GUI, one for running a tray menu, and one for console programs. This way people can start a project from templates faster and have a easier time to understand how ISN AutoIt Studio works. Those templates should be part of the whole package, not extra downloads. 2. Offer a solution for a3x program installation and packaging. I am using InstallForge from https://installforge.net/ , which is free and works very well with a3x files. Of course you can use other installation packaging program to do the same. I just think that if this feature is integrated with ISN AutoIt Studio, it will be quite amazing. Thanks and wish you the best in the coming days !
    1 point
×
×
  • Create New...