Curious52 Posted December 5, 2012 Posted December 5, 2012 I would like to translate some programs from other SW platforms into AutoIt3 which creates a GUI with a DataGrid table in it. However, even I have searched all helps, I couldn't find any available ... anyone knows how to do it?- What I need is display some data into DataGrid table and able to read some information in it (total coulumns, rows ...), since it was translated for others to use, it can't be other means (ie: ListView, ListBox ...)Tanks in-advanced for any help,
Andreik Posted December 5, 2012 Posted December 5, 2012 Maybe you'll find easy to use an excel object instead of DataGrid Table. $oExcel = ObjCreate("OWC11.Spreadsheet.11") $hMain = GUICreate("Example") $hActiveX = GUICtrlCreateObj($oExcel,5,5,390,390) GUISetState(@SW_SHOW) Do Sleep(10) Until GUIGetMsg() = -3
Curious52 Posted December 5, 2012 Author Posted December 5, 2012 Hi Bishop, Unfortunately, I need it for my development program. Thanks anyways.
UEZ Posted December 5, 2012 Posted December 5, 2012 Something like that here? Br, UEZ 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!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
water Posted December 5, 2012 Posted December 5, 2012 Maybe the is what you need? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Curious52 Posted December 6, 2012 Author Posted December 6, 2012 Hi UEZ & water, They works beautifully, but it isn't DataGrid table, However, I will use it. Thanks to both of your helps
water Posted December 6, 2012 Posted December 6, 2012 Glad to be of service My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
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