全部:
If e.Sender.Checked = True
Tables("学生信息").Filter = ""
End If
在校:
If e.Sender.Checked = True
Tables("学生信息").Filter = "休学 is null and 实习 is null"
End If
实习:
If e.Sender.Checked = True
Tables("学生信息").Filter = "实习 is not null"
End If
休学:
If e.Sender.Checked = True
Tables("学生信息").Filter = "休学 is not null"
End If