Jump to content

bedazzled

Active Members
  • Posts

    43
  • Joined

  • Last visited

bedazzled's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. This all fixed: wasnt a problem at all... I was trying to run AutoUpdateIt as a shortcut... when I use the actuall original version of the file, it all works fine
  2. Ok Sorry This is all ok... I was being an ar*se... been away for a bit.. forgot all the standard udfs are part of composites of the standard .au3 include files... My original problem with AutoupdateIt was due to running a shortcut to it and not a copy of the original file... SO all sorted ... Thanks
  3. Hello... must be me ... I have installed Autoit (& beta), and have the .chm for UDFs, but I didnt get them with the install, and I cant seem to find where I can get them from... Something gone wrong, or is it me? Thanks in advance
  4. Hello.. (been away for away and have done a reinstall and have this problem now) sorry cant find an answer to this: When using autoupdateit.au3 on the current release I get: line 2627 ...structureconstants.au3 Global Const $tagREBARINFO = DllStructCreate(... Global Const $tagREBARINFO = ^ERROR I have toggled to the beta but its still the same... (had to swap a switch statement for a select case in the original autoupdateit.au3) So I cant get my autoupdateit to work... am i missing the latest version of something(s) or a lot of include files? looks like my installation cant find DllStructCreate? where do i get these from thanks
  5. can you re-post if you ever get this to work? I had the same issue... how to set thumbnails from ControlListView, but i never got it sorted out... your approach looks promising
  6. hello: GUIRegisterMsg This looks very nice ... is it possible, to use or extend this to allow trapping (hooking) of messages in the windows shell with this at all? many thanks
  7. disabling quickedit mode in dos windows: ;save and disable $current_value = RegRead('HKEY_CURRENT_USER\Console', "QuickEdit") ; save current value RegWrite('HKEY_CURRENT_USER\Console', "QuickEdit", "REG_DWORD", 0) ; set quick edit off launch the window here ...... ;set it back to what it was RegWrite('HKEY_CURRENT_USER\Console', "QuickEdit", "REG_DWORD", $current_value) ; set quick edit value back again ;this works for the console window ... ;i use it to make sure that autoit launched perl programs do actually run, and dont get made inactive by quickedit mode (which was a pain)
  8. just by the by... as far as i can see/remember we cant use HotkeySet to detect things like: mouse down/clicks window events.... so i use GUIGetMsg to detect these... i use it instead of sleeps too if i can get away with it... in window detection stuff .. eg waiting for a process to exist etc etc...
  9. yes youre right .. sorry.. it was pointing at one of my (many) legacy versions of autoit... the current beta does handle it correctly returning a 4 apologies
  10. $var = RegRead('HKEY_CURRENT_USER\Console', "QuickEdit") $type = @EXTENDED MsgBox(4096, "registry:", $var & @CRLF & @EXTENDED ) @Extended does not do anything apart from return a 0... ?
  11. $_handle = WinGetHandle("FV") $_control = ControlGetHandle ($_handle, "", "SysListView321" ) $ret = ControlListView ( $_handle, "", $_control, "ViewChange", "largeicons") sleep (300) $ret = ControlListView ( $_handle, "", $_control, "ViewChange", "smallicons")
  12. ive no idea where or indeed if this infomation is available ... i suspect it must be somewhere ... im trying to get the full path of currently running processes (applications etc) in much the same way as is available through unix ps -ef commands etc etc anyone have any ideas? thanks
  13. I cant seem to get the view change to do anything different with smallicons or largeicons MSDN suggests that there are 5 possible settings available: http://msdn.microsoft.com/library/default....lvm_setview.asp Following are the values for views. * LV_VIEW_DETAILS * LV_VIEW_ICON * LV_VIEW_LIST * LV_VIEW_SMALLICON * LV_VIEW_TILE "
  14. thanks dale ... am drilling down thru MSDN.... will look at your stuff as well
  15. this is good stuff
×
×
  • Create New...