milos83 Posted October 31, 2006 Posted October 31, 2006 ;Just run this fucker#include <guiconstants.au3>Opt("MouseCoordMode", 2)Dim $left = 10Dim $top = 20Dim $width = 100Dim $height = 25Dim $Mouse$Main = GUICreate("MyGui", 200, 100)$label = GUICtrlCreateLabel("This Label", $left, $top, $width, $height, $WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS)GUISetState()Sleep(5000);You don't!Don't you
Moderators SmOke_N Posted October 31, 2006 Moderators Posted October 31, 2006 ;Just run this fucker #include <guiconstants.au3> Opt("MouseCoordMode", 2) Dim $left = 10 Dim $top = 20 Dim $width = 100 Dim $height = 25 Dim $Mouse $Main = GUICreate("MyGui", 200, 100) $label = GUICtrlCreateLabel("This Label", $left, $top, $width, $height, $WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS) GUISetState() Sleep(5000) ;You don't!Don't you You made an overlapped window with the title of the label ... what are you asking or stating?$label = GUICtrlCreateLabel("This Label", $left, $top, $width, $height, $WS_OVERLAPPEDWINDOW) Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Locodarwin Posted October 31, 2006 Posted October 31, 2006 You made an overlapped window with the title of the label ... what are you asking or stating?$label = GUICtrlCreateLabel("This Label", $left, $top, $width, $height, $WS_OVERLAPPEDWINDOW) I think he's up to no good. His posts consist of exporting contacts, doing remote control screen capturing, and asking for code that will allow him to see if email addresses exist. -S (Yet Another) ExcelCOM UDF"A human being should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, die gallantly...[indent]...specialization is for insects." - R. A. Heinlein[/indent]
Recommended Posts