steve
|
| Posted: 07/10/2003, 4:20 AM |
|
Dim DepName
Function departments_BeforeShowRow()
If DepName = departments.department_name.Value Then
departments.department_name.Visible = False
Else
departments.department_name.Visible = True
DepName = departments.department_name.Value
End If
End Function
here is the code from the CCS helpfile but how do i check if departments.department_name.Value = null
im using ASP with MS SQL server
|
|
|
 |
steve
|
| Posted: 07/11/2003, 2:07 AM |
|
help pls!!! anyone?
|
|
|
 |
steve
|
| Posted: 07/13/2003, 7:32 PM |
|
i tried writing the code this way but it still does not work
Function tblArticle_tblReporter_tb_Picture_BeforeShow
() 'tblArticle_tblReporter_tb_Picture_BeforeShow @72-7D62EB01
'Custom Code @172-73254650
If isNull(tblArticle_tblReporter_tb.Picture.Value) Then
tblArticle_tblReporter_tb.Picture.Visible = False
Else
tblArticle_tblReporter_tb.Picture.Visible = True
End If
'End Custom Code
help me please!!!!
|
|
|
 |
|