MatheusGM Posted December 14, 2009 Posted December 14, 2009 I need some help with a script... #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 516, 348, 192, 124) $Fundo = GUICtrlCreatePic("C:\Users\MatheusGM\Desktop\PSP.jpg", 0, 0, 513, 345, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) $Browse = GUICtrlCreateButton("Browse", 360, 152, 105, 25, $WS_GROUP) $Go = GUICtrlCreateButton("Go", 112, 272, 137, 33, $WS_GROUP) $Help = GUICtrlCreateButton("Help", 272, 272, 137, 33, $WS_GROUP) $Input = GUICtrlCreateInput("Input", 272, 152, 81, 21) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd I create this with Koda, and i need to make the buttons work, The Help Button and The Go Button, The Browse, and need to the Browse Button Selected Driver, goto to the input, and The go Button copy some files silently to the Selected Driver! Srry for my english ^^
Moderators Melba23 Posted December 14, 2009 Moderators Posted December 14, 2009 MatheusGM, Welcome to the AutoIt forums. i need to make the buttons work, The Help Button and The Go Button, The Browse, and need to the Browse Button Selected Driver, goto to the input, and The go Button copy some files silently to the Selected DriverYou do not need help, you are basically asking for the script to be written for you! Everything you want to do can be done - and without too much difficulty. But we do ask people have a go themselves first. So go and read the Help file (at least the first few sections - Using AutoIt, Tutorials and the first couple of References) - this will help you enormously. You should also look at the excellent tutorials that you will find here and here. There are even video tutorials on YouTube if you prefer watching to reading. Go and try to code something on your own and then come back if you have problems. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
AdmiralAlkex Posted December 14, 2009 Posted December 14, 2009 Hi and Welcome to the forums!The AutoIt helpfile is really great, you definatively need to use it if you want to learn about stuff.Open the helpfile.Find "GUI Reference".Read it.Finished Now you know how to create and use a GUI. .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface
GEOSoft Posted December 14, 2009 Posted December 14, 2009 Tip Case $Browse Case $Go Case $Help The help file has lots of examples so give it a go and if you have a problem come back with the code you tried that didn't work. George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now