以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 登录界面 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=133790) |
-- 作者:巷弄太过弯曲 -- 发布时间:2019/4/20 14:33:00 -- 登录界面 老师,请问怎么把下拉框里面的用户名删除呀,我已经在“Users”表里吧“张三”这个行数据删除了,但是我重新打开软件登入界面里面还是有这个用户的名字出现 登录界面加载窗口代码: Dim sf As String = GetConfigValue("savepsw","") If sf > "" Then Dim arr() As String = sf.Split("|") e.Form.Controls("CheckBox1").checked = arr(0) = 1 e.Form.Controls("UserName").Text = arr(1) If arr(0) = 1 Then e.Form.Controls("PassWord").Text = arr(2) End If End If e.Form.Controls("UserName").ComboList = GetConfigValue("最后用户", "").Replace(Vbcrlf,"|") |
-- 作者:有点蓝 -- 发布时间:2019/4/20 15:12:00 -- Dim str As String = "|" & GetConfigValue("最后用户", "").Replace(Vbcrlf,"|") & "|" str = str.replace("|张三|","|").trim("|") e.Form.Controls("UserName").ComboList = str
|
-- 作者:巷弄太过弯曲 -- 发布时间:2019/4/20 15:23:00 -- 谢谢老师 |