That looks super but I am doing something wrong. I get this error
https://www.screencast.com/t/f17eaNcG using this code
<Code>
Sub btnSaveMaster_Action
Dim Su As StringUtils
Su.SaveCSV(dirData, "CashFlow.csv", ";", tvMaster.items)
'exportTableViewToCSV(tvMaster,"CashFlow.csv")
End Sub
</Code>
Using this code does still work so I am pretty sure my paths are OK
<Code>
Sub btnSaveMaster_Action
'Dim Su As StringUtils
'Su.SaveCSV(dirData, "CashFlow.csv", ";", tvMaster.items)
exportTableViewToCSV(tvMaster,"CashFlow.csv")
End Sub
</Code>
Two more questions:
1) Can LoadCSV be used to load the saved TableView?
2) SortType is only for List or can it be used on a TableView. I could not find any docs for using it on TableView.
Your help is GREATLY appreciated.