Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/07/2012 in all areas

  1. Search the forum for msvcr100.dll. This has been discussed a number of times, a known issue with the Recorder.
    1 point
  2. Hi, SpeedMaster. In the install directory, you should find AU3Record under Extras. This will allow you to record certain functions.
    1 point
  3. 13ktuz, you have a number of people attempting to help, but so far all we've seen from you is a list of what you want it to do. Why don't you take some of the suggestions you've received and try writing some code yourself? Then, if you get stuck, you can post it here and we can try to help
    1 point
  4. water

    _IECreate() not working

    @JohnOne You can find the error message at the end of his post.
    1 point
  5. Spiff59

    Parsing Text File

    #include <Array.au3> $file = @ScriptDir & "test.txt" $data = FileRead($file) $data = StringStripWS($data, 7) $array = StringSplit($data, " " & @CR) _ArrayDisplay($array)
    1 point
  6. Idk if this is a stupid idea, but you could just store all the values in a string and separate them with a character, say "|", then use stringsplit? (this way it would automatically size the array, and only have to enum once) Local $regamount = 1 Local $keys = '' do $key = RegEnumKey("HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall", $regamount) $keys &= $key&'|' $regamount += 1 until @error $array = stringsplit($keys, '|') Edit: working example
    1 point
×
×
  • Create New...