Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (325 - 327 of 3904)

Ticket Resolution Summary Owner Reporter
#306 No Bug Wrong Error message when a variable is not an array GEOSoft
Description

This used to return a message about the variable not being an array. Now it returns the "Unable to parse" message

$t = "some string"
MsgBox(0, "Test", $t[0])
#307 Completed Add a link to Trac GEOSoft
Description

Is it difficult to add a link from Trac back to the main forum? That would be much easier than using the browser history (back) or even Backspace.

#425 Rejected Change to the registy by the installer GEOSoft
Description

The standard method of finding the path to the AutoIt3 folder is to read and parse the default registry value at. HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\AutoIt3.exe

Although this is easily enough accomplished it would be much easier if the installer also wrote just the folder path to a new value like "Path". Typically that would just be "C:\Program Files\AutoIt3" or "C:\Program Files\AutoIt3\" That is a simple change for the installer. Then if we wanted, for example, the path to the standard Include folder it would just be

$rKey = "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\AutoIt3.exe"
$InclPath = RegRead($rKey,"Path") & "\include\"

Just a thought here, but I think it is a better solution than using

$rKey = "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\AutoIt3.exe"
$rVal = RegRead($rKey,"")
$InclPath = StringLeft($rVal, StringInStr($rVal,"\",0,-1)) & "include\"
Note: See TracQuery for help on using queries.