sketchin Posted March 12, 2014 Share Posted March 12, 2014 Alright, so since my last first project was scrapped since I didn't read the rules I came up with a new project. I am checking out Kodo which is kinda cool and decided I would like to make a fully functional CMS and website monitor. I am going to make specific php files just to incorporate with this program and what not, I think it will be pretty cool if my idea pans out completely. Since I am better at web development I was thinking of having it load the actual webpage in IEFrames but I got no idea how to incorporate that into the program since everything seems to run off fetch functions. Is there a way to display a web page via a form on AutoIt? Last part of this is one that does fall under the rules category a little so if it does just ignore it. I also want to plus this program into the actual server via ssh in order to get general stats of my server updated every couple minutes. Does this have the ability to interact with SSH? onlineth 1 Link to comment Share on other sites More sharing options...
PhoenixXL Posted March 12, 2014 Share Posted March 12, 2014 Since I am better at web development I was thinking of having it load the actual webpage in IEFrames but I got no idea how to incorporate that into the program since everything seems to run off fetch functions. Is there a way to display a web page via a form on AutoIt? _IECreateEmbedded Should do. My code: PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners. MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression. Link to comment Share on other sites More sharing options...
Noddle Posted March 12, 2014 Share Posted March 12, 2014 Here something I "wipped up", but there is so much information out there about this if you search Nigel #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <IE.au3> $oIE = _IECreateEmbedded() GUICreate("Test", 800, 600, (@DesktopWidth - 800) / 2, (@DesktopHeight - 580) / 2) GUICtrlCreateObj($oIE, 10, 40, 790, 590) GUISetState() ;Show GUI _IENavigate($oIE, "www.google.com") if @error <> 0 then $do_error_checking_here=1 MsgBox(0,"","Pree enter to Navigate to another page") $_URL = "http://www.google.com.au/search?q=cats&safe=active&source=lnms&tbm=isch&sa=X&ei=iu8fU5vvGcyxkgWGsICQDw&ved=0CAcQ_AUoAQ&biw=1920&bih=935" _IENavigate($oIE, $_URL) MsgBox(0,"","Pree enter to exit") Exit ; help is your friend, look for help on _IENavigate , GUICreate, GUICtrlCreateObj, etc.. Link to comment Share on other sites More sharing options...
sketchin Posted March 12, 2014 Author Share Posted March 12, 2014 (edited) Thanks, see I searched alot actually and couldnt find what I was looking for, suppose the word EMBED would have helped me more than adding IEFrame which gave me alot of results on "How to grab information and display it from IE". Thanks for the help alot. Whats the chances I can do the SSH stuff? Looked that up and I see alot of Inet.au3 stuff but was hoping for a more integrated/operational command prompt in order to work with. EDIT: DEAR GOD THERE IS A WORTH WHILE HELP REGISTRY! Seriously, checked it out and damn. Thanks ALOT for that, didn't know help was going to be more than ABOUT information for the program >.< Edited March 12, 2014 by sketchin Link to comment Share on other sites More sharing options...
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