Ticket #719: bugged.au3

File bugged.au3, 783 bytes (added by rental7895, 16 years ago)

code I used that caused the problem

Line 
1#include <GuiConstantsEx.au3>
2#include <StaticConstants.au3>
3#include <misc.au3>
4
5
6
7GUICreate("",@DesktopWidth,@DesktopHeight-64)
8GUISetState(@SW_SHOW)
9
10
11$1 = GUICtrlCreateGraphic(60,60,@desktopwidth,1)
12GUICtrlSetGraphic($1,$GUI_GR_LINE, @DesktopWidth, 0)
13GUICtrlSetColor($1, 0x000000)
14
15$2 = GUICtrlCreateGraphic(60,62,@desktopwidth,1)
16GUICtrlSetGraphic($2,$GUI_GR_LINE, @DesktopWidth, 0)
17GUICtrlSetColor($2, 0xF000F)
18
19$3 = GUICtrlCreateGraphic(60,60,1,@DesktopHeight)
20GUICtrlSetGraphic($3,$GUI_GR_LINE, 1, @DesktopHeight)
21GUICtrlSetColor($3, 0xF000F)
22
23$4 = GUICtrlCreateGraphic(62,60,1,@DesktopHeight)
24GUICtrlSetGraphic($4,$GUI_GR_LINE, 1, @DesktopHeight)
25GUICtrlSetColor($4, 0x000000)
26
27While (not (_IsPressed("1b")))
28   
29
30    $msg = GUIGetMsg()
31
32WEnd