Visual Basic:如何将字符串导入datagrid

时间:2014-03-31 10:10:39

标签: string visual-studio datagrid basic

我正在编写一个可视化基本表单,我想从php脚本将csv导入到我的表单中的数据网格,但我无法弄清楚如何去做。

所以我现在正在做的是:我从我的php脚本导入字符串:

myString = myWebClient.DownloadString("http://localhost/balance_history.php")

php脚本回显数据如下:

$string .= $transaction["type"].",";
$string .= $transaction["description"].","; 
$string .= $transaction["amount"].",";
$string .= "\n";
echo $string;

那么如何将此字符串导入我的数据网格?有什么想法吗?

2 个答案:

答案 0 :(得分:0)

我真的建议你试试JGRID。 它有非常棒的功能,我认为它也会对你的情况有所帮助。 http://www.trirand.com/blog/

答案 1 :(得分:0)

对于需要帮助解决该问题的其他人:找到一个非常有效的解决方案。 我将字符串拆分为单个值,创建数据表并插入值:

Dim table As New DataTable
table.Columns.Add("Type", GetType(String))
table.Columns.Add("Beschreibung", GetType(String))
table.Columns.Add("Menge", GetType(Double))
table.Rows.Add(content(0), content(1), content(2),