Visual_Basic 板


LINE

請問黃色和綠色部份一樣 日期有記進資料庫,但車號卻沒記進去,是哪裡有問題嗎? ** 界面簡介: 車號combo 三個記錄日期的text(年/月/日) 一個公升text 一個價格text 一里程數text 四個cammend 一個adodc及grid ** 所有的text都成功的記錄進資料庫裡,但只有combo的記錄失敗 剛稍微修改了一些內容 把原本以text用DataSource及DataField來跟資料庫連結 修改成 全部以Adodc.Record.Field(i) = val(text.text)的模式寫進access裡 利用 逐行 功能來看,跑到車牌那裡時,確定 rs.Fields(0) 也有寫進車牌號碼了 但是Record.update之後, 每一個都成功寫進資料庫了,唯獨車號寫不進去 ** 再次測試,跳出msgbox確認是否記錄時,車號有出現在DataGrid裡 但是按下"確定"按鈕後,車牌號碼卻消失了… ================================= Private Sub Form_Load() '車輛選單設定 truck(0) = "XS-001" truck(1) = "XS-002" truck(2) = "XS-003" truck(3) = "XS-004" truck(4) = "XS-005" cboTruckPlate.Clear For i = 0 To 4 cboTruckPlate.AddItem (truck(i)) Next cboTruckPlate.ListIndex = 0 '按鈕名稱設定 cmdAddNew.Caption = "新增" cmdSave.Caption = "儲存" cmdDelete.Caption = "刪除" cmdFinish.Caption = "結束" '鎖定輸入格 InputLocked *** Private Sub cmdSave_Click() '輸入的資料全集合在字串裡 '車號必填 temp = "" If cboTruckPlate.ListIndex = -1 Then return_msg = MsgBox("車號忘了選", 32, "請選擇車號") cboTruckPlate.SetFocus Exit Sub Else '記錄車號 tPlateRecord = truck(cboTruckPlate.ListIndex) AdoDiesel.Recordset.Fields(0) = tPlateRecord temp = "車號:" & txtTruckPlate.Text & vbCrLf End If '日期必填 If txtYear.Text <> "" And txtMonth.Text <> "" And txtDay.Text <> "" Then '記錄日期 tDate = Format(Str(txtYear.Text), "0000") + "/" + Format(Str(txtMonth.Text), "00") + "/" + Format(Str(txtDay.Text), "00") AdoDiesel.Recordset.Fields(1) = tDate temp = temp & "日期:" & Str(txtYear.Text) & "年" & Str(txtMonth.Text) & " 月" & Str(txtDay.Text) & "日" & vbCrLf Else return_msg = MsgBox("日期沒輸入", 32, "請輸入日期") txtYear.SetFocus Exit Sub End If '加油量必填 If txtLiter.Text = "" Then return_msg = MsgBox("今天加了幾公升?", 32, "請輸入加油量") txtLiter.SetFocus Exit Sub Else AdoDiesel.Recordset.Fields(2) = Val(txtLiter.Text) temp = temp & "公升:" & Str(txtLiter.Text) & vbCrLf End If If txtPrice.Text <> "" Then AdoDiesel.Recordset.Fields(3) = Val(txtPrice.Text) temp = temp & "價格:" & Str(txtPrice.Text) & vbCrLf End If If txtMileage.Text <> "" Then AdoDiesel.Recordset.Fields(4) = Val(txtMileage.Text) temp = temp & "里程數:" & Str(txtMileage.Text) End If If temp <> "" Then return_value = MsgBox(temp, 33, "以下資料是否正確") '檢測資料是否正確 If return_value = 1 Then '資料正確即存入 AdoDiesel.Recordset.Update AdoDiesel.Recordset.Update AdoDiesel.Refresh Else return_msg = MsgBox("放棄儲存,請重新輸入", 48, "資料未存入") AdoDiesel.Refresh End If End If AdoDiesel.Recordset.Update '再重整並移動到最後 AdoDiesel.Refresh AdoDiesel.Recordset.MoveLast '輸入結束,輸入格鎖定 Form_Load SetFilesWidth cmdAddNew.SetFocus AdoDiesel.Recordset.MoveLast End Sub --



