多个窗体调用 module 里的代码,一个问题
module里有public sub
if a.text1.text=0 then
...
a窗体调用没问题,b窗体同样的,b窗体怎么调用?module里怎么写?
2014-11-26 22:30
2014-11-27 07:00
2014-11-27 09:45
2014-11-27 10:39
2014-11-27 10:49

2014-11-27 20:39
2014-11-28 21:25
程序代码:Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 46 And InStr(1, Text1.Text, ".") > 0 Then
KeyAscii = 0
End If
End Sub
2014-11-28 21:57

2014-11-28 23:38
2014-11-29 09:47