iLoveAU3 Posted August 5, 2008 Posted August 5, 2008 both your code as your comments are really impressive to me ("c-like compatibility") REALLY NICE.
Kip Posted August 6, 2008 Posted August 6, 2008 I want an example of how to give words a color with this udf, not the COM object. MailSpons: Fake SMTP server for safe email testing Dutch postcode & address API.
ptrex Posted August 6, 2008 Posted August 6, 2008 @KipSorry KIP posted this to the wrong thread ?!Removed my post.For you question it is better to look for it in here :AutoITPadGood luck !! regardsptrex Contributions :Firewall Log Analyzer for XP - Creating COM objects without a need of DLL's - UPnP support in AU3Crystal Reports Viewer - PDFCreator in AutoIT - Duplicate File FinderSQLite3 Database functionality - USB Monitoring - Reading Excel using SQLRun Au3 as a Windows Service - File Monitor - Embedded Flash PlayerDynamic Functions - Control Panel Applets - Digital Signing Code - Excel Grid In AutoIT - Constants for Special Folders in WindowsRead data from Any Windows Edit Control - SOAP and Web Services in AutoIT - Barcode Printing Using PS - AU3 on LightTD WebserverMS LogParser SQL Engine in AutoIT - ImageMagick Image Processing - Converter @ Dec - Hex - Bin -Email Address Encoder - MSI Editor - SNMP - MIB ProtocolFinancial Functions UDF - Set ACL Permissions - Syntax HighLighter for AU3ADOR.RecordSet approach - Real OCR - HTTP Disk - PDF Reader Personal Worldclock - MS Indexing Engine - Printing ControlsGuiListView - Navigation (break the 4000 Limit barrier) - Registration Free COM DLL Distribution - Update - WinRM SMART Analysis - COM Object Browser - Excel PivotTable Object - VLC Media Player - Windows LogOnOff Gui -Extract Data from Outlook to Word & Excel - Analyze Event ID 4226 - DotNet Compiler Wrapper - Powershell_COM - New
Kip Posted August 7, 2008 Posted August 7, 2008 Thanks! I got another problem: _GUICtrlRichEditGetText() doesn't work properly. (That's what I think ) $iLen = RichText_GetLenght($hRichText) $sText = _GUICtrlRichEditGetText($hRichText, 0, $iLen) Func RichText_GetLenght($hWnd) $TStr = DllStructCreate("int Flags; int charset") DllStructSetData($TStr,1,0x00000000) DllStructSetData($TStr,2,1200) Return _SendMessage($hRichText, $EM_GETTEXTLENGTHEX, DllStructGetPtr($TStr), 0) EndFuncGetLenght() returns 12, (thats how long the string is), but GetText only returns the first character :s MailSpons: Fake SMTP server for safe email testing Dutch postcode & address API.
ProgAndy Posted August 7, 2008 Posted August 7, 2008 Well, can you post a full example ? *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
martin Posted August 7, 2008 Posted August 7, 2008 Thanks! I got another problem: _GUICtrlRichEditGetText() doesn't work properly. (That's what I think ) $iLen = RichText_GetLenght($hRichText) $sText = _GUICtrlRichEditGetText($hRichText, 0, $iLen) Func RichText_GetLenght($hWnd) $TStr = DllStructCreate("int Flags; int charset") DllStructSetData($TStr,1,0x00000000) DllStructSetData($TStr,2,1200) Return _SendMessage($hRichText, $EM_GETTEXTLENGTHEX, DllStructGetPtr($TStr), 0) EndFuncGetLenght() returns 12, (thats how long the string is), but GetText only returns the first character :s Works fine for me if I add a button called $Btn2 in the example in post #1 and have Case $msg = $btn2 $iLen = RichText_GetLenght($h_RichEdit) ConsoleWrite("Length of text = " & $iLen & @CRLF) $sText = _GUICtrlRichEditGetText ($h_RichEdit, 0, $iLen) ConsoleWrite($sText & @CRLF) Not connected with your problem but I think your function should be Func RichText_GetLenght($hWnd) $TStr = DllStructCreate("int Flags; int charset") DllStructSetData($TStr,1,0x00000000) DllStructSetData($TStr,2,1200) Return _SendMessage($hWnd, $EM_GETTEXTLENGTHEX, DllStructGetPtr($TStr), 0);<--- use the handle passed as parameter EndFunc Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Kip Posted August 7, 2008 Posted August 7, 2008 (edited) Return _SendMessage($hWnd, $EM_GETTEXTLENGTHEX, DllStructGetPtr($TStr), 0);<--- use the handle passed as parameterOfcourse, stupid mistake I know what the problem is. I used MSFTEDIT.DLL (RichText 4.1) instead of RichEd20.dll (RichText 2.0/3.0).Kinda weird that the new version doesn't work where the older version does work. Because Microsoft says that they are a superset of each other. Edited August 7, 2008 by Kip MailSpons: Fake SMTP server for safe email testing Dutch postcode & address API.
ProgAndy Posted August 8, 2008 Posted August 8, 2008 Well, this one works possibly with UNicode, so you have to use wchar in GetText *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
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