Parse a HTML Table into a ListView
Last Updated on Tuesday, 02 April 2013
A quick article on if you were given a webpage coded in HTML, what methods in AutoHotkey could you use to separate out the HTML Tables into a ListView.
Why?
I want a snippet of code that replicates any HTML table.
How?
I've been trying various ways so I'm posting them here. My opinions on them change with the weather so until I do some benchmarking I won't know which ones best:
Alternative method of displaying Unicode in Autohotkey GUI
Last Updated on Thursday, 29 September 2011
- msgbox % Chr(24) ; upwards arrow
- msgbox % Chr(25) ; downwards arrow, unstable
Fun with DllCall in AutoHotkey
Last Updated on Monday, 19 November 2012
The one to rule them all:
This is a function I pulled from the Autohotkey forums submitted by SKAN which lists all the functions for a specified Dynamic Link Library (DLL) along with an inputbox for convenience:
Functions to convert Hex 2 RGB and vice-versa
Last Updated on Tuesday, 27 September 2011
- From Hexadecimal to RGB
- From RGB to Hexadecimal
- Check for a valid hexadecimal value
AutoHotkey Format Date and Format Seconds
Last Updated on Tuesday, 27 September 2011
In it's straightforward form
- FormatTime( TimeString, Format )
- {
- FormatTime, FormattedTime , TimeString, %Format%
- return Formattedtime
- }

