0
可以說有一個數據窗口有一些列和一些按鈕。我怎樣才能獲得在dw(或更好的所有控件)內的所有按鈕的數組?對於列我可以做的事情,如如何查找數據窗口中的按鈕
ll_cnt = Long(this.dw_1.object.datawindow.column.count)
for i = 1 to ll_cnt
lsa_colname[upperbound(lsa_colname)+1] = this.dw_1.Describe("#" + String(i) + ".Name")
lsa_coltype[upperbound(lsa_coltype)+1] = this.dw_1.Describe("#" + String(i) + ".ColType")
lsa_edittype[upperbound(lsa_edittype)+1] = this.dw_1.Describe("#" + String(i) + ".Edit.Style")
NEXT
是否有類似的方式爲其他控件?
我使用PB12.6
非常感謝。