Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
下载信息 [文件大小: 下载次数: ] | |
点击浏览该文件:土地估价系统.table |
If e.IsFocusCell Then
If e.Col.Name = "土地位置" Then
If e.Row.IsNull("土地所在乡镇") Then
e.Col.Combolist = ""
Else
e.Col.Combolist = DataTables("基准地价").GetComboListString("街道名称", "[乡镇名称] = '" & e.Row("土地所在乡镇") & "'")
End If
End If
End If
If e.IsFocusCell Then
If e.Col.Name = "工业地价" Then
If e.Row.IsNull("土地级别") Then
e.Col.Combolist = ""
Else
e.Col.Combolist = DataTables("基准地价").GetComboListString("基准地价", "[乡镇名称] = '" & e.Row("土地所在乡镇") & "'and [街道名称] = '" & e.Row("土地位置") & "'and [土地级别] = '" & e.Row("土地级别") & "'and [开始执行日期] <= #" & e.Row("估价期日") & "# and [结束日期] >= #" & e.Row("估价期日") & "# and [用地性质] = '工业'")
End If
End If
End If
If e.IsFocusCell Then
If e.Col.Name = "商业地价" Then
If e.Row.IsNull("土地级别") Then
e.Col.Combolist = ""
Else
e.Col.Combolist = DataTables("基准地价").GetComboListString("基准地价", "[乡镇名称] = '" & e.Row("土地所在乡镇") & "'and [街道名称] = '" & e.Row("土地位置") & "'and [土地级别] = '" & e.Row("土地级别") & "'and [开始执行日期] <= #" & e.Row("估价期日") & "# and [结束日期] >= #" & e.Row("估价期日") & "# and [用地性质] = '商业'")
End If
End If
End If
If e.IsFocusCell Then
If e.Col.Name = "住宅地价" Then
If e.Row.IsNull("土地级别") Then
e.Col.Combolist = ""
Else
e.Col.Combolist = DataTables("基准地价").GetComboListString("基准地价", "[乡镇名称] = '" & e.Row("土地所在乡镇") & "'and [街道名称] = '" & e.Row("土地位置") & "'and [土地级别] = '" & e.Row("土地级别") & "'and [开始执行日期] <= #" & e.Row("估价期日") & "# and [结束日期] >= #" & e.Row("估价期日") & "# and [用地性质] = '住宅'")
End If
End If
End If
楼上的代码表达式段太长,还是改成这样比较好。
Dim str As String = "[乡镇名称] = '" & e.Row("土地所在乡镇") & "'"
If e.IsFocusCell Then
If e.Col.Name = "土地位置" Then
If e.Row.IsNull("土地所在乡镇") Then
e.Col.Combolist = ""
Else
e.Col.Combolist = DataTables("基准地价").GetComboListString("街道名称",str)
End If
End If
End If
str = str & " and [街道名称] = '" & e.Row("土地位置") & "'and [土地级别] = '" & e.Row("土地级别") & "'and [开始执行日期] <= #" & e.Row("估价期日") & "# and [结束日期] >= #" & e.Row("估价期日") & "# "
If e.IsFocusCell Then
If e.Col.Name = "工业地价" Then
If e.Row.IsNull("土地级别") Then
e.Col.Combolist = ""
Else
e.Col.Combolist = DataTables("基准地价").GetComboListString("基准地价", str & " and [用地性质] = '工业'")
End If
End If
End If
If e.IsFocusCell Then
If e.Col.Name = "商业地价" Then
If e.Row.IsNull("土地级别") Then
e.Col.Combolist = ""
Else
e.Col.Combolist = DataTables("基准地价").GetComboListString("基准地价", str & " and [用地性质] = '商业'")
End If
End If
End If
If e.IsFocusCell Then
If e.Col.Name = "住宅地价" Then
If e.Row.IsNull("土地级别") Then
e.Col.Combolist = ""
Else
e.Col.Combolist = DataTables("基准地价").GetComboListString("基准地价", str & " and [用地性质] = '住宅'")
End If
End If
End If