JavaScript_Freek Posted August 6, 2006 Posted August 6, 2006 (edited) (SGUIM) Sample GUI MenuIt's your regular average GUI Menu coded by Dan. Trust me if there is a virus on this thing (Highly not because i don't know how to install one, you can ban my ass out of here). Ok well hope you enjoy it!Log InThis is a mock up of Dan's Main Menu. I want to start a new topic. This now has a new edited text. This is a sample GUI menu which I created along with the help from others:gafrostcodemysterPaulieSmOke_NSkrugeCWorksAlright So I'll two options. The .exe file or .au3 file. Your pick!Au3 File: SGUIM.au3Exe: Click hereThis has gone through some editing. Hope you like. I will be adding more features to this for others way of use of a Sample GUI Menu! - Laters//When it first started...Latest Version:Revisions: (From Version 1 to Latest Version)Removed--Progress Bar--Sample Label--Text On Contact. --Text On Intro, Date, and Contact.--Changed Tabs TitlesDate>>InfoContact>>AutoItAdded--Login System--AutoIt Banner--Slider--Introduction (Intro Tab)--NotePad (Info Tab)--TreeView (AutoIt Tab)--ListView (AutoIt Tab)--Input Box--Sample Label #2--AutoIt Menu - Run Autoit - Extras - Scripts - Icons - Sample GUI Menu V1 - SciTe--Revised the 'About' box. --Transfered Banner to .GIF--Progress Bar--Combo Box--Radio Box--Checkbox--Edit Box//JSF Edited June 22, 2007 by JavaScript_Freek [center]Cookyx.com :: Simple LAN Chat[/center]
taurus905 Posted August 6, 2006 Posted August 6, 2006 Javascript_Freek, This is a good start. I look forward to future updates to see how your application developes. AutoIt is a great tool that will allow you to venture in may directions. Thanks for sharing your source code. taurus905 "Never mistake kindness for weakness."-- Author Unknown --"The highest point to which a weak but experienced mind can rise is detecting the weakness of better men."-- Georg Lichtenberg --Simple Obfuscator (Beta not needed.), Random names for Vars and Funcs
Paulie Posted August 6, 2006 Posted August 6, 2006 I agree with taurus, Good job, and you don't need to give me so much credit, you did most of the coding i had like 3 lines Keep it up with autoit, practice never hurts You'll just get better with time
JavaScript_Freek Posted August 6, 2006 Author Posted August 6, 2006 Javascript_Freek,This is a good start. I look forward to future updates to see how your application developes.AutoIt is a great tool that will allow you to venture in may directions.Thanks for sharing your source code.taurus905Wa- hey thank you taurus. I appricate everyone's comments! And Paulie even if you made one word or one line. You've help me =) [center]Cookyx.com :: Simple LAN Chat[/center]
Paulie Posted August 6, 2006 Posted August 6, 2006 And Paulie even if you made one word or one line. You've help me =)And I'm gonna enjoy the time that I can actually help you, because people who try get this stuff faster then you'd believe
JavaScript_Freek Posted August 6, 2006 Author Posted August 6, 2006 And I'm gonna enjoy the time that I can actually help you, because people who try get this stuff faster then you'd believe Bold = wtf?I don't comprendo! Maybe, I think If I add more stuff this could be added in Examples for Sample GUI Menu V2 for next beta release!!! < I like that smiley. [center]Cookyx.com :: Simple LAN Chat[/center]
Paulie Posted August 6, 2006 Posted August 6, 2006 (edited) Bold = wtf?I don't comprendo! Maybe, I think If I add more stuff this could be added in Examples for Sample GUI Menu V2 for next beta release!!! < I like that smiley.I was incoherently trying to say:People who put in effort understand things, and grasp them very fast, and since you have the motivation, I won't be able to help you much soon. Cause you won't need it. Edited August 6, 2006 by Paulie
JavaScript_Freek Posted August 6, 2006 Author Posted August 6, 2006 I was incoherently trying to say:People who put in effort understand things, and grasp them very fast, and since you have the motivation, I won't be able to help you much soon. Cause you won't need it.Alright I get it, but I might need help. You never know. [center]Cookyx.com :: Simple LAN Chat[/center]
JavaScript_Freek Posted August 6, 2006 Author Posted August 6, 2006 Good work .i542Thanks for the comment! [center]Cookyx.com :: Simple LAN Chat[/center]
JavaScript_Freek Posted August 7, 2006 Author Posted August 7, 2006 Updated the download! With now many new features! [center]Cookyx.com :: Simple LAN Chat[/center]
Paulie Posted August 7, 2006 Posted August 7, 2006 Updated the download! With now many new features! very nice! I like the new editionsKeep it up!
Paulie Posted August 7, 2006 Posted August 7, 2006 (edited) Even new edition... Better and better Edit: are you looking for 'GuiCtrlCreateMenuItem'? Edited August 7, 2006 by Paulie
JavaScript_Freek Posted August 7, 2006 Author Posted August 7, 2006 Even new edition... Better and betterThanks! I think I'll add another BOX where it says on FILE "open box 2" and other GUI will be put in there, [center]Cookyx.com :: Simple LAN Chat[/center]
rambo3889 Posted August 7, 2006 Posted August 7, 2006 This is nice My Scripts:Radioblog Club Music DownloaderOther stuff:Fun movieIm serious read the help file it helps :PFight 'Till you drop. Never stop, You Cant give up. Til you reach the top Fight! youÂ’re the best in town Fight!
JavaScript_Freek Posted August 9, 2006 Author Posted August 9, 2006 Updated the first post to make it more understandable. Latest Version is ONLINE! [center]Cookyx.com :: Simple LAN Chat[/center]
Sardith Posted August 9, 2006 Posted August 9, 2006 May I ask, what are your plans for your GUI? It's a nice looking GUI, keep up the good work. [font="Verdana"]Valik:Get it straight - I'm not here to say please, I'm here to help - if my help's not appreciated then lotsa luck, gentlemen.[/font]
CWorks Posted August 9, 2006 Posted August 9, 2006 (edited) just thought of something else you shoudn't use this key $installdir=RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3\AutoIt","InstallDir") instead use this $installdir=RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3\AutoIt","betaInstallDir") $rc = Run("explorer.exe " & $installdir & "\Examples") because during install you can choose a new location for it and some may have only need to do this once $installdir=RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3\AutoIt","InstallDir") $installdir = StringReplace( $installdir , " " , Chr( 32 ) ) you can use $installdir over and over I changed it to use betaInstallDir $installdir=RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3\AutoIt","betaInstallDir") $installdir = StringReplace( $installdir , " " , Chr( 32 ) ) $rc = Run("explorer.exe " & $installdir & "\Examples") Case $msg = $prog2 $rc = Run("explorer.exe " & $installdir & "\Icons") Case $msg = $prog3 $rc = Run("explorer.exe " & $installdir & "\SciTe") Case $msg = $prog4 $rc = Run("explorer.exe " & $installdir & "\AU3Info.exe") Case $msg = $prog5 $rc = Run("explorer.exe " & $installdir & "\Extras") Edited August 9, 2006 by CWorks
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