1樓:善良的豬頭
分兩個查詢寫,先檢索成績表裡面「成績」欄位的關鍵字,得不到結果的話在執行第二個查詢檢索「姓名」欄位的關鍵字
2樓:網海1書生
adodc1.commandtype = adcmdtextif val(text1.text) > 0 thenstrsql = "select * from 學生成績表 where 成績 like '%" & text1.
text & "%'"
adodc1.recordset.open strsqlif adodc1.
recordset.eof thenstrsql = "select * from 學生成績表 where 姓名 like '%" & text1.text & "%'"
adodc1.recordset.open strsqlend if
else
strsql = "select * from 學生成績表 where 姓名 like '%" & text1.text & "%'"
adodc1.recordset.open strsqlend if
set datagrid1.datasource = adodc1
3樓:匿名使用者
不建議你用adodc 連線,太落後了
Ubound在VB中怎麼用啊,vb裡的lbound和ubound的用法
假設 dim a as integerredim a 100 重定義陣列 為101個元素 保留原回有陣列資訊,新增一個元素 redim preserve a ubound a 1 至此陣列元素有102個 若不需答保留原有陣列資訊,去掉preserve關鍵字即可。ubound ubound函式 返回抄...
用vb編寫1 3 599的問題,用VB迴圈結構怎麼求1 3
因為你是從1到99奇數相加,所以i 1 to 99 step 2。command click 名字錯了,少了一個1,應command1 click private sub command1 click dim i,sum sum 0 for i 1 to 99 step 2sum sum i nex...
在vb裡是什麼意思, 在VB裡是什麼意思
像biao 內容 a inputbox biao 中的 都表示biao a這兩個變數是字串變數。其它的變數也一樣,只要在變數名後面加上 就表示這個變數是字串型別的變數。在vb中,有兩種用法 一種是用在dim語句中,如以下兩句是相當的 dim a dim a as string 使用這兩種方法宣告後,...