08-11-2005, 07:24 AM
Possibly you can record the macro. Or enter it (or part of it) using dialogs.
Or, do it programmatically, like in the following code.
This code finds static text field in this page, gets its text, and populates Excel cell A1. Requirements: QM 2.1.7, Internet Explorer or compatible.
Or, do it programmatically, like in the following code.
Htm el=htm("SPAN" "Posted:*" "" "Quick Macros :: View topic" 0 11 0x21)
str s=el.Text
ExcelSheet sh.Init
sh.SetCell(s 1 1)
This code finds static text field in this page, gets its text, and populates Excel cell A1. Requirements: QM 2.1.7, Internet Explorer or compatible.