Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (148 - 150 of 3866)

Ticket Resolution Summary Owner Reporter
#591 No Bug _GUICtrlListBox_AddString goes loopy when passing array instead of string Annonymous
Description

First of all, I know you aren't suppose to pass an array to the $sText parameter of _GUICtrlListBox_AddString(). It was a typo that led me to discover this, and if I remember correctly, Valik once said that Autoit shouldn't hard crash under any circumstance.

When passing an array (In this case from StringSplit) to _GUICtrlListBox_AddString(), it both makes Autoit Hard-crash as well as the Dr. Watson Post-mortem debugger. This is the shortest code I can reproduce this with:

#Include <GUIListBox.au3>
$hForm = GUICreate("Test", 410, 492, 193, 125)
$hList = GUICtrlCreateList("", 16, 16, 377, 383)
$azTemp = StringSplit("Test\Hello", "\")
_GUICtrlListBox_AddString($hList, $azTemp)
While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case -3
			Exit

	EndSwitch
WEnd

This first creates the infamous "Such-and-such has encountered a problem and needs to close" dialog. Next, after a few seconds, the same dialog appears for the Dr. Watson Post-mortem debugger (drwtsn32.exe). The Autoit script does not close, nor does it respond to an "End Process" from the Task Manager.

The only way to kill the script is to kill drwtsn32.exe. SciTE then reports the exit code to be :

!>19:42:54 AutoIT3.exe ended.rc:-1073740972

Operating System: Windows XP (English) SP2.

#597 No Bug Documentation @TempDir needs updating Emiel Wieldraaijer
Description

Macro Reference - Directory @TempDir -> path to the temporary files folder <-

This information is not complete because the @TempDir retrieves %TEMP% and not %TMP% which is also used for temporary files.

#605 No Bug _InetSmtpMail sets wrong Date sbolz@…
Description

I use _InetSmtpMail to send E-Mail over Notes 5.0.12 SMTP Server. Problem: The received Properties of the Mail is "from SAS13250 ([166.69.5.35]) by itsaspf.pgo.saspf.local (Lotus Domino Release 5.0.12) with SMTP id 2008100813222775:105 ; Wed, 8 Oct 2008 13:22:27 +0200"

The posted Date Properties is 08.10.2008 13:22:26 GMT

As result, the sending date time in Notes Client is shown as 08.10.2008 15:22

Solving: I replaced $bias in the array $s_Send [4] in function _InetSmtpMail by " CEST" if it is summertime, otherwise " CET". As result the time is correct shown. As result the time stamp of the mail is shown correct: The received Properties: "from SAS13250 ([166.69.5.35]) by itsaspf.pgo.saspf.local (Lotus Domino Release 5.0.12) with SMTP id 2008100813285874:106 ; Wed, 8 Oct 2008 13:28:58 +0200" The PostedDate Properties: 08.10.2008 13:28:58 CEDT Sending Date / Time in Notes Client: 08.10.2008 13:28

The problem occured on Windows XP Client SP2, MS Patches 09/2008 and Windows Server 2003 SP1 engl. MS Patches 09/2008 and Windows Server 2003 SP2 german MS Patches 09/2008.

Note: See TracQuery for help on using queries.