哪位大神看看这个 帮忙做一下感激不尽啊 这东西看得我真是一脸懵逼

 我来答
落叶l无情
2016-05-17 · TA获得超过1417个赞
知道大有可为答主
回答量:1372
采纳率:0%
帮助的人:1415万
展开全部
Private Sub Combo1_KeyPress(KeyAscii As Integer)
    If KeyAscii = 13 Then  '回车键
        List1.AddItem Combo1.Text
        Combo1.Clear
    ElseIf (KeyAscii < Asc("0") Or KeyAscii > Asc("9")) And KeyAscii <> 8 Then '输入的是非0-9和退格键
        KeyAscii = 0
    End If
End Sub

Private Sub Command1_Click()
    Dim max As Integer, min As Integer, tmp As Integer
    max = 0: min = 0
    For i = 1 To List1.ListCount - 1
        If Val(List1.List(i)) > List1.List(max) Then max = i
        If Val(List1.List(i)) < List1.List(min) Then min = i
    Next
    tmp = List1.List(0): List1.List(0) = List1.List(min): List1.List(min) = tmp
    tmp = List1.List(List1.ListCount - 1): List1.List(List1.ListCount - 1) = List1.List(max): List1.List(max) = tmp
End Sub
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式