Jump to content

Recommended Posts

Posted

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
Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...