Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (13 - 15 of 3866)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Ticket Resolution Summary Owner Reporter
#2277 No Bug Issues with Long-term Automation ASofikitis-consultant@…
Description

The company I work at has a series of Windows 7 boxes that we use for automation with our various web products. We use AutoIt for a lot of the automated input and we're stuck on an issue that we believe can be tracked down to AutoIt. Attached is the .dmp file that I've archived. Every time Windows crashes, it blue-screens at a random occurrence and the same crash reason given is the same. I was wondering if you could take information from this .dmp file and give your insight as to if AutoIt might be causing these spontaneous crashes.

File: http://www.sendspace.com/file/l5bduz

#2380 Completed Add _IsDir guinness AZJIO
Description

Often used.

If _IsDir('C:\WINDOWS') Then MsgBox(0, '', 'this folder') ; A method for checking folders
If Not (_IsDir('C:\Boot.ini') Or @error) Then MsgBox(0, '', 'this file') ; A method for checking the file

Func _IsDir($sTmp)
	$sTmp = FileGetAttrib($sTmp)
	Return SetError(@error, 0, StringInStr($sTmp, 'D', 2) > 0)
EndFunc   ;==>_IsDir
#500 Fixed _ChooseColor 64bit problems Gary Achilles
Description

I just got a 64bit version of Vista and encountered several problems.

_ChooseColor does not work.

The function return a value as if the user canceled selection even though no sign of the dialog box appears.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Note: See TracQuery for help on using queries.