04-18-2006, 04:17 PM
This macro repeatedly copies Excel cells from a single column, and pastes in Notepad. Starts from the selected cell.
This macro does almost the same (gets all cels from column A and pastes in Notepad), but much faster. Needs at least QM 2.1.7.
This macro transfers all columns, not only A. Needs at least QM 2.1.7.
str s
rep
,act "Excel"
,s.getsel
,s.rtrim("[]")
,if(!s.len) break
,key D
,
,act "Notepad"
,s.setsel
,key YThis macro does almost the same (gets all cels from column A and pastes in Notepad), but much faster. Needs at least QM 2.1.7.
act "Notepad"
spe 0 ;;maximum speed
ARRAY(str) row
foreach row "" FE_ExcelRow
,row[0].setsel ;;gets cell from column A. To get from other columns, use 1, 2, etc.
,key YThis macro transfers all columns, not only A. Needs at least QM 2.1.7.
