Custom Query
Results (28 - 30 of 3883)
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 |
$1=InputBox("On Hand", "Avaliabel On Hand")
;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). |