usera Posted July 15, 2011 Posted July 15, 2011 Greeting, Looking for a way to open a notepad style window(what even the screen size is, just maximize) where has a text file opened inside it Thanks usera
JohnOne Posted July 15, 2011 Posted July 15, 2011 I think you might be looking for an Edit control. GUICtrlCreateEdit() AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
usera Posted July 15, 2011 Author Posted July 15, 2011 I think you might be looking for an Edit control.GUICtrlCreateEdit()Thanks, Could you please a little bit details please? the example for me is hard to understand
JohnOne Posted July 15, 2011 Posted July 15, 2011 Post the code of the example and specify what you do not understand. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
usera Posted July 15, 2011 Author Posted July 15, 2011 Post the code of the example and specify what you do not understand.I think there are 2 parts of this scriptthe first part is how to build a notepad style window.second part is how to read the file content in itThanks
JohnOne Posted July 15, 2011 Posted July 15, 2011 Just post any of the parts of absolutely anything you have tried at all, whether working or not. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
usera Posted July 15, 2011 Author Posted July 15, 2011 Just post any of the parts of absolutely anything you have tried at all, whether working or not.thanks for help. but had nothing here yetusera
Exit Posted July 15, 2011 Posted July 15, 2011 Why not use the original ? ShellExecute("notepad.exe",@ProgramFilesDir&"\AutoIt3\Examples\_ReadMe_.txt") App: Au3toCmd UDF: _SingleScript()
usera Posted July 15, 2011 Author Posted July 15, 2011 Why not use the original ? ShellExecute("notepad.exe",@ProgramFilesDir&"\AutoIt3\Examples\_ReadMe_.txt") thanks for ask, just want to provide view function, nothing else usera
JohnOne Posted July 15, 2011 Posted July 15, 2011 thanks for help. but had nothing here yetuseraYou're welcome.Thing is, your current position of not being prepared to do anything whatsoever to help yourself, is not one that inspires a persons helpful nature.You could have had your project finished on on the cyber shelves 10 times over by now.I'll get you started#include <GUIConstantsEx.au3>$MyWindow = GUICreate("My Window")GUISetState()DoUntil GUIGetMsg() = $GUI_EVENT_CLOSE AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
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