If e.Selected Then '如果选择了值 Dim tbl As Table = e.form.controls("Table1").Table If tbl.Current IsNot Nothing Then Forms("申购编辑").controls("txb申购学校").Value = tbl.Current("学校") Forms("申购编辑").controls("txb申购学校").WriteValue Forms("申购编辑").controls("txb申购人部门").Value = tbl.Current("部门") Forms("申购编辑").controls("txb申购人部门").WriteValue e.Form.DropDownBox.Value = tbl.Current("姓名") End If If e.Form.DropTable IsNot Nothing Then '如果是通过表下拉的 e.Form.DropTable.FinishEditing() Else '如果是通过窗口下拉的 e.Form.DropDownBox.WriteValue() End If End If
|