Custom Query (3922 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (370 - 372 of 3922)

Ticket Resolution Summary Owner Reporter
#521 No Bug Forum Upload Issue HeidiR
Description

I'm not sure if this is the right place to report forum issues. However, It appears that I have about 400K out of 1MB of upload space but zero attachments in the Manage Current Attachments drop-down. Where can I find / delete the file that is consuming space?

#768 No Bug Help for FileInstall needs to be updated HeidiR
Description

Help for FileInstall needs to be updated to allow a variable for the source path as the statement below works correctly in 3.3.0.0.

FileInstall($src, $dest)

#693 Fixed Error in _DateTimeFormat() function Gary Heinz Stege <public.215.967@…>
Description

There seems to be a typo in the source code of the _DateTimeFormat() function (in the date.au3 file). _DateTimeFormat() leeds to an unexpected result, if a) the time separator (in regional options) is "/" and b) the date separator is not equal "/" (e.g. "-") In this (very seldom and non meaningful) case, the result looks something like:

yyyy-MM-dd hh-mm-ss

instead of

yyyy-MM-dd hh/mm/ss

Nevertheless it may be a good idea, to correct in:

	; Format DATE
	If $sTempDate <> "" Then
		;   Const $LOCALE_SDATE = 0x1D            ;  date separator
		$lngX = DllCall("kernel32.dll", "long", "GetLocaleInfo", "long", 0x400, "long", 0x1D, "str", "", "long", 255)
		If Not @error And $lngX[0] <> 0 Then
			;
			; This is the line to change:
			;$sTempTime = StringReplace($sTempTime, "/", $lngX[3])
			;
			; This is the new line:
			$sTempDate = StringReplace($sTempDate, "/", $lngX[3])
		EndIf

Thanks a lot to all AutoIT people for this nice tool.

Heinz

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.