Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 3866)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#43 Fixed IniReadSectionNames returning incorrect number of sections (extra blank section) lte5000
Description

IniReadSectionNames returns an extra blank section that does not exist in the INI file. This behavior occurs on Windows 98 SE. The function returns the correct number of sections on Windows XP SP2.

Example:

FileDelete("test.ini")
IniWrite("test.ini", "section1", "key1", "abc")
$var = IniReadSectionNames("test.ini")
MsgBox(0, "how many sections", $var[0])
For $i = 1 To $var[0]
 MsgBox(0, "section #" & $i, $var[$i])
Next
#44 Rejected Input, in InputBox use Send command heryisme@…
Description

Send("{CTRLDOWN}") Send("{C}") Send("{CTRLUP}") Sleep(50)

$1=InputBox("On Hand", "Avaliabel On Hand")

Send("{CTRLDOWN}") Send("{V}") Send("{CTRLUP}")

;I want to save a Value from variable $1 in script, so I can use it later ;Returns the string that was entered ;Thanks for the Answer

#47 Rejected FileInstall() to use the same Flag values as FileCopy Bowmore
Description

I would like FileInstall() to use the same Flag parameter values as FileCopy(). The two function essentially perform the same function copying a file from one location to another the only significant difference being that the source used by FileInstall() is fixed i.e. the compiled script.

Quote:form FileCopy help

flag [optional] 
this flag determines whether to overwrite files if they already exist.
Can be a combination of the following:
 0 = (default) do not overwrite existing files
 1 = overwrite existing files
 8 = Create destination directory structure if it doesn't exist (See Remarks). 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Note: See TracQuery for help on using queries.