Polyphem Posted December 21, 2006 Posted December 21, 2006 (edited) about.au3 #include <GUIConstants.au3> Func show_about() $guiabout = GUICreate("About",300,200) GUISetState (@SW_SHOW) $okbutton_about = GUICtrlCreateButton ("OK",100,160,100) GUICtrlCreateLabel("This script was created by the hard work of me and",40,20) GUICtrlCreateLabel("the wonderful programming language AutoIt.",40,40) While 1 $msg = GUIGetMsg() if $msg = $GUI_EVENT_CLOSE OR $msg = $okbutton_about Then GUIDelete ($guiabout) ExitLoop EndIf WEnd EndFunc Your forgot the exitloop and additionally u used the $okbutton twice. Your idea seems reasonable and u should be able to do it with autoit, but i guess you'll have to do a lot of reading for those ideas ... read the help file on Run() and stdin and stdout to use Windows command-line .exe's in your script, and for the results maybe use GuiCtrlCreateList or GuiCtrlCreateListView. Also search the forum for network functions, guess there are a lot of em for reading mac-address, network-address and so on. Edited December 21, 2006 by Polyphem This post will be edited again by Polyphem: Tomorrow, 11:55 AM
jonez34 Posted December 22, 2006 Author Posted December 22, 2006 Thanks alot for all your help Polyphem. Your guideance has only strengthened my intrest in this program. Be sure that I will be back to pick your brain again.
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