※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 1.124.158.162
1F:推 johnpage:看不出是何種資料庫 11/22 17:56
2F:→ johnpage:索引<>值 11/22 17:58
簡單的把Text裡的值放進access裡,只有第一個是用combo選擇內定的車牌號碼 ※ 編輯: chrisjon 來自: 1.124.158.162 (11/22 19:33) ※ 編輯: chrisjon 來自: 1.124.158.162 (11/22 19:39) ※ 編輯: chrisjon 來自: 1.142.154.153 (11/24 16:54)
3F:→ EShensh:你 FormLoad 中的 truck 變數範圍是在哪邊? 全域嗎? 11/24 23:04
4F:→ EShensh:truck(cboTruckPlate.ListIndex) 這邊怎麼不直接抓Combo值 11/24 23:04
5F:→ chrisjon:另外設一個模組,在那裡設定Public truck(4) As String*6 11/25 01:50
6F:→ chrisjon:不好意思,不是很懂抓combo值 11/25 01:58
7F:推 johnpage:請確認資料庫是不是有值,只是不是自己想的值 11/25 05:37
8F:推 ClubT:你輸入的車號是否滿足資料庫車號的欄位? 11/25 11:55
找到可能問題了…… 手動輸入車號並沒有問題,是可以儲存的,但是利用程式寫卻一直都寫不進去 剛沒事點點DataGrid的車號空白欄位 因為我設定該欄位只能有6碼,發現格子裡都被空格佔滿 到底……空格是在哪裡被佔滿的…~.~? ※ 編輯: chrisjon 來自: 1.143.42.146 (11/26 05:13)
9F:推 johnpage:索引 11/26 12:41
10F:→ chrisjon:不是很明白,請問可以簡單解說一下嗎? 謝謝 11/26 13:15
11F:→ johnpage:不要先使用陣列,先直接填字串 11/26 17:44







like.gif 您可能會有興趣的文章
icon.png[問題/行為] 貓晚上進房間會不會有憋尿問題
icon.pngRe: [閒聊] 選了錯誤的女孩成為魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一張
icon.png[心得] EMS高領長版毛衣.墨小樓MC1002
icon.png[分享] 丹龍隔熱紙GE55+33+22
icon.png[問題] 清洗洗衣機
icon.png[尋物] 窗台下的空間
icon.png[閒聊] 双極の女神1 木魔爵
icon.png[售車] 新竹 1997 march 1297cc 白色 四門
icon.png[討論] 能從照片感受到攝影者心情嗎
icon.png[狂賀] 賀賀賀賀 賀!島村卯月!總選舉NO.1
icon.png[難過] 羨慕白皮膚的女生
icon.png閱讀文章
icon.png[黑特]
icon.png[問題] SBK S1安裝於安全帽位置
icon.png[分享] 舊woo100絕版開箱!!
icon.pngRe: [無言] 關於小包衛生紙
icon.png[開箱] E5-2683V3 RX480Strix 快睿C1 簡單測試
icon.png[心得] 蒼の海賊龍 地獄 執行者16PT
icon.png[售車] 1999年Virage iO 1.8EXi
icon.png[心得] 挑戰33 LV10 獅子座pt solo
icon.png[閒聊] 手把手教你不被桶之新手主購教學
icon.png[分享] Civic Type R 量產版官方照無預警流出
icon.png[售車] Golf 4 2.0 銀色 自排
icon.png[出售] Graco提籃汽座(有底座)2000元誠可議
icon.png[問題] 請問補牙材質掉了還能再補嗎?(台中半年內
icon.png[問題] 44th 單曲 生寫竟然都給重複的啊啊!
icon.png[心得] 華南紅卡/icash 核卡
icon.png[問題] 拔牙矯正這樣正常嗎
icon.png[贈送] 老莫高業 初業 102年版
icon.png[情報] 三大行動支付 本季掀戰火
icon.png[寶寶] 博客來Amos水蠟筆5/1特價五折
icon.pngRe: [心得] 新鮮人一些面試分享
icon.png[心得] 蒼の海賊龍 地獄 麒麟25PT
icon.pngRe: [閒聊] (君の名は。雷慎入) 君名二創漫畫翻譯
icon.pngRe: [閒聊] OGN中場影片:失蹤人口局 (英文字幕)
icon.png[問題] 台灣大哥大4G訊號差
icon.png[出售] [全國]全新千尋侘草LED燈, 水草

請輸入看板名稱,例如:WOW站內搜尋

TOP