Jump to content

I can't post on the BugTracker


 Share

Recommended Posts

Sorry guys, but I don't know where I can post my Problem.

The BugTracker tell me:

 

Submission rejected as potential spam
  • IP 80.187.110.86 blacklisted by xbl.spamhaus.org [4]
  • Maximum number of external links per post exceeded
  • Maximum number of posts per hour for this IP exceeded

 

What can I do now? I want to report this:

In the AutoItConstants.au3 File are all Mouse Constants ($IDC_XXX >> Line 72 to 88) wrong.

MSDN >> [http://msdn.microsoft.com/en-us/library/windows/desktop/ms648391(v=vs.85).aspx] <<

Code with Error:

{{{
#include <WinAPIRes.au3>

$hCursor = _WinAPI_LoadCursor(Null, $IDC_ARROW)
ConsoleWrite(@CRLF & '+ Handle: ' & $hCursor & @CRLF & _
                     '! Error : ' & _WinAPI_GetLastError() & @CRLF & @CRLF)
}}}

The Error Code is 1813. MSDN says:
"The specified resource type cannot be found in the image file."

>> [http://msdn.microsoft.com/en-us/library/windows/desktop/ms681386(v=vs.85).aspx] <<


Here are the right constants:
{{{
;~ Global Const $IDC_UNKNOWN = 0 ; Unknown cursor
Global Const $IDC_APPSTARTING = 32650 ; Standard arrow and small hourglass
Global Const $IDC_ARROW = 32512 ; Standard arrow
Global Const $IDC_CROSS = 32515 ; Crosshair
Global Const $IDC_HAND = 32649 ; Hand cursor
Global Const $IDC_HELP = 32651 ; Arrow and question mark
Global Const $IDC_IBEAM = 32513 ; I-beam
Global Const $IDC_ICON = 32641 ; Obsolete
Global Const $IDC_NO = 32648 ; Slashed circle
Global Const $IDC_SIZE = 32640 ; Obsolete
Global Const $IDC_SIZEALL = 32646 ; Four-pointed arrow pointing N, S, E, and W
Global Const $IDC_SIZENESW = 32643 ; Double-pointed arrow pointing NE and SW
Global Const $IDC_SIZENS = 32645 ; Double-pointed arrow pointing N and S
Global Const $IDC_SIZENWSE = 32642 ; Double-pointed arrow pointing NW and SE
Global Const $IDC_SIZEWE = 32644 ; Double-pointed arrow pointing W and E
Global Const $IDC_UPARROW = 32516 ; Vertical arrow
Global Const $IDC_WAIT = 32514 ; Hourglass
}}}

The $IDC_UNKNOWN constant doesn't exist:
{{{
#include <WinAPIRes.au3>

$hCursor = _WinAPI_LoadCursor(Null, $IDC_UNKNOWN)
ConsoleWrite(@CRLF & '+ Handle: ' & $hCursor & @CRLF & _
                     '! Error : ' & _WinAPI_GetLastError() & @CRLF & @CRLF)
}}}



Sorry, my english ist bad ^^
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...