I am working myself into the Samples in order to understand what it does.
I mixed 2 Samples.
1. write tabel into array
2. Stringsplit to get it into the clipboard
I would like wo have e.g. row 2 col 4 on may Clip
But nothing works - what is wrong with my script ???
#include <Array.au3>
$oIE = _IE_Example ("table")
$oTable = _IETableGetCollection ($oIE, 0)
$aTableData = _IETableWriteToArray ($oTable, True)
_ArrayDisplay($aTableData)
$pageArray = StringSplit($aTableData, @CRLF)
ClipPut($pageArray & " additional text")
MsgBox(0, "Clipboard contains:", ClipGet())
Thanks for Help
P.S. This is my 1st Question and i hope it is not against any Rule
If so let me know how to do it.
By the way:My english is miserable
I mixed 2 Samples.
1. write tabel into array
2. Stringsplit to get it into the clipboard
I would like wo have e.g. row 2 col 4 on may Clip
But nothing works - what is wrong with my script ???
#include <Array.au3>
$oIE = _IE_Example ("table")
$oTable = _IETableGetCollection ($oIE, 0)
$aTableData = _IETableWriteToArray ($oTable, True)
_ArrayDisplay($aTableData)
$pageArray = StringSplit($aTableData, @CRLF)
ClipPut($pageArray & " additional text")
MsgBox(0, "Clipboard contains:", ClipGet())
Thanks for Help
P.S. This is my 1st Question and i hope it is not against any Rule
If so let me know how to do it.
By the way:My english is miserable