Board logo

標題: [發問] access 資料自動帶入 [打印本頁]

作者: thisisjames    時間: 2011-8-21 23:01     標題: access 資料自動帶入

[attach]7527[/attach]

[attach]7528[/attach]
作者: aa7551    時間: 2011-8-22 22:04

是否能說明為何這麼設計,品名代碼一般都是用數字,為何用中文
作者: jow672    時間: 2012-2-10 14:00

回復 5# a810328


可以在表單中設定 資料來源類型為資料表/查詢.. 資料來源選擇你要顯示的資料
作者: davidliu9116    時間: 2012-9-26 16:29

me.品名代碼=Dlookup([品名],"品名代碼","[代碼]='" & left(me.型號,3) & "'")
作者: kaiweidevil    時間: 2012-12-22 20:37

請教一下如果是用2010版的也可以這樣輸入嗎?
作者: mmxxxx    時間: 2014-11-4 14:31

在型號欄位的AfterUpdate事件, 撰寫程式.
大約如下: (使用DAO)
dim str_Num as string
str_Num = left(me.型號,3)
dim rs as recordset
set rs = currentdb.openrecordset("Select  品名 from 品名代碼 Where 代碼 = '" & str_Num & "'", dbopensnapshot)
if rs.recordcount <> 0 then
  me.品名代碼 = rs("品名")
end if

以上程式, 參考看看.




歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)