dropdownbox 窗口中有三个 textbox 想让这三个textbox 输入值之后按 “确定” 把三个值均显示在 dropdownbox中代码是这样写的
Dim gd As WinForm.DropDownBox = Forms("线路点检").Controls("钢轨高低")
Dim jt As WinForm.TextBox = e.Form.Controls("钢轨低接头")
Dim by As WinForm.TextBox = e.Form.Controls("高低超保养")
Dim sg As WinForm.TextBox = e.Form.Controls("高低超失格")
gd.Value = "线路超保养:'" & by.Value & "'" & "高低超失格:'" & sg.Value & "'" & "钢轨低接头:'" & jt.Value & "'"
显示出的结果是 :线路超保养:'1'高低超失格:'2'钢轨低接头:'3'
怎么才能 把单引号去掉?