永发信息网

VB6.0中,LISTBOX控件如何实现选择了那个数据?

答案:1  悬赏:60  手机版
解决时间 2021-03-17 10:52
  • 提问者网友:沉默的哀伤
  • 2021-03-16 19:36
VB6.0中,LISTBOX控件如何实现选择了那个数据?
最佳答案
  • 五星知识达人网友:举杯邀酒敬孤独
  • 2021-03-16 20:25
List1.Text 就是你选择的时间,比如:

Private Sub List1_Click()
MsgBox "你在ListBox中选择的时间是:" & List1.Text
End sub追问大虾请帮我看看,这段那里有问题,系统提示是"至少一个参数没有被指定值",但是msgbox检测,str,list1.text都有数据,private sub list1_Click()
str = scan.text
strSQL=" select * from data where 部番 = ' " & str & " ' and 发行日期= ' " & list1.text & "'
m_rs.open strSQL,g_conn,adopenkeyset,adlockoptimistic
if (not m_rs.eof) then
..........
end if
m_rs.Close
end if追答private sub list1_Click()
dim ks as date
ks=cdate(list1.text)
strSQL=" select * from data where 部番 = '" & scan.text & "' and 发行日期>=#" & ks & "# and 发行日期<#" & ks+1 & "#"
m_rs.open strSQL,g_conn,1,1
if not m_rs.eof then
..........
end if
m_rs.Close
end sub
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