Keung 0 Posted July 27, 2010 Hi, I would like to get text from MFCGridCtrl. My idea is shown below - use ControlGetHandle() to get MFCGridCtrl (success to get handler) - use _GUICtrlListView_GetItemText() to get text However, it doesn't work. Do you have any idea? Thanks. Share this post Link to post Share on other sites
PsaltyDS 39 Posted July 27, 2010 Grid controls do not use the standard Windows APIs, so the API calls made by the likes of ControlGetText(), and the DLL calls made by _GUICtrlListView_GetItemText() don't work. Unfortunately, I don't think we have seen any successful API-level interface with any Grid controls. Some will accept synthetic keyboard inputs, so you "{TAB}" around and then "^c" to copy text, etc. with AutoIt. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Share this post Link to post Share on other sites
Keung 0 Posted July 28, 2010 Grid controls do not use the standard Windows APIs, so the API calls made by the likes of ControlGetText(), and the DLL calls made by _GUICtrlListView_GetItemText() don't work. Unfortunately, I don't think we have seen any successful API-level interface with any Grid controls. Some will accept synthetic keyboard inputs, so you "{TAB}" around and then "^c" to copy text, etc. with AutoIt.Thanks for your information.I will try to use other method. Share this post Link to post Share on other sites