Cyber 1 Posted September 7, 2007 Hi! I try to do an textual browser, but I notice that the editbox GUI has a character limit can i remove this? Sorry for my crazy English Console Browse: Navigate on the WEB in a textual consoleMultiPing!: Show computer on the lan and/or show the local/remote task, ALL animated!KillaWin: Event executingCryptPage: Crypt your webpage and show only with key Share this post Link to post Share on other sites
WolfWorld 0 Posted September 7, 2007 I Also got this problem Main project - Eat Spaghetti - Obfuscate and Optimize your script. The most advance add-on.Website more of GadGets! Share this post Link to post Share on other sites
mrbond007 0 Posted September 7, 2007 the limit is 30000 characters to bypass it use the GuiCtrlSetLimit #include <GUIConstants.au3> GUICreate("My GUI edit") $myedit=GUICtrlCreateEdit ("First line"& @CRLF, 176,32,121,97) GUICtrlSetLimit($myedit, 120000); 120000 characters GUISetState () While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend you can set the limit to any number you want like 3 million characters for example Projects : Space Regain - Memory Fusion - PWGT - Chip-ITGames : BrainPain - BrainPain Director's Cut - ProSpeed Games Pack (New)Vista vs XP : the forbidden fight Share this post Link to post Share on other sites
Cyber 1 Posted September 7, 2007 Fantastic!! thanks Console Browse: Navigate on the WEB in a textual consoleMultiPing!: Show computer on the lan and/or show the local/remote task, ALL animated!KillaWin: Event executingCryptPage: Crypt your webpage and show only with key Share this post Link to post Share on other sites