Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (172 - 174 of 3866)

Ticket Resolution Summary Owner Reporter
#675 No Bug Bug in _Date_Time_CompareFileTime 2olg@…
Description

Have a russian message, but try translate: AutoIt v3: autoit3.exe Application error Instruction at address 0x7c810b74 can't read memory 0x000000. Error generated after compare network filedatetime "
comp\u$\dir\file1.ext" and "
comp\u$\dir\file2.ext"

Starting AutoIt3Wrapper v.1.10.1.13 Environment(Language:0419 Keyboard:00000409 OS:WIN_XP/Service Pack 3 CPU:X86 ANSI)

Running AU3Check (1.54.14.0) from:C:\Program Files\AutoIt3

+>16:58:39 AU3Check ended.rc:0

Running:(3.2.13.10):C:\Program Files\AutoIt3\autoit3.exe "
comp\u$\Modules\au.au3"

!>17:01:57 AutoIT3.exe ended.rc:-1073741819 +>17:01:58 AutoIt3Wrapper Finished

Exit code: -1073741819 Time: 199.254

I'am use last stable. Also try beta AutoIt.

#676 No Bug autoit(exe) exiting when reciving audio from www with bass.dll hofi02
Description

This is my testcode:

#include <Bass.au3>
#include <BassConstants.au3>
;~ ProcessSetPriority(@AutoItExe, 4)

;Open Bass.DLL.  Required for all function calls.
Dim $bass_dll = DllOpen("BASS.dll")


;Initalize bass.  Required for most functions.
_BASS_Init($bass_dll, 0, -1, 44100, 0, "")

;Check if bass iniated.  If not, we cannot continue.
If @error Then
	MsgBox(0, "Error", "Could not initialize audio")
	Exit
EndIf

;Set the Stream URL to listen to
$file = "http://91.121.175.145:80"

;Create a stream from that URL.
Dim $MusicHandle = _BASS_StreamCreateURL($bass_dll, $file, 0, 0, "TestFunc", 0)

;Check if we opened the URL correctly.
If @error Then
	MsgBox(0, "Error", "Could not load audio file" & @CR & "Error = " & @error)
	Exit
EndIf

;Iniate playback
_BASS_ChannelPlay($bass_dll, $MusicHandle, 1)

;endless loop
While 1
	;------------------------------------------------------------------------------------------
	Sleep(10);adjusting this to reduce AutoItExe crashs, 10 is optimal on my pc, i think
	;------------------------------------------------------------------------------------------
WEnd


;Functions

Func OnAutoItExit()
	;Free Resources
	MsgBox(0, "Exit", '"OnAutoItExit()" was called' & @CRLF & "Error Code: " & _BASS_ErrorGetCode($bass_dll))
	_BASS_Free($bass_dll)
EndFunc   ;==>OnAutoItExit


Func TestFunc($buffer, $length, $user)
	;---------------------------------------------------------------------------
	;!!! DO NOT PUT/CHANGE/REMOVE ANYTHING IN HERE OR IT WILL BE UNSTABLE !!!!
	;---------------------------------------------------------------------------
EndFunc   ;==>TestFunc

after some time the script is exiting without any error here are some links: http://www.autoitscript.com/forum/index.php?showtopic=83481&view=findpost&p=603453 and next posts in this threat

sorry im from germany but i hope you understand me.

#678 No Bug MAX_LINESIZE confine arrays dutCh
Description

Please remove this unneeded restriction. I want dim arrays with size much bigger than 4KB.

dim $aDlg[100][8] = [[...], _
  [...], _
  [...]]

This hole thing can only be 4KB!!

We have found a workaround with diming several arrays <4KB and an for-loop in the code. But thats not very cool and imho unneeded.

Why not take the problem at the root and enhance the parsing:

Dim $aArr[][] = [[ ],

A define of a 2-dim array, equal sign, 2 open brackets, stuff, one close, an comma... you realize that an dim that array - with no size limit. Thats not an error - stupid user forgot to close the braces - only an multi-dim array!!?

And why not do a heck of a job and kick this "_" too? I'm in an array dim. I have an closed bracked, a comma, KICK ALL WHITESPACE, and await and got the next open bracket. Thats simple, isn't it?

AutoIt should make the things easier. And cooler!

What do you think?

--- However, thanx for that great tool. Is much of fun for me!!

Note: See TracQuery for help on using queries.