论文首页哲学论文经济论文法学论文教育论文文学论文历史论文理学论文工学论文医学论文管理论文艺术论文 |
For I = 0 To flxGridhistory.Cols - 1
flxGridhistory.ColWidth(I) = flxGridhistory.Width / 2 - 150
Next I
End Sub
Private Sub Form_Unload(Cancel As Integer)
Unload Me
frmdengji.Show
End Sub
Private Sub Texta_Change()
flxGridhistory.Text = Texta.Text
End Sub
Private Sub Texta_LostFocus()
Dim j
If selrow = 1 And Caption = "初始登记窗口" Then
Command1.Enabled = True
End If (科教范文网http://fw.ΝsΕΑc.com编辑)
If selrow = 1 And Caption = "变更登记窗口" Then
Command4.Enabled = True
zdhao = flxGridhistory.TextMatrix(1, 1)
rs.FindFirst ("宗地号 = '" & zdhao & "'")
If rs.NoMatch Then
Exit Sub
Else
zdhao1 = rs.Fields(0)
For j = 0 To flxGridhistory.Rows - 5
flxGridhistory.TextMatrix(j + 1, 1) = rs.Fields(j) & ""
Next j
End If
End If
End Sub
Private Sub Textb_Change()
flxGridhistory.Text = Textb.Text
End Sub
Private Sub Textb_KeyPress(KeyAscii As Integer)
If KeyAscii <= 45 Or KeyAscii = 47 Or KeyAscii >= 58 Then
KeyAscii = 0
End If
End Sub