neotrio Posted November 16, 2006 Posted November 16, 2006 Hi Everybody, Can anybody tell me what is the size of "edit box" of GUICtrlCreateEdit()? what is the size of its buffer? How much data we can write in to it? Waiting for your reply! Neotrio.
jvanegmond Posted November 16, 2006 Posted November 16, 2006 Why won't you just try and see if you run into any problems? I've never had an issue with buffer-overflow and I've really put a lot of text in those tiny boxes. github.com/jvanegmond
GaryFrost Posted November 16, 2006 Posted November 16, 2006 15. What are the current technical limits of AutoIt v3?Here are details of the current technical limits of AutoIt. Please note that some of the limits are theoretical and you may run into performance or memory related problems before you reach the actual limit. Maximum length of a single script line: 4,095Maximum string length: 2,147,483,647 charactersNumber range (floating point): 1.7E308 to 1.7E+308 with 15-digit precisionNumber range (integers): 64-bit signed integerHexadecimal numbers: 32-bit signed integer (0x80000000 to 0x7FFFFFFF)Arrays: A maximum of 64 dimensions and/or a total of 16 million elementsMaximum depth of recursive function calls: 384 levelsSimultaneous open files: 64Simultaneous active HotKeys: 64Maximum number of variables in use at one time: No limit Maximum number of user defined functions: No limitMaximum number of GUI windows: 1024 Maximum number of GUI controls per window: 4096 SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
neotrio Posted November 17, 2006 Author Posted November 17, 2006 Why won't you just try and see if you run into any problems? I've never had an issue with buffer-overflow and I've really put a lot of text in those tiny boxes.Hi Manadar, I am reading eeprom thru my script and caching continuously data into the edit box but after five minutes it stucks and i have to explicitly clear the data from the Edit box so that the data i m caching should be visible in the edit box.Ciao.
Moderators SmOke_N Posted November 17, 2006 Moderators Posted November 17, 2006 Hi Manadar, I am reading eeprom thru my script and caching continuously data into the edit box but after five minutes it stucks and i have to explicitly clear the data from the Edit box so that the data i m caching should be visible in the edit box. Ciao.Have you tried: GUICtrlSetLimit($EditBox, 0x7FFFFFFF)yet? Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
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