Jump to content

d4vr0s

Member
  • Posts

    19
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About d4vr0s

Profile Information

  • OS
    Windows 10 x64

d4vr0s's Achievements

0

Reputation

  1. A quick fix for those of you who want to use 1.4.1 is just to make that variable a global instead of local Line 1202: local $ok = GUICtrlCreateButton(t('OK_BUT'), 55, 170, 80, 20) Changed to global $ok = GUICtrlCreateButton(t('OK_BUT'), 55, 170, 80, 20) I think the reason it's complaining is that it's being called from a function outside the scope of where the variable is declared.
  2. I was the same way, so did a little modification to the source (Also includes code mentioned above) I wanted the debug info to go to the temp folder instead of the root of the system drive, so: Line 34 $debugdir = $sysdrive to $debugdir = @TempDir; to temp it goes! And to not save history by default I changed: Line 169 GUICtrlSetState($historyopt, $GUI_CHECKED) To GUICtrlSetState($historyopt, $GUI_UNCHECKED); Unchecked by default @nitro322, I hope you don't mind me posting my modifications here.
  3. This util is really neat. There seems to be a little typo in the source on line 163? GUICtrlSetData($dircontcont, $filedir & '\' & $filename) Shouldn't it be GUICtrlSetData($dircont, $filedir & '\' & $filename)?
×
×
  • Create New...