你用的是VB6。还是vb.net?如是是VB6,那么,因为VB6中没有INT16类型需要自己定义这种数据类型
vb中的整数变量只有两个Integer 和 long,integer的字节数为2,long的字节数为4如果你需要4个字节长度的整型变量的话,这样定义Private Sub bindTextBox(ByVal row As long)即可
Private Sub bindTextBox(ByVal row As Integer)