| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 412 人关注过本帖
标题:过程调用问题!
只看楼主 加入收藏
hshuguobin
Rank: 1
等 级:新手上路
帖 子:50
专家分:0
注 册:2007-6-10
结帖率:100%
收藏
 问题点数:0 回复次数:2 
过程调用问题!
我在模块中有一个过程:Public Sub numclick(KeyAscii As Integer, dx As TextBox)是一个只让Textbox只能输入数字的一个过程
If KeyAscii = 8 Then Exit Sub
If KeyAscii < Asc("+") Or KeyAscii = Asc(",") Or KeyAscii = Asc("/") Or KeyAscii > Asc("9") Then
KeyAscii = 0
Exit Sub
End If
If Left(dx.Text, 1) = "+" Or Left(dx.Text, 1) = "-" Then
If dx.SelStart = 0 Then
If InStr(dx.SelText, "+") = 0 And InStr(dx.SelText, "-") = 0 Then
KeyAscii = 0
Exit Sub
End If
End If
End If
If KeyAscii = Asc(".") Then
If InStr(dx.Text, ".") > 0 Then
If InStr(dx.SelText, ".") = 0 Then
KeyAscii = 0
End If
End If
Exit Sub
End If
If KeyAscii = Asc("+") Or KeyAscii = Asc("-") Then
If InStr(dx.Text, "+") > 0 Or InStr(dx.Text, "-") > 0 Then
If InStr(dx.SelText, "+") = 0 And InStr(dx.SelText, "-") = 0 Then
KeyAscii = 0
End If
Else
If dx.SelStart > 0 Then
KeyAscii = 0
End If
End If
End If
End Sub
但我想在窗口中的Private Sub Text1_KeyPress(KeyAscii As Integer)调用过程numclick
就是不知道numclick的参数怎么写?
2007-06-10 22:14
Joforn
Rank: 6Rank: 6
等 级:贵宾
威 望:23
帖 子:1242
专家分:122
注 册:2007-1-2
收藏
得分:0 
numclick KeyAscii,Text1

VB QQ群:47715789
2007-06-10 22:18
hshuguobin
Rank: 1
等 级:新手上路
帖 子:50
专家分:0
注 册:2007-6-10
收藏
得分:0 

非常感谢!

2007-06-10 22:24
快速回复:过程调用问题!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023424 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved