visual basic 語法

2007-01-25 11:22 pm
請問以下點解

Str(a_DataSet.Tables("abc").Rows("def"))

abc 是什麼?
def 是什麼?

Dim temp As Integer
temp = Int(a_DataSet.Tables("abc").Rows("def"))
display.Text = temp

run時有以下error:
Input string was not in a correct format

是什麼意思? 怎樣solve??
thx!

回答 (1)

2007-01-25 11:51 pm
✔ 最佳答案
係Dataset Object 入面
Str(a_DataSet.Tables(abc)Rows(def))

abc: 
1. 如果用String, abc 你要用Table名
2. 如果用Integer, 如有多個Table, 可以用index代表, 由 0 開始,
e.g. 0 = 第一個Table, 1= 第二個Table.....

def:
你只可用Integer, 即係第幾行row, 由 0 開始,
e.g. 0 = 第一行, 1= 第二行.....

如你問題, 你打左def 做String 係會syntax error 既, 你只要用番數字就可以啦
參考: me


收錄日期: 2021-04-13 00:41:34
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20070125000051KK01660

檢視 Wayback Machine 備份