First of all. This UDF is brilliant!!! It was very helpful!
Could you kindly assist me with couple of issues here?
Here is my case. I need to update cells by array returned from SQL server.
This is the part:
if $rs.RecordCount Then
$i=0
while not $rs.EOF
_GUICtrlListView_AddItem($cListView1,$rs.Fields(0).Value, $i)
for $j = 1 to 4
if $j = 4 Then
_GUICtrlListView_AddSubItem($cListView1,$i,$rs.Fields($j), $j) ; this cell ($j=4) contains a hyperlink
EndIf
_GUICtrlListView_AddSubItem($cListView1,$i,$rs.Fields($j).Value, $j)
Next
$rs.MoveNext
$i=$i+1
WEnd
EndIf
Update is working as expected and no problems here.
But one of columns from SQL DB contains a hyperlink, which I need to convert to hyperlink (word a "Link" with hyperlink behind).
As far as I understand inserting of hyperlinks is not that obvious. All examples on the forum are explaining how to work with lables, but my case is not similar.
And another question is very simple: how to copy something from the table? Ctrl+C is not working.
Thank you for your assistance.