c.haslam Posted December 7, 2018 Posted December 7, 2018 (edited) I am using _GuiCtrlTreeview_SetItemParam() to store a string associated with a treeview item. (I am not calling GuiCtrlCreateTreeViewItem partly because this function stores the control ID of the item there.) Because $iParam is an lparam, I actually call _WinAPI_CreateString() and then store the pointer it returns by calling _GuiCtrlTreeview_SetItemParam(). Now my question: in my case, _GuiCtrlTreeview_GetItemParam(0 returns a pointer. How can I get the string from the pointer? Or is there a simpler way? Edited December 10, 2018 by c.haslam Spoiler CDebug Dumps values of variables including arrays and DLL structs, to a GUI, to the Console, and to the Clipboard
Iczer Posted December 7, 2018 Posted December 7, 2018 basically, beside pointer you need length of string in characters, then: $sString = DllStructGetData(DllStructCreate("WCHAR[" & $iStringLen & "]",$pPointer),1)
c.haslam Posted December 8, 2018 Author Posted December 8, 2018 Thanks, but ... I will have many of strings of various lengths, and I don't want to have to track them, so how do I get the length of each string? Spoiler CDebug Dumps values of variables including arrays and DLL structs, to a GUI, to the Console, and to the Clipboard
Nine Posted December 8, 2018 Posted December 8, 2018 Are the strings 0 ended ? “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy
InnI Posted December 8, 2018 Posted December 8, 2018 22 hours ago, c.haslam said: Or is there a simpler way? Create array of strings and keep array index like ItemParam.
Iczer Posted December 8, 2018 Posted December 8, 2018 (edited) you can try this: $hDLL = DllOpen("c:\windows\system32\msvcrt.dll") $aRet = DllCall($hDLL,"long","wcslen", "PTR", $StringWPTR) $sString = DllStructGetData(DllStructCreate("WCHAR[" & $aRet[0] & "]",$pStringWPTR),1) $aRet = DllCall($hDLL,"long","strlen", "PTR", $StringAPTR) $sString = DllStructGetData(DllStructCreate("CHAR[" & $aRet[0] & "]",$pStringAPTR),1) but string should be zero-terminated and MS VC libraries should be installed Edited December 8, 2018 by Iczer
UEZ Posted December 8, 2018 Posted December 8, 2018 @c.haslam: a small demo script available? Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
c.haslam Posted December 10, 2018 Author Posted December 10, 2018 (edited) I have found a solution. I will describe the relevant parts of the project -- for the benefit of others I use Pegasus Mail and back up the settings and data daily: just the files that have changed, i.e. have the archive bit set. Pegasus organizes saved emails into what it calls "folders" (but which are actually files). The "folders' are organized into a tree structure. Very occasionally a Pegasus "folder" disappears, and when it does, it needs to be retrieved from back ups. But to retrieve a "folder" one needs to know its filename, and the name of the file is FOL followed by seemingly random hex-looking digits. Pegasus maintains a file, hierarch.pm. It is in CSV format and contains the tree structure including the name of the "folder" and the filename. It is, of course, flat, My project is to show hierarch.pm in a treeview so the user can select a "folder" and have the script tell him the name of the corresponding file. So the treeview needs a string to be associated with each "folder" item. To do this, I avoided using GuiTreeviewCreateItem() so I, not calling this native AutoIt funcion, get to store the file name in the $iParam parameter of the treeview struct. So I created the treeview by calling _GuiCtrlTreeview_Add() and _GuiCtrlTreeview_AddChild(). I thought of calling _GuiCtrlTreeview_SetItemParam() to store the file name with each treeview item. But $iParam cannot be used directly to store a string. In Structureconstants.au3, $iParam is a 4-byte integer. In 32-bit AutoIt, a pointer is also 4 bytes. I decided to try storing a pointer to a string there. To allocate memory and get a pointer back, I call _WinAPI_CreateString(). To get the string back, I call PointerToStringW(): Func _PointerToStringW($ptr) Return DllStructGetData(DllStructCreate("wchar[" & _WinAPI_StringLenW($ptr) & "]", $ptr), 1) EndFunc To store the string with the treeview item, I coded; $pStr = _WinAPI_CreateString(StringInStr($a20[$i][$kFull],':FOL') ? $a20[$i][$kFull] : '') _GUICtrlTreeView_SetItemParam($g_hTV,$hItem,$pStr) To retrieve a string I coded: Local $ptr = _GUICtrlTreeView_GetItemParam($g_hTV,$hItem) Local $s = _PointerToStringW($ptr) . . . Func _PointerToStringW($ptr) Return DllStructGetData(DllStructCreate("wchar[" & _WinAPI_StringLenW($ptr) & "]", $ptr), 1) EndFunc I also keep track of these pointers in an array, and when the script is ending I free the memory: OnAutoItExitRegister('FreePointersToParamStrings') Func FreePointersToParamStrings() For $i = 0 To $g_iqPointers _WinAPI_FreeMemory($g_pointers[$i]) Next EndFunc This works in x86 AutoIt. It may not work in AutoIt x64. Edited December 10, 2018 by c.haslam Added retrieval code emcodem 1 Spoiler CDebug Dumps values of variables including arrays and DLL structs, to a GUI, to the Console, and to the Clipboard
c.haslam Posted December 10, 2018 Author Posted December 10, 2018 I have been looking at the Param element on Microsoft. I see there that it is an LPARAM. StructureConstants.au3 has: Global Const $tagTVITEM = "struct;uint Mask;handle hItem;uint State;uint StateMask;ptr Text;int TextMax;int Image;int SelectedImage;" & _ "int Children;lparam Param;endstruct" _GuiCtrlTreeview_SetItemParam() creates a $tagTVITEMEX structure. This suggest that the last parameter to _GuiCtrlTreeview_SetItemParam() and _GuiCtrlTreeview_GetItemParam() should be a pointer ($pParam). Did I find 2 bugs? (The Help for $tagTVITEMEX has Param as a Param. BTW the Help for DllStructCreate las LPARAM amd WPARAM but not PARAM.) Spoiler CDebug Dumps values of variables including arrays and DLL structs, to a GUI, to the Console, and to the Clipboard
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