如何從GridView取值至RefVal之WhereItem Value
在Refval的whereitem裏的value寫一個函數,例如:cust_id()
public string cust_id()
{
String custid = ((DataGridViewRow) infoDataGridView1. CurrentRow). Cells ["custidDataGridViewTextBoxColumn"].Value.ToString();
return custid;
}
這個例子是把GridView當前這筆資料的cust_id的傳回給InfoRefVal的whereitem。