Jump to content

3.1.1++


jpm
 Share

Recommended Posts

24th June 2005 - v3.1.1.52 (beta)

Fixed : UDPBind, UDPOpen return socket (Thanks /dev/null)

Added : UDPStartup, UDPShutdown (Thanks MSLx Fanboy,/dev/null)

Fixed : GUIListView GUITab Const

Fixed : File...Dialog browse through links (Thanks livewire,/dev/null/Jon)

Fixed : Send("{SHIFTDOWN}") no permanent (Thanks aLiMan)

Fixed : TCPRecv() returning more error (by Larry)

Link to comment
Share on other sites

  • Replies 513
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

i just wanted to say thanks and keep up all of this excellent work guys, really do appreciate it!  :D

one question... when are there going to be UDP examples? :)

thanks

<{POST_SNAPBACK}>

yes pretty soon in 3.1.1.53 when /dev/null has finish to write them.

He just debug the code now it is writing the doc

Thanks Kurt :evil:

Link to comment
Share on other sites

I'm curious, what's the largest possible integer allowed in the maxlen parameter for UDPRecv()? Is it the max possible for a variable to hold, less due to network restrictions...?

Writing AutoIt scripts since

_DateAdd("d", -2, _NowCalcDate())
Link to comment
Share on other sites

When someone determines how to use them...

Lar.

<{POST_SNAPBACK}>

thats why I wanna know when the examples will be ready, so I can see how to use those suckers :evil: oops! g2g graduate 8th grade!! (no joke :))
FootbaG
Link to comment
Share on other sites

thats why I wanna know when the examples will be ready, so I can see how to use those suckers :evil: oops! g2g graduate 8th grade!! (no joke :))

<{POST_SNAPBACK}>

Well, in theory my scripts in the support forum *should* work...but I guess there's still quite a bit of debugging needed to get the UDP functions to work...correctly :D

Writing AutoIt scripts since

_DateAdd("d", -2, _NowCalcDate())
Link to comment
Share on other sites

B]25th June 2005 - v3.1.1.53 (beta)

Fixed : Several issues in GUICtrlCreateObj(). (By SvenP)

Fixed : TCPRecv returning error(2) (by Larry)

Added : Assigning Object variables to other Objects properties ('propputref') (By SvenP)

Fixed : Object reference count bug in ObjCreate() since version 3.1.1.33. Objects would stay open after releasing their variable (by SvenP)

Removed : bug in Const keyword to UDF parameters. (Waiting Nutster correction)

Updated : UDP functions now UDPSend need the ip:port. Doc examples (By /dev/null)

Link to comment
Share on other sites

26th June 2005 - v3.1.1.54 (beta)

Fixed : Send("+{end}"). (Thanks again JoeCool)

Fixed : Issues in GUICtrlCreateObj() concerning 'document objects'. Document objects are now working in a GUI, however not all functions have been implemented yet. (By SvenP)

Fixed : Some more issues when assigning object references to other object's properties. (By SvenP)

Link to comment
Share on other sites

I fill so sorry to break the correction I did for you

This send/controlsend code is hard to modify :">

<{POST_SNAPBACK}>

Some bugs are harder to fight than others :)

Some are like ghosts or snake, some are easy and kept for Friday afternoon before weekend :evil:

JC :D

Link to comment
Share on other sites

28th June 2005 - v3.1.1.55 (beta)

Fixed : ControlCommand "GetCurrentSelection". (Thanks Larry/Larry)

Added : SetError setting optionally extended code.(by Valik)

Fixed : GUICtrlCreateObj doc (Sorry SvenP I miss it)

Fixed : bug in ByRef/Const keyword use in UDF's. (by Nutster)

Fixed : bug in UDF calling which allowed a trailing comma. (by Nutster)

Fixed : Prevent constants from being used to initialize themselves in CONST keyword. (by Nutster)

Fixed : bug in Const init. (by Nutster)

Fixed : bug in Const array init. (by Nutster)

Link to comment
Share on other sites

5th July 2005 - v3.1.1.56 (beta)

Updated : GuiGetCursorInfo doc. (Thanks asmodehn)

Updated : SplashImageOn, SplashTextOn doc. (Thanks erebus)

Fixed : Ping better return results. (by Holger)

Updated : Authors contributions.

Updated : UDPOpen, UDPBind return an array. UDPSend, UDPRecv use it instead of the socket/ip/port. (by /dev/null)

Updated : RegRead return the type of the value in @Extended (Thanks /dev/null)

Fixed : Window Titles and Text (Advanced) links doc (Thanks MSLx Fanboy)

Fixed : Mouse... returns.

Fixed : MouseClick, MouseUp bad behavior. (Thanks Saunders)

Changed : Split Eval()->Execute()

Fixed : FileFindFirstFile does not return anymore "." or "..".

Fixed : _GuiCtrlTreeView examples. (by gafrost)

Added : _GUICtrlTreeViewGetParentHandle(). (by gafrost)

Fixed : variables already declared in string.au3 (jdeb)

Fixed : Crash in tray functions (Thanks SlimShady/Holger)

Link to comment
Share on other sites

Now...to change those UDP function scripts I have lying around...  :)

<{POST_SNAPBACK}>

Remember we are under beta so change may occurs that's one.

But the final decision is on JON hands to include or not the change in the official release. :evil:

Link to comment
Share on other sites

Hi :evil:

there seems to be a painting problem since the first 3.1.1-beta...

Just run the sample, maximize the window and press the button a few times then you (hopefully) see the painting problem.

It seems that with using GUICtrlSetData() the redrawing of the control works not right.

The problems seems to exists since an early 3.1.1-beta-version, so I can also see it in 3.1.1.56.

In the official release 3.1.1. it works OK!

#include <GUIConstants.au3>

GUICreate("Label Paint Test", 400, 300, -1, -1, $WS_OVERLAPPEDWINDOW)

$label = GUICtrlCreateLabel("Testlabel",10,10,200,20)
$button = GUICtrlCreateButton("Test", 70, 100,70,20)

GUISetState()
While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $GUI_EVENT_CLOSE
            ExitLoop
            
        Case $msg = $button
            $c = ""
            For $i = 0 To 9
                $c = $c & Random(0, 9, 1)
            Next
            GUICtrlSetData($label, $c)
    EndSelect
WEnd

So, I can't see any bug in the script :)

Can you reproduce the same problem on your PC?

Regards

Holger

Link to comment
Share on other sites

Hi :evil:

there seems to be a painting problem since the first 3.1.1-beta...

Just run the sample, maximize the window and press the button a few times then you (hopefully) see the painting problem.

It seems that with using GUICtrlSetData() the redrawing of the control works not right.

The problems seems to exists since an early 3.1.1-beta-version, so I can also see it in 3.1.1.56.

In the official release 3.1.1. it works OK!

#include <GUIConstants.au3>

GUICreate("Label Paint Test", 400, 300, -1, -1, $WS_OVERLAPPEDWINDOW)

$label = GUICtrlCreateLabel("Testlabel",10,10,200,20)
$button = GUICtrlCreateButton("Test", 70, 100,70,20)

GUISetState()
While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $GUI_EVENT_CLOSE
            ExitLoop
            
        Case $msg = $button
            $c = ""
            For $i = 0 To 9
                $c = $c & Random(0, 9, 1)
            Next
            GUICtrlSetData($label, $c)
    EndSelect
WEnd

So, I can't see any bug in the script  :)

Can you reproduce the same problem on your PC?

Regards

Holger

<{POST_SNAPBACK}>

The bug is here too. Using 3.1.1.56.
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

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