Jump to content

Recommended Posts

  • Replies 98
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted

...Is possible to change color of hyperlink?

[quote name='dbzfanatic' post='609696' date='Nov 26 2008, 08:46 AM']This is a help forum not a "write this for me" forum.[/quote](Sorry for bad English) :)

Posted (edited)

really not possible? can you post a file that doesn't work?

@n3nE: sorry, I don't know how.

Edited by ProgAndy

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

Posted (edited)

File loaded ok, but is seen in $h_RichEdit only approximately 1000 letters, rest is not displayed :mellow:

system WinXP SP2, AutoIt 3.2.12.1

Edited by scon
Posted

try to use _GUICtrlRichEdit_LimitText(richedit,64000) ( http://msdn.microsoft.com/en-us/library/bb761607(VS.85).aspx )

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

Posted (edited)

@n3nE: no. 0 = 64000, but i had sometimes the problem that the default didn't work :mellow:

@scon: why not use the max. 64000 ?

Edited by ProgAndy

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

Posted

@n3nE: no. 0 = 64000, but i had sometimes the problem that the default didn't work :mellow:

@scon: why not use the max. 64000 ?

64000, this was small importance, text was cut

512000 - ok (for my problem) :(

Posted

ProgAndy, what is max limit possible to set?

[quote name='dbzfanatic' post='609696' date='Nov 26 2008, 08:46 AM']This is a help forum not a "write this for me" forum.[/quote](Sorry for bad English) :)

Posted

don't know. EM_SETLIMITTEXT should have limit 64000, but you were able to use bigger value ...

EM_EXLIMITTEXT -> i think limited by memory :mellow:

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

Posted

I tried to put importances 64000 128000 256000 512000, and my book is cut in different places. 512000 - a book (RTF - 1.3MB) is seen wholly, but script takes memories ~12MB from computer in each time

Posted (edited)

To hide and show RichEdit: just use WinSetState :mellow:

WinSetState($h_RichEdit,"",@SW_HIDE)

Sleep(1000)

WinSetState($h_RichEdit,"",@SW_SHOW)

Edited by ProgAndy

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

Posted (edited)

Thank you very much !

I quite bad know autoit :mellow:

I was certain that this is a control, but I did't think that this is a window )

Edited by scon
Posted

All Controls are Windows, but not all windows are controls :mellow:

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

Posted (edited)

Hey... For me example with RichEdit works, but when create it in my script i get this error:

E:\AutoIt\nIRC Client\GuiRichEdit.au3(71,40) : ERROR: $E_INVALIDARG previously declared as a 'Const'
Global Const $E_INVALIDARG = 0x80070057

Why?

Edited by n3nE

[quote name='dbzfanatic' post='609696' date='Nov 26 2008, 08:46 AM']This is a help forum not a "write this for me" forum.[/quote](Sorry for bad English) :)

Posted (edited)

Hey... For me example with RichEdit works, but when create it in my script i get this error:

E:\AutoIt\nIRC Client\GuiRichEdit.au3(71,40) : ERROR: $E_INVALIDARG previously declared as a 'Const'
Global Const $E_INVALIDARG = 0x80070057

Why?

You have an other UDF which defines this constant. Put GUIRichEdit include on the first line, then the error shows the other include with this Const. Delete it from one of the UDFs ro prefix it with this and it will work:

If Not IsDeclared("E_INVALIDARG") THen
Edited by ProgAndy

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

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...