投稿者 魔界の仮面弁士  (社会人) 投稿日時 2009/12/22 01:25:58
> アプリケーション内にScript機能を取り込む方法はあるかもしれません。
オショウさんが紹介された URL にある『ScriptControl』を使う事で
VBScript 等をアプリ上から利用できます。

他にはこんな方法とか、
Dim expression As String = "50*20/4+12*10"

Dim t As New DataTable()
t.Columns.Add("数式"GetType(String), expression)

MsgBox(t.Rows.Add()("数式"))

あるいは、こういった方法もあります。
Dim expression As String = "50*20/4+12*10"

Dim t As New DataTable()
MsgBox(t.Compute(expression, ""))